diff --git a/contrib/AutoGrouper.lua b/contrib/AutoGrouper.lua index 4198952d..d80e3117 100644 --- a/contrib/AutoGrouper.lua +++ b/contrib/AutoGrouper.lua @@ -40,9 +40,9 @@ local dt = require "darktable" local MOD = 'autogrouper' local gettext = dt.gettext -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("AutoGrouper",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("AutoGrouper", msgid) + return gettext.dgettext("scripts", msgid) end local Ag = {} diff --git a/contrib/CollectHelper.lua b/contrib/CollectHelper.lua index 5996592d..79d271df 100644 --- a/contrib/CollectHelper.lua +++ b/contrib/CollectHelper.lua @@ -51,10 +51,10 @@ local previous = nil local all_active = false -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("CollectHelper",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("CollectHelper", msgid) + return gettext.dgettext("scripts", msgid) end -- FUNCTION -- diff --git a/contrib/HDRMerge.lua b/contrib/HDRMerge.lua index e9e5d035..9dede69d 100644 --- a/contrib/HDRMerge.lua +++ b/contrib/HDRMerge.lua @@ -53,9 +53,9 @@ if dt.configuration.running_os == 'windows' then os_path_seperator = '\\' end -- Tell gettext where to find the .mo file translating messages for a particular domain local gettext = dt.gettext -gettext.bindtextdomain('HDRMerge',dt.configuration.config_dir..'/lua/locale/') +gettext.bindtextdomain('scripts',dt.configuration.config_dir..'/lua/locale/') local function _(msgid) - return gettext.dgettext('HDRMerge', msgid) + return gettext.dgettext('scripts', msgid) end local temp diff --git a/contrib/OpenInExplorer.lua b/contrib/OpenInExplorer.lua index f1430cf5..0af65cd7 100644 --- a/contrib/OpenInExplorer.lua +++ b/contrib/OpenInExplorer.lua @@ -57,10 +57,10 @@ local gettext = dt.gettext du.check_min_api_version("5.0.0", "OpenInExplorer") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("OpenInExplorer",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("OpenInExplorer", msgid) + return gettext.dgettext("scripts", msgid) end local act_os = dt.configuration.running_os diff --git a/contrib/RL_out_sharp.lua b/contrib/RL_out_sharp.lua index 75446d12..650d46f9 100644 --- a/contrib/RL_out_sharp.lua +++ b/contrib/RL_out_sharp.lua @@ -70,10 +70,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" -- translation local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) - end + return gettext.dgettext("scripts", msgid) + end -- initialize module preferences if not dt.preferences.read(MODULE_NAME, "initialized", "bool") then diff --git a/contrib/autostyle.lua b/contrib/autostyle.lua index 0b3891ff..a1379309 100644 --- a/contrib/autostyle.lua +++ b/contrib/autostyle.lua @@ -40,6 +40,16 @@ local darktable = require "darktable" local du = require "lib/dtutils" local filelib = require "lib/dtutils.file" +local gettext = darktable.gettext + + +-- Tell gettext where to find the .mo file translating messages for a particular domain +gettext.bindtextdomain("scripts",darktable.configuration.config_dir.."/lua/locale/") + +local function _(msgid) + return gettext.dgettext("scripts", msgid) +end + -- Forward declare the functions local autostyle_apply_one_image,autostyle_apply_one_image_event,autostyle_apply,exiftool_attribute,capture @@ -58,19 +68,19 @@ function autostyle_apply_one_image (image) -- check they all exist (correct syntax) if (not tag) then - darktable.print("EXIF TAG not found in " .. darktable.preferences.read("autostyle","exif_tag","string")) + darktable.print(_("EXIF TAG not found in ") .. darktable.preferences.read("autostyle","exif_tag","string")) return 0 end if (not value) then - darktable.print("value to match not found in " .. darktable.preferences.read("autostyle","exif_tag","string")) + darktable.print(_("value to match not found in ") .. darktable.preferences.read("autostyle","exif_tag","string")) return 0 end if (not style_name) then - darktable.print("style name not found in " .. darktable.preferences.read("autostyle","exif_tag","string")) + darktable.print(_("style name not found in ") .. darktable.preferences.read("autostyle","exif_tag","string")) return 0 end if not filelib.check_if_bin_exists("exiftool") then - darktable.print("Can't find exiftool") + darktable.print(_("Can't find exiftool")) return 0 end @@ -84,7 +94,7 @@ function autostyle_apply_one_image (image) end end if (not style) then - darktable.print("style not found for autostyle: " .. style_name) + darktable.print(_("style not found for autostyle: ") .. style_name) return 0 end @@ -93,15 +103,15 @@ function autostyle_apply_one_image (image) --darktable.print_error("dr_attr:" .. auto_dr_attr) -- If the lookup fails, stop here if (not ok) then - darktable.print("Couldn't get attribute " .. auto_dr_attr .. " from exiftool's output") + darktable.print(_("Couldn't get attribute ") .. auto_dr_attr .. _(" from exiftool's output")) return 0 end if auto_dr_attr==value then - darktable.print_log("Image " .. image.filename .. ": autostyle automatically applied " .. darktable.preferences.read("autostyle","exif_tag","string") ) + darktable.print_log(_("Image ") .. image.filename .. _(": autostyle automatically applied ") .. darktable.preferences.read("autostyle","exif_tag","string") ) darktable.styles.apply(style,image) return 1 else - darktable.print_log("Image " .. image.filename .. ": autostyle not applied, exif tag " .. darktable.preferences.read("autostyle","exif_tag","string") .. " not matched: " .. auto_dr_attr) + darktable.print_log(_("Image ") .. image.filename .. _(": autostyle not applied, exif tag ") .. darktable.preferences.read("autostyle","exif_tag","string") .. _(" not matched: ") .. auto_dr_attr) return 0 end end @@ -115,7 +125,7 @@ function autostyle_apply( shortcut) images_submitted = images_submitted +1 images_processed = images_processed + autostyle_apply_one_image(image) end - darktable.print("Applied auto style to " .. images_processed .. " out of " .. images_submitted .. " image(s)") + darktable.print(_("Applied auto style to ") .. images_processed .. _(" out of ") .. images_submitted .. _(" image(s)")) end -- Retrieve the attribute through exiftool @@ -124,9 +134,9 @@ function exiftool_attribute(path,attr) local exifresult=get_stdout(cmd) local attribute=string.match(exifresult,": (.*)") if (attribute == nil) then - darktable.print_error( "Could not find the attribute " .. attr .. " using the command: <" .. cmd .. ">") + darktable.print_error(_("Could not find the attribute ") .. attr .. _(" using the command: <") .. cmd .. _(">")) -- Raise an error to the caller - error( "Could not find the attribute " .. attr .. " using the command: <" .. cmd .. ">"); + error(_("Could not find the attribute ") .. attr .. _(" using the command: <") .. cmd .. _(">")); end -- darktable.print_error("Returning attribute: " .. attribute) return attribute @@ -152,9 +162,9 @@ end -- Registering events darktable.register_event("shortcut",autostyle_apply, - "Apply your chosen style from exiftool tags") + _("Apply your chosen style from exiftool tags")) -darktable.preferences.register("autostyle","exif_tag","string","Autostyle: EXIF_tag=value=>style","apply a style automatically if an EXIF_tag matches value. Find the tag with exiftool","") +darktable.preferences.register("autostyle","exif_tag","string","Autostyle: EXIF_tag=value=>style",_("apply a style automatically if an EXIF_tag matches value. Find the tag with exiftool"),"") darktable.register_event("post-import-image",autostyle_apply_one_image_event) diff --git a/contrib/clear_GPS.lua b/contrib/clear_GPS.lua index 31724952..12721c2f 100644 --- a/contrib/clear_GPS.lua +++ b/contrib/clear_GPS.lua @@ -47,10 +47,10 @@ du.check_min_api_version("3.0.0", "clear_GPS") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("clear_GPS",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("clear_GPS", msgid) + return gettext.dgettext("scripts", msgid) end local function clear_GPS(images) diff --git a/contrib/copy_attach_detach_tags.lua b/contrib/copy_attach_detach_tags.lua index 43b40e23..a53f25d8 100644 --- a/contrib/copy_attach_detach_tags.lua +++ b/contrib/copy_attach_detach_tags.lua @@ -45,10 +45,10 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "copy_attach_detach_tags") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("copy_attach_detach_tags",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("copy_attach_detach_tags", msgid) + return gettext.dgettext("scripts", msgid) end local cadt = {} diff --git a/contrib/enfuseAdvanced.lua b/contrib/enfuseAdvanced.lua index 932a6cdd..d28d4f12 100644 --- a/contrib/enfuseAdvanced.lua +++ b/contrib/enfuseAdvanced.lua @@ -69,9 +69,9 @@ du.check_min_api_version('5.0.0', 'enfuseAdvanced') -- Tell gettext where to find the .mo file translating messages for a particular domain local gettext = dt.gettext -gettext.bindtextdomain('enfuseAdvanced',dt.configuration.config_dir..'/lua/locale/') +gettext.bindtextdomain('scripts',dt.configuration.config_dir..'/lua/locale/') local function _(msgid) - return gettext.dgettext('enfuseAdvanced', msgid) + return gettext.dgettext('scripts', msgid) end -- INITS -- diff --git a/contrib/exportLUT.lua b/contrib/exportLUT.lua index 9c7a1848..b644101e 100644 --- a/contrib/exportLUT.lua +++ b/contrib/exportLUT.lua @@ -33,10 +33,10 @@ local ds = require("lib/dtutils.system") local gettext = dt.gettext -gettext.bindtextdomain("exportLUT",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("exportLUT", msgid) + return gettext.dgettext("scripts", msgid) end du.check_min_api_version("5.0.0", "exportLUT") diff --git a/contrib/ext_editor.lua b/contrib/ext_editor.lua index ea957b58..ff941818 100644 --- a/contrib/ext_editor.lua +++ b/contrib/ext_editor.lua @@ -93,9 +93,9 @@ ee.widgets = {} -- translation local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end -- maximum number of external programs, can be increased to necessity diff --git a/contrib/face_recognition.lua b/contrib/face_recognition.lua index 6d9b0c0e..1ad92897 100644 --- a/contrib/face_recognition.lua +++ b/contrib/face_recognition.lua @@ -62,10 +62,10 @@ fc.event_registered = false du.check_min_api_version("5.0.0", "face_recognition") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("face_recognition", dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts", dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("face_recognition", msgid) + return gettext.dgettext("scripts", msgid) end local function build_image_table(images) diff --git a/contrib/fujifilm_ratings.lua b/contrib/fujifilm_ratings.lua index 6cf92c97..9bba7b24 100644 --- a/contrib/fujifilm_ratings.lua +++ b/contrib/fujifilm_ratings.lua @@ -30,10 +30,10 @@ local gettext = dt.gettext du.check_min_api_version("4.0.0", "fujifilm_ratings") -gettext.bindtextdomain("fujifilm_ratings", dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts", dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("fujifilm_ratings", msgid) + return gettext.dgettext("scripts", msgid) end local function detect_rating(event, image) diff --git a/contrib/geoJSON_export.lua b/contrib/geoJSON_export.lua index 4834bb01..b428788d 100644 --- a/contrib/geoJSON_export.lua +++ b/contrib/geoJSON_export.lua @@ -41,10 +41,10 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "geoJSON_export") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("geoJSON_export",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("geoJSON_export", msgid) + return gettext.dgettext("scripts", msgid) end -- Sort a table diff --git a/contrib/geoToolbox.lua b/contrib/geoToolbox.lua index 1bce5f31..c968c61d 100644 --- a/contrib/geoToolbox.lua +++ b/contrib/geoToolbox.lua @@ -34,10 +34,10 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "geoToolbox") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("geoToolbox",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("geoToolbox", msgid) + return gettext.dgettext("scripts", msgid) end diff --git a/contrib/gimp.lua b/contrib/gimp.lua index d7528d1b..bd129890 100644 --- a/contrib/gimp.lua +++ b/contrib/gimp.lua @@ -73,10 +73,10 @@ local gimp_widget = nil du.check_min_api_version("5.0.0", "gimp") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("gimp",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("gimp", msgid) + return gettext.dgettext("scripts", msgid) end local function group_if_not_member(img, new_img) diff --git a/contrib/gpx_export.lua b/contrib/gpx_export.lua index cb76174c..d16ba5b4 100644 --- a/contrib/gpx_export.lua +++ b/contrib/gpx_export.lua @@ -30,10 +30,10 @@ local gettext = dt.gettext dl.check_min_api_version("3.0.0", "gpx-export") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("gpx_export",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("gpx_export", msgid) + return gettext.dgettext("scripts", msgid) end local gpx = {} diff --git a/contrib/hugin.lua b/contrib/hugin.lua index 83ec3be4..cd869da5 100644 --- a/contrib/hugin.lua +++ b/contrib/hugin.lua @@ -58,10 +58,10 @@ local PQ = dt.configuration.running_os == "windows" and '"' or "'" du.check_min_api_version("5.0.0", "hugin") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("hugin",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("hugin", msgid) + return gettext.dgettext("scripts", msgid) end local function user_preference_changed(widget) @@ -227,4 +227,4 @@ dt.register_storage(namespace, _("hugin panorama"), show_status, create_panorama -- --- vim: shiftwidth=2 expandtab tabstop=2 cindent syntax=lua \ No newline at end of file +-- vim: shiftwidth=2 expandtab tabstop=2 cindent syntax=lua diff --git a/contrib/image_stack.lua b/contrib/image_stack.lua index de3e0c04..8c17d694 100644 --- a/contrib/image_stack.lua +++ b/contrib/image_stack.lua @@ -74,10 +74,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" du.check_min_api_version("5.0.0", "image_stack") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("image_stack",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("image_stack", msgid) + return gettext.dgettext("scripts", msgid) end -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/contrib/image_time.lua b/contrib/image_time.lua index b285c61e..36b77a68 100644 --- a/contrib/image_time.lua +++ b/contrib/image_time.lua @@ -117,10 +117,10 @@ du.check_min_api_version("3.0.0", "image_time") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("image_time",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("image_time", msgid) + return gettext.dgettext("scripts", msgid) end local PS = dt.configuration.runnin_os == "windows" and "\\" or "/" diff --git a/contrib/kml_export.lua b/contrib/kml_export.lua index 279ad769..2014dbe5 100644 --- a/contrib/kml_export.lua +++ b/contrib/kml_export.lua @@ -46,10 +46,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" du.check_min_api_version("5.0.0", kml_export) -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("kml_export",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("kml_export", msgid) + return gettext.dgettext("scripts", msgid) end local function show_status(storage, image, format, filename, number, total, high_quality, extra_data) diff --git a/contrib/passport_guide.lua b/contrib/passport_guide.lua index 72611ebd..561297c2 100644 --- a/contrib/passport_guide.lua +++ b/contrib/passport_guide.lua @@ -42,10 +42,10 @@ local gettext = dt.gettext du.check_min_api_version("2.0.0", "passport_guide") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("passport_guide",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("passport_guide", msgid) + return gettext.dgettext("scripts", msgid) end dt.guides.register_guide("passport", diff --git a/contrib/pdf_slideshow.lua b/contrib/pdf_slideshow.lua index f01b014b..ae886656 100644 --- a/contrib/pdf_slideshow.lua +++ b/contrib/pdf_slideshow.lua @@ -46,10 +46,10 @@ require "official/yield" local gettext = dt.gettext -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("pdf_slideshow",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("pdf_slideshow", msgid) + return gettext.dgettext("scripts", msgid) end if not df.check_if_bin_exists("pdflatex") then diff --git a/contrib/photils.lua b/contrib/photils.lua index 361ba868..75901d40 100644 --- a/contrib/photils.lua +++ b/contrib/photils.lua @@ -46,7 +46,7 @@ du.check_min_api_version("5.0.0", MODULE_NAME) local PS = dt.configuration.running_os == "windows" and "\\" or "/" local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, +gettext.bindtextdomain("scripts", dt.configuration.config_dir .. PS .. "lua" .. PS .. "locale" .. PS) local exporter = dt.new_format("jpeg") @@ -57,7 +57,7 @@ exporter.max_width = 224 -- helper functions local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end local function num_keys(tbl) diff --git a/contrib/quicktag.lua b/contrib/quicktag.lua index 09f0be9d..3f3466b8 100644 --- a/contrib/quicktag.lua +++ b/contrib/quicktag.lua @@ -59,10 +59,10 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "quicktag") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("quicktag",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("quicktag", msgid) + return gettext.dgettext("scripts", msgid) end -- maximum length of button labels diff --git a/contrib/select_untagged.lua b/contrib/select_untagged.lua index 2db6dae6..df2374ae 100644 --- a/contrib/select_untagged.lua +++ b/contrib/select_untagged.lua @@ -25,10 +25,10 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "select_untagged") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("select_untagged",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("select_untagged", msgid) + return gettext.dgettext("scripts", msgid) end local function stop_job(job) diff --git a/contrib/slideshowMusic.lua b/contrib/slideshowMusic.lua index 90d6bc34..0cdf8201 100644 --- a/contrib/slideshowMusic.lua +++ b/contrib/slideshowMusic.lua @@ -33,10 +33,10 @@ local gettext = dt.gettext du.check_min_api_version("2.0.2", "slideshowMusic") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("slideshowMusic",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("slideshowMusic", msgid) + return gettext.dgettext("scripts", msgid) end local function playSlideshowMusic(_, old_view, new_view) diff --git a/contrib/transfer_hierarchy.lua b/contrib/transfer_hierarchy.lua index 727595cf..6f6f52cd 100755 --- a/contrib/transfer_hierarchy.lua +++ b/contrib/transfer_hierarchy.lua @@ -87,10 +87,10 @@ local PATH_SEGMENT_REGEX = "(" .. PATH_SEPARATOR .. "?)([^" .. PATH_SEPARATOR .. unpack = unpack or table.unpack gmatch = string.gfind or string.gmatch -darktable.gettext.bindtextdomain(LIB_ID, darktable.configuration.config_dir .. PATH_SEPARATOR .. "lua" .. PATH_SEPARATOR .. "locale" .. PATH_SEPARATOR) +darktable.gettext.bindtextdomain("scripts", darktable.configuration.config_dir .. PATH_SEPARATOR .. "lua" .. PATH_SEPARATOR .. "locale" .. PATH_SEPARATOR) local function _(msgid) - return darktable.gettext.dgettext(LIB_ID, msgid) + return darktable.gettext.dgettext("scripts", msgid) end -- Header material: END diff --git a/contrib/video_ffmpeg.lua b/contrib/video_ffmpeg.lua index 1d59935f..0363dd0a 100644 --- a/contrib/video_ffmpeg.lua +++ b/contrib/video_ffmpeg.lua @@ -44,10 +44,10 @@ du.check_min_api_version("5.0.0") local MODULE_NAME = "video_ffmpeg" local PS = dt.configuration.running_os == "windows" and "\\" or "/" -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end diff --git a/data/po/LINGUAS b/data/po/LINGUAS new file mode 100644 index 00000000..39fe8d81 --- /dev/null +++ b/data/po/LINGUAS @@ -0,0 +1,28 @@ +af +ca +cs +da +de +el +es +fi +fr +gl +he +hu +it +ja +nb +nl +pl +pt_BR +pt_PT +ro +ru +sk +sl +sq +sv +th +zh_CN +zh_TW diff --git a/data/po/af/AutoGrouper.po b/data/po/af/AutoGrouper.po new file mode 100644 index 00000000..fa56b4e6 --- /dev/null +++ b/data/po/af/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/af/CollectHelper.po b/data/po/af/CollectHelper.po new file mode 100644 index 00000000..328ab6f5 --- /dev/null +++ b/data/po/af/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/af/HDRMerge.po b/data/po/af/HDRMerge.po new file mode 100644 index 00000000..d8f88e84 --- /dev/null +++ b/data/po/af/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/af/OpenInExplorer.po b/data/po/af/OpenInExplorer.po new file mode 100644 index 00000000..49fd0183 --- /dev/null +++ b/data/po/af/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/af/RL_out_sharp.po b/data/po/af/RL_out_sharp.po new file mode 100644 index 00000000..6a4d402d --- /dev/null +++ b/data/po/af/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/af/autostyle.po b/data/po/af/autostyle.po new file mode 100644 index 00000000..3542f1d4 --- /dev/null +++ b/data/po/af/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/af/clear_GPS.po b/data/po/af/clear_GPS.po new file mode 100644 index 00000000..6e05b114 --- /dev/null +++ b/data/po/af/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/af/copy_attach_detach_tags.po b/data/po/af/copy_attach_detach_tags.po new file mode 100644 index 00000000..7e40d60e --- /dev/null +++ b/data/po/af/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/af/darkroom_demo.po b/data/po/af/darkroom_demo.po new file mode 100644 index 00000000..848790e3 --- /dev/null +++ b/data/po/af/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/af/dtutils.po b/data/po/af/dtutils.po new file mode 100644 index 00000000..56dcc44b --- /dev/null +++ b/data/po/af/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/af/enfuse.po b/data/po/af/enfuse.po new file mode 100644 index 00000000..b33bab12 --- /dev/null +++ b/data/po/af/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/af/enfuseAdvanced.po b/data/po/af/enfuseAdvanced.po new file mode 100644 index 00000000..57b2c60f --- /dev/null +++ b/data/po/af/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/af/executable_manager.po b/data/po/af/executable_manager.po new file mode 100644 index 00000000..67cd9bb2 --- /dev/null +++ b/data/po/af/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/af/exportLUT.po b/data/po/af/exportLUT.po new file mode 100644 index 00000000..68be06bc --- /dev/null +++ b/data/po/af/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/af/ext_editor.po b/data/po/af/ext_editor.po new file mode 100644 index 00000000..2153a2f9 --- /dev/null +++ b/data/po/af/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/af/face_recognition.po b/data/po/af/face_recognition.po new file mode 100644 index 00000000..a0d24f4b --- /dev/null +++ b/data/po/af/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/af/file.po b/data/po/af/file.po new file mode 100644 index 00000000..3ab5918f --- /dev/null +++ b/data/po/af/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/af/fujifilm_ratings.po b/data/po/af/fujifilm_ratings.po new file mode 100644 index 00000000..7a696b1a --- /dev/null +++ b/data/po/af/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/af/geoJSON_export.po b/data/po/af/geoJSON_export.po new file mode 100644 index 00000000..ab724dbc --- /dev/null +++ b/data/po/af/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/af/geoToolbox.po b/data/po/af/geoToolbox.po new file mode 100644 index 00000000..e49a183d --- /dev/null +++ b/data/po/af/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/af/gettextExample.po b/data/po/af/gettextExample.po new file mode 100644 index 00000000..23533753 --- /dev/null +++ b/data/po/af/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/af/gimp.po b/data/po/af/gimp.po new file mode 100644 index 00000000..3bfee7b5 --- /dev/null +++ b/data/po/af/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/af/gpx_export.po b/data/po/af/gpx_export.po new file mode 100644 index 00000000..32975030 --- /dev/null +++ b/data/po/af/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/af/hugin.po b/data/po/af/hugin.po new file mode 100644 index 00000000..c18c1470 --- /dev/null +++ b/data/po/af/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/af/image_stack.po b/data/po/af/image_stack.po new file mode 100644 index 00000000..f83119d0 --- /dev/null +++ b/data/po/af/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/af/image_time.po b/data/po/af/image_time.po new file mode 100644 index 00000000..4bbf3651 --- /dev/null +++ b/data/po/af/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/af/kml_export.po b/data/po/af/kml_export.po new file mode 100644 index 00000000..5b484789 --- /dev/null +++ b/data/po/af/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/af/lighttable_demo.po b/data/po/af/lighttable_demo.po new file mode 100644 index 00000000..be4d4800 --- /dev/null +++ b/data/po/af/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/af/moduleExample.po b/data/po/af/moduleExample.po new file mode 100644 index 00000000..584d4cb5 --- /dev/null +++ b/data/po/af/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/af/multi_os.po b/data/po/af/multi_os.po new file mode 100644 index 00000000..c88575f4 --- /dev/null +++ b/data/po/af/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/af/panels_demo.po b/data/po/af/panels_demo.po new file mode 100644 index 00000000..f7e05975 --- /dev/null +++ b/data/po/af/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/af/passport_guide.po b/data/po/af/passport_guide.po new file mode 100644 index 00000000..8b579068 --- /dev/null +++ b/data/po/af/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/af/pdf_slideshow.po b/data/po/af/pdf_slideshow.po new file mode 100644 index 00000000..99df7005 --- /dev/null +++ b/data/po/af/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/af/photils.po b/data/po/af/photils.po new file mode 100644 index 00000000..7dcf9ad7 --- /dev/null +++ b/data/po/af/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/af/quicktag.po b/data/po/af/quicktag.po new file mode 100644 index 00000000..625e2f43 --- /dev/null +++ b/data/po/af/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/af/script_manager.po b/data/po/af/script_manager.po new file mode 100644 index 00000000..2a73d01b --- /dev/null +++ b/data/po/af/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/af/select_untagged.po b/data/po/af/select_untagged.po new file mode 100644 index 00000000..8e9a11ac --- /dev/null +++ b/data/po/af/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/af/slideshowMusic.po b/data/po/af/slideshowMusic.po new file mode 100644 index 00000000..30784a96 --- /dev/null +++ b/data/po/af/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/af/transfer_hierarchy.po b/data/po/af/transfer_hierarchy.po new file mode 100644 index 00000000..a00bf0f4 --- /dev/null +++ b/data/po/af/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/af/video_ffmpeg.po b/data/po/af/video_ffmpeg.po new file mode 100644 index 00000000..c45b87a7 --- /dev/null +++ b/data/po/af/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/ca/AutoGrouper.po b/data/po/ca/AutoGrouper.po new file mode 100644 index 00000000..06615b93 --- /dev/null +++ b/data/po/ca/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/ca/CollectHelper.po b/data/po/ca/CollectHelper.po new file mode 100644 index 00000000..af91500b --- /dev/null +++ b/data/po/ca/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/ca/HDRMerge.po b/data/po/ca/HDRMerge.po new file mode 100644 index 00000000..500c7ce8 --- /dev/null +++ b/data/po/ca/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/ca/OpenInExplorer.po b/data/po/ca/OpenInExplorer.po new file mode 100644 index 00000000..c25b4794 --- /dev/null +++ b/data/po/ca/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/ca/RL_out_sharp.po b/data/po/ca/RL_out_sharp.po new file mode 100644 index 00000000..f9522895 --- /dev/null +++ b/data/po/ca/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/ca/autostyle.po b/data/po/ca/autostyle.po new file mode 100644 index 00000000..846bc1f7 --- /dev/null +++ b/data/po/ca/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/ca/clear_GPS.po b/data/po/ca/clear_GPS.po new file mode 100644 index 00000000..fd71a65d --- /dev/null +++ b/data/po/ca/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/ca/copy_attach_detach_tags.po b/data/po/ca/copy_attach_detach_tags.po new file mode 100644 index 00000000..d5a30d91 --- /dev/null +++ b/data/po/ca/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/ca/darkroom_demo.po b/data/po/ca/darkroom_demo.po new file mode 100644 index 00000000..46cb901e --- /dev/null +++ b/data/po/ca/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/ca/dtutils.po b/data/po/ca/dtutils.po new file mode 100644 index 00000000..7e1634af --- /dev/null +++ b/data/po/ca/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/ca/enfuse.po b/data/po/ca/enfuse.po new file mode 100644 index 00000000..92aea6af --- /dev/null +++ b/data/po/ca/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/ca/enfuseAdvanced.po b/data/po/ca/enfuseAdvanced.po new file mode 100644 index 00000000..ad30b798 --- /dev/null +++ b/data/po/ca/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/ca/executable_manager.po b/data/po/ca/executable_manager.po new file mode 100644 index 00000000..59a2018f --- /dev/null +++ b/data/po/ca/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/ca/exportLUT.po b/data/po/ca/exportLUT.po new file mode 100644 index 00000000..7425815e --- /dev/null +++ b/data/po/ca/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/ca/ext_editor.po b/data/po/ca/ext_editor.po new file mode 100644 index 00000000..d4bfb2d6 --- /dev/null +++ b/data/po/ca/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/ca/face_recognition.po b/data/po/ca/face_recognition.po new file mode 100644 index 00000000..b3fecc91 --- /dev/null +++ b/data/po/ca/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/ca/file.po b/data/po/ca/file.po new file mode 100644 index 00000000..9a4e3588 --- /dev/null +++ b/data/po/ca/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/ca/fujifilm_ratings.po b/data/po/ca/fujifilm_ratings.po new file mode 100644 index 00000000..6c5086d5 --- /dev/null +++ b/data/po/ca/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/ca/geoJSON_export.po b/data/po/ca/geoJSON_export.po new file mode 100644 index 00000000..6292e6fe --- /dev/null +++ b/data/po/ca/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/ca/geoToolbox.po b/data/po/ca/geoToolbox.po new file mode 100644 index 00000000..415b5750 --- /dev/null +++ b/data/po/ca/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/ca/gettextExample.po b/data/po/ca/gettextExample.po new file mode 100644 index 00000000..2f0e9ea2 --- /dev/null +++ b/data/po/ca/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/ca/gimp.po b/data/po/ca/gimp.po new file mode 100644 index 00000000..ed41e28f --- /dev/null +++ b/data/po/ca/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/ca/gpx_export.po b/data/po/ca/gpx_export.po new file mode 100644 index 00000000..274f99e6 --- /dev/null +++ b/data/po/ca/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/ca/hugin.po b/data/po/ca/hugin.po new file mode 100644 index 00000000..ae9f4a20 --- /dev/null +++ b/data/po/ca/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/ca/image_stack.po b/data/po/ca/image_stack.po new file mode 100644 index 00000000..fca7f540 --- /dev/null +++ b/data/po/ca/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/ca/image_time.po b/data/po/ca/image_time.po new file mode 100644 index 00000000..733f0c5f --- /dev/null +++ b/data/po/ca/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/ca/kml_export.po b/data/po/ca/kml_export.po new file mode 100644 index 00000000..2f044dff --- /dev/null +++ b/data/po/ca/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/ca/lighttable_demo.po b/data/po/ca/lighttable_demo.po new file mode 100644 index 00000000..b29e1b18 --- /dev/null +++ b/data/po/ca/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/ca/moduleExample.po b/data/po/ca/moduleExample.po new file mode 100644 index 00000000..ca74531d --- /dev/null +++ b/data/po/ca/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/ca/multi_os.po b/data/po/ca/multi_os.po new file mode 100644 index 00000000..77bcde62 --- /dev/null +++ b/data/po/ca/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/ca/panels_demo.po b/data/po/ca/panels_demo.po new file mode 100644 index 00000000..ce7f0109 --- /dev/null +++ b/data/po/ca/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/ca/passport_guide.po b/data/po/ca/passport_guide.po new file mode 100644 index 00000000..b9f35c41 --- /dev/null +++ b/data/po/ca/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/ca/pdf_slideshow.po b/data/po/ca/pdf_slideshow.po new file mode 100644 index 00000000..d5e92b89 --- /dev/null +++ b/data/po/ca/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/ca/photils.po b/data/po/ca/photils.po new file mode 100644 index 00000000..a37a8c7f --- /dev/null +++ b/data/po/ca/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/ca/quicktag.po b/data/po/ca/quicktag.po new file mode 100644 index 00000000..ea4157b1 --- /dev/null +++ b/data/po/ca/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/ca/script_manager.po b/data/po/ca/script_manager.po new file mode 100644 index 00000000..122f1038 --- /dev/null +++ b/data/po/ca/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/ca/select_untagged.po b/data/po/ca/select_untagged.po new file mode 100644 index 00000000..40c3dadd --- /dev/null +++ b/data/po/ca/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/ca/slideshowMusic.po b/data/po/ca/slideshowMusic.po new file mode 100644 index 00000000..e1ef2387 --- /dev/null +++ b/data/po/ca/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/ca/transfer_hierarchy.po b/data/po/ca/transfer_hierarchy.po new file mode 100644 index 00000000..2a8883fd --- /dev/null +++ b/data/po/ca/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/ca/video_ffmpeg.po b/data/po/ca/video_ffmpeg.po new file mode 100644 index 00000000..16c92249 --- /dev/null +++ b/data/po/ca/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/cs/AutoGrouper.po b/data/po/cs/AutoGrouper.po new file mode 100644 index 00000000..6e9f3ddd --- /dev/null +++ b/data/po/cs/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/cs/CollectHelper.po b/data/po/cs/CollectHelper.po new file mode 100644 index 00000000..9b0a45fa --- /dev/null +++ b/data/po/cs/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/cs/HDRMerge.po b/data/po/cs/HDRMerge.po new file mode 100644 index 00000000..451a9341 --- /dev/null +++ b/data/po/cs/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/cs/OpenInExplorer.po b/data/po/cs/OpenInExplorer.po new file mode 100644 index 00000000..b875b1c9 --- /dev/null +++ b/data/po/cs/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/cs/RL_out_sharp.po b/data/po/cs/RL_out_sharp.po new file mode 100644 index 00000000..640b47f2 --- /dev/null +++ b/data/po/cs/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/cs/autostyle.po b/data/po/cs/autostyle.po new file mode 100644 index 00000000..c3294a82 --- /dev/null +++ b/data/po/cs/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/cs/clear_GPS.po b/data/po/cs/clear_GPS.po new file mode 100644 index 00000000..e399687b --- /dev/null +++ b/data/po/cs/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/cs/copy_attach_detach_tags.po b/data/po/cs/copy_attach_detach_tags.po new file mode 100644 index 00000000..67b05a31 --- /dev/null +++ b/data/po/cs/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/cs/darkroom_demo.po b/data/po/cs/darkroom_demo.po new file mode 100644 index 00000000..94a1c361 --- /dev/null +++ b/data/po/cs/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/cs/dtutils.po b/data/po/cs/dtutils.po new file mode 100644 index 00000000..a8f97d39 --- /dev/null +++ b/data/po/cs/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/cs/enfuse.po b/data/po/cs/enfuse.po new file mode 100644 index 00000000..9306ee43 --- /dev/null +++ b/data/po/cs/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/cs/enfuseAdvanced.po b/data/po/cs/enfuseAdvanced.po new file mode 100644 index 00000000..2b747074 --- /dev/null +++ b/data/po/cs/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/cs/executable_manager.po b/data/po/cs/executable_manager.po new file mode 100644 index 00000000..06a0bad3 --- /dev/null +++ b/data/po/cs/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/cs/exportLUT.po b/data/po/cs/exportLUT.po new file mode 100644 index 00000000..5c331d3b --- /dev/null +++ b/data/po/cs/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/cs/ext_editor.po b/data/po/cs/ext_editor.po new file mode 100644 index 00000000..82424188 --- /dev/null +++ b/data/po/cs/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/cs/face_recognition.po b/data/po/cs/face_recognition.po new file mode 100644 index 00000000..b759c89d --- /dev/null +++ b/data/po/cs/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/cs/file.po b/data/po/cs/file.po new file mode 100644 index 00000000..0fdb34ac --- /dev/null +++ b/data/po/cs/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/cs/fujifilm_ratings.po b/data/po/cs/fujifilm_ratings.po new file mode 100644 index 00000000..a9bb795f --- /dev/null +++ b/data/po/cs/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/cs/geoJSON_export.po b/data/po/cs/geoJSON_export.po new file mode 100644 index 00000000..46d9ff68 --- /dev/null +++ b/data/po/cs/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/cs/geoToolbox.po b/data/po/cs/geoToolbox.po new file mode 100644 index 00000000..751d1649 --- /dev/null +++ b/data/po/cs/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/cs/gettextExample.po b/data/po/cs/gettextExample.po new file mode 100644 index 00000000..51ff9838 --- /dev/null +++ b/data/po/cs/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/cs/gimp.po b/data/po/cs/gimp.po new file mode 100644 index 00000000..11e15a70 --- /dev/null +++ b/data/po/cs/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/cs/gpx_export.po b/data/po/cs/gpx_export.po new file mode 100644 index 00000000..3571ab28 --- /dev/null +++ b/data/po/cs/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/cs/hugin.po b/data/po/cs/hugin.po new file mode 100644 index 00000000..97a1e155 --- /dev/null +++ b/data/po/cs/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/cs/image_stack.po b/data/po/cs/image_stack.po new file mode 100644 index 00000000..4c6d7f4d --- /dev/null +++ b/data/po/cs/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/cs/image_time.po b/data/po/cs/image_time.po new file mode 100644 index 00000000..30d415fc --- /dev/null +++ b/data/po/cs/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/cs/kml_export.po b/data/po/cs/kml_export.po new file mode 100644 index 00000000..f27648e2 --- /dev/null +++ b/data/po/cs/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/cs/lighttable_demo.po b/data/po/cs/lighttable_demo.po new file mode 100644 index 00000000..217a2348 --- /dev/null +++ b/data/po/cs/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/cs/moduleExample.po b/data/po/cs/moduleExample.po new file mode 100644 index 00000000..28244665 --- /dev/null +++ b/data/po/cs/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/cs/multi_os.po b/data/po/cs/multi_os.po new file mode 100644 index 00000000..1be6da3a --- /dev/null +++ b/data/po/cs/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/cs/panels_demo.po b/data/po/cs/panels_demo.po new file mode 100644 index 00000000..cbd11a5f --- /dev/null +++ b/data/po/cs/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/cs/passport_guide.po b/data/po/cs/passport_guide.po new file mode 100644 index 00000000..2ce0be20 --- /dev/null +++ b/data/po/cs/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/cs/pdf_slideshow.po b/data/po/cs/pdf_slideshow.po new file mode 100644 index 00000000..25457f57 --- /dev/null +++ b/data/po/cs/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/cs/photils.po b/data/po/cs/photils.po new file mode 100644 index 00000000..81f2c7b7 --- /dev/null +++ b/data/po/cs/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/cs/quicktag.po b/data/po/cs/quicktag.po new file mode 100644 index 00000000..c8868e48 --- /dev/null +++ b/data/po/cs/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/cs/script_manager.po b/data/po/cs/script_manager.po new file mode 100644 index 00000000..714c9865 --- /dev/null +++ b/data/po/cs/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/cs/select_untagged.po b/data/po/cs/select_untagged.po new file mode 100644 index 00000000..8d4c86e3 --- /dev/null +++ b/data/po/cs/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/cs/slideshowMusic.po b/data/po/cs/slideshowMusic.po new file mode 100644 index 00000000..7b15d3e9 --- /dev/null +++ b/data/po/cs/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/cs/transfer_hierarchy.po b/data/po/cs/transfer_hierarchy.po new file mode 100644 index 00000000..5ec28ef1 --- /dev/null +++ b/data/po/cs/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/cs/video_ffmpeg.po b/data/po/cs/video_ffmpeg.po new file mode 100644 index 00000000..65ccaad6 --- /dev/null +++ b/data/po/cs/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/da/AutoGrouper.po b/data/po/da/AutoGrouper.po new file mode 100644 index 00000000..4a6cf7ac --- /dev/null +++ b/data/po/da/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/da/CollectHelper.po b/data/po/da/CollectHelper.po new file mode 100644 index 00000000..47f48219 --- /dev/null +++ b/data/po/da/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/da/HDRMerge.po b/data/po/da/HDRMerge.po new file mode 100644 index 00000000..370500f6 --- /dev/null +++ b/data/po/da/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/da/OpenInExplorer.po b/data/po/da/OpenInExplorer.po new file mode 100644 index 00000000..e715e1f7 --- /dev/null +++ b/data/po/da/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/da/RL_out_sharp.po b/data/po/da/RL_out_sharp.po new file mode 100644 index 00000000..d3111e60 --- /dev/null +++ b/data/po/da/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/da/autostyle.po b/data/po/da/autostyle.po new file mode 100644 index 00000000..27560e24 --- /dev/null +++ b/data/po/da/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/da/clear_GPS.po b/data/po/da/clear_GPS.po new file mode 100644 index 00000000..bd740e50 --- /dev/null +++ b/data/po/da/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/da/copy_attach_detach_tags.po b/data/po/da/copy_attach_detach_tags.po new file mode 100644 index 00000000..7c4d8e46 --- /dev/null +++ b/data/po/da/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/da/darkroom_demo.po b/data/po/da/darkroom_demo.po new file mode 100644 index 00000000..f510c512 --- /dev/null +++ b/data/po/da/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/da/dtutils.po b/data/po/da/dtutils.po new file mode 100644 index 00000000..c2211f37 --- /dev/null +++ b/data/po/da/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/da/enfuse.po b/data/po/da/enfuse.po new file mode 100644 index 00000000..5eb7e936 --- /dev/null +++ b/data/po/da/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/da/enfuseAdvanced.po b/data/po/da/enfuseAdvanced.po new file mode 100644 index 00000000..3bc8c0c1 --- /dev/null +++ b/data/po/da/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/da/executable_manager.po b/data/po/da/executable_manager.po new file mode 100644 index 00000000..b4f24151 --- /dev/null +++ b/data/po/da/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/da/exportLUT.po b/data/po/da/exportLUT.po new file mode 100644 index 00000000..79b68e4f --- /dev/null +++ b/data/po/da/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/da/ext_editor.po b/data/po/da/ext_editor.po new file mode 100644 index 00000000..c95856cf --- /dev/null +++ b/data/po/da/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/da/face_recognition.po b/data/po/da/face_recognition.po new file mode 100644 index 00000000..65063d7b --- /dev/null +++ b/data/po/da/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/da/file.po b/data/po/da/file.po new file mode 100644 index 00000000..46c40bc4 --- /dev/null +++ b/data/po/da/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/da/fujifilm_ratings.po b/data/po/da/fujifilm_ratings.po new file mode 100644 index 00000000..d96a5faa --- /dev/null +++ b/data/po/da/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/da/geoJSON_export.po b/data/po/da/geoJSON_export.po new file mode 100644 index 00000000..33f723d3 --- /dev/null +++ b/data/po/da/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/da/geoToolbox.po b/data/po/da/geoToolbox.po new file mode 100644 index 00000000..98a93e87 --- /dev/null +++ b/data/po/da/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/da/gettextExample.po b/data/po/da/gettextExample.po new file mode 100644 index 00000000..6dae29cc --- /dev/null +++ b/data/po/da/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/da/gimp.po b/data/po/da/gimp.po new file mode 100644 index 00000000..31f0f43e --- /dev/null +++ b/data/po/da/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/da/gpx_export.po b/data/po/da/gpx_export.po new file mode 100644 index 00000000..84dfaaf0 --- /dev/null +++ b/data/po/da/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/da/hugin.po b/data/po/da/hugin.po new file mode 100644 index 00000000..ba60ed19 --- /dev/null +++ b/data/po/da/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/da/image_stack.po b/data/po/da/image_stack.po new file mode 100644 index 00000000..d06aaef8 --- /dev/null +++ b/data/po/da/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/da/image_time.po b/data/po/da/image_time.po new file mode 100644 index 00000000..c735122d --- /dev/null +++ b/data/po/da/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/da/kml_export.po b/data/po/da/kml_export.po new file mode 100644 index 00000000..3c94268f --- /dev/null +++ b/data/po/da/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/da/lighttable_demo.po b/data/po/da/lighttable_demo.po new file mode 100644 index 00000000..f1d20175 --- /dev/null +++ b/data/po/da/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/da/moduleExample.po b/data/po/da/moduleExample.po new file mode 100644 index 00000000..2a4cbc1f --- /dev/null +++ b/data/po/da/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/da/multi_os.po b/data/po/da/multi_os.po new file mode 100644 index 00000000..2f0608fe --- /dev/null +++ b/data/po/da/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/da/panels_demo.po b/data/po/da/panels_demo.po new file mode 100644 index 00000000..f0c596d3 --- /dev/null +++ b/data/po/da/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/da/passport_guide.po b/data/po/da/passport_guide.po new file mode 100644 index 00000000..509a4ed2 --- /dev/null +++ b/data/po/da/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/da/pdf_slideshow.po b/data/po/da/pdf_slideshow.po new file mode 100644 index 00000000..afcc8b92 --- /dev/null +++ b/data/po/da/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/da/photils.po b/data/po/da/photils.po new file mode 100644 index 00000000..83b2f93d --- /dev/null +++ b/data/po/da/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/da/quicktag.po b/data/po/da/quicktag.po new file mode 100644 index 00000000..b47467c8 --- /dev/null +++ b/data/po/da/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/da/script_manager.po b/data/po/da/script_manager.po new file mode 100644 index 00000000..8e511f4b --- /dev/null +++ b/data/po/da/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/da/select_untagged.po b/data/po/da/select_untagged.po new file mode 100644 index 00000000..b036a230 --- /dev/null +++ b/data/po/da/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/da/slideshowMusic.po b/data/po/da/slideshowMusic.po new file mode 100644 index 00000000..3cbdd990 --- /dev/null +++ b/data/po/da/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/da/transfer_hierarchy.po b/data/po/da/transfer_hierarchy.po new file mode 100644 index 00000000..9117e431 --- /dev/null +++ b/data/po/da/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/da/video_ffmpeg.po b/data/po/da/video_ffmpeg.po new file mode 100644 index 00000000..4fa64849 --- /dev/null +++ b/data/po/da/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/de/AutoGrouper.po b/data/po/de/AutoGrouper.po new file mode 100644 index 00000000..fe638dc6 --- /dev/null +++ b/data/po/de/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/de/CollectHelper.po b/data/po/de/CollectHelper.po new file mode 100644 index 00000000..10a87f72 --- /dev/null +++ b/data/po/de/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/de/HDRMerge.po b/data/po/de/HDRMerge.po new file mode 100644 index 00000000..293be376 --- /dev/null +++ b/data/po/de/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/OpenInExplorer.po b/data/po/de/OpenInExplorer.po similarity index 98% rename from locale/de_DE/LC_MESSAGES/OpenInExplorer.po rename to data/po/de/OpenInExplorer.po index f0dc8ef1..08bebae2 100644 --- a/locale/de_DE/LC_MESSAGES/OpenInExplorer.po +++ b/data/po/de/OpenInExplorer.po @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-06-11 19:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/data/po/de/RL_out_sharp.po b/data/po/de/RL_out_sharp.po new file mode 100644 index 00000000..2b9e129f --- /dev/null +++ b/data/po/de/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/de/autostyle.po b/data/po/de/autostyle.po new file mode 100644 index 00000000..f8465c35 --- /dev/null +++ b/data/po/de/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-17 19:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: contrib/autostyle.lua:110 contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: contrib/autostyle.lua:137 contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: contrib/autostyle.lua:137 contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: contrib/autostyle.lua:137 contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/clear_GPS.po b/data/po/de/clear_GPS.po similarity index 87% rename from locale/de_DE/LC_MESSAGES/clear_GPS.po rename to data/po/de/clear_GPS.po index ad8960b0..152de8a1 100644 --- a/locale/de_DE/LC_MESSAGES/clear_GPS.po +++ b/data/po/de/clear_GPS.po @@ -6,15 +6,15 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-09-07 22:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Bill Ferguson \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: de\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.5.4\n" "Language: de_DE\n" diff --git a/locale/de_DE/LC_MESSAGES/copy_attach_detach_tags.po b/data/po/de/copy_attach_detach_tags.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/copy_attach_detach_tags.po rename to data/po/de/copy_attach_detach_tags.po diff --git a/data/po/de/darkroom_demo.po b/data/po/de/darkroom_demo.po new file mode 100644 index 00000000..28495239 --- /dev/null +++ b/data/po/de/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/de/dtutils.po b/data/po/de/dtutils.po new file mode 100644 index 00000000..526663bc --- /dev/null +++ b/data/po/de/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "T(This application is written for lua api version )" + +#: lib/dtutils.lua:75 +msgid " or later." +msgstr "T( or later.)" + +#: lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "T(The current lua api version is )" + +#: lib/dtutils.lua:77 ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "T(ERROR: )" + +#: lib/dtutils.lua:77 ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "T( failed to load. Lua API version )" + +#: lib/dtutils.lua:77 ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "T( or later required.)" + +#: lib/dtutils.lua:78 ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "T(Minimum API )" + +#: lib/dtutils.lua:78 ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "T( not met for )" + +#: lib/dtutils.lua:195 +msgid "Loaded " +msgstr "T(Loaded )" + +#: lib/dtutils.lua:197 +msgid "Error loading " +msgstr "T(Error loading )" diff --git a/data/po/de/enfuse.po b/data/po/de/enfuse.po new file mode 100644 index 00000000..feaa3294 --- /dev/null +++ b/data/po/de/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/de/enfuseAdvanced.po b/data/po/de/enfuseAdvanced.po new file mode 100644 index 00000000..291eabea --- /dev/null +++ b/data/po/de/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/de/executable_manager.po b/data/po/de/executable_manager.po new file mode 100644 index 00000000..d2a0d2ac --- /dev/null +++ b/data/po/de/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/de/exportLUT.po b/data/po/de/exportLUT.po new file mode 100644 index 00000000..25cb1854 --- /dev/null +++ b/data/po/de/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/de/ext_editor.po b/data/po/de/ext_editor.po new file mode 100644 index 00000000..c1577727 --- /dev/null +++ b/data/po/de/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/de/face_recognition.po b/data/po/de/face_recognition.po new file mode 100644 index 00000000..9eba320f --- /dev/null +++ b/data/po/de/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/de/file.po b/data/po/de/file.po new file mode 100644 index 00000000..0920eb00 --- /dev/null +++ b/data/po/de/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/de/fujifilm_ratings.po b/data/po/de/fujifilm_ratings.po new file mode 100644 index 00000000..76a102ec --- /dev/null +++ b/data/po/de/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/de/geoJSON_export.po b/data/po/de/geoJSON_export.po new file mode 100644 index 00000000..a1ae85ee --- /dev/null +++ b/data/po/de/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/de/geoToolbox.po b/data/po/de/geoToolbox.po new file mode 100644 index 00000000..dd7a6547 --- /dev/null +++ b/data/po/de/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "gnome-maps wurde nicht gefunden" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "curl wurde nicht gefunden" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "jq wurde nicht gefunden" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "Markiert alle Bilder mit GPS-Informationen" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "Markiert alle Bilder ohne GPS-Informationen" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "Öffnet den Ort in Gnome Maps" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "Errechne die Entfernung mit Hilfe des Längen- und Breitengrads in km" diff --git a/examples/de_DE/LC_MESSAGES/gettextExample.po b/data/po/de/gettextExample.po similarity index 100% rename from examples/de_DE/LC_MESSAGES/gettextExample.po rename to data/po/de/gettextExample.po diff --git a/locale/de_DE/LC_MESSAGES/gimp.po b/data/po/de/gimp.po similarity index 56% rename from locale/de_DE/LC_MESSAGES/gimp.po rename to data/po/de/gimp.po index 1df44430..a6daed7d 100644 --- a/locale/de_DE/LC_MESSAGES/gimp.po +++ b/data/po/de/gimp.po @@ -3,41 +3,39 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: gimp\n" +"Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-13 23:50-0400\n" -"PO-Revision-Date: 2016-04-14 00:11-0500\n" -"Last-Translator: Bill Ferguson \n" +"POT-Creation-Date: 2020-08-20 20:34-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" -"Language: de_DE\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-KeywordsList: gettext;dgettext:2;dcgettext:2ngettext:1,2;" -"dngettext:2,3\n" -"X-Poedit-Basepath: .\n" -#: gimp.lua:194 +#: gimp.lua:194 contrib/gimp.lua:101 #, lua-format msgid "Export Image %i/%i" msgstr "Exportiere Bild %i/%i" #: gimp.lua:242 msgid "Unable to move edited file into collection. Leaving it as %s" -msgstr "Die bearbeitete Datei kann nicht in die Sammlung aufgenommen werden. Bearbeitete Datei ist %s" +msgstr "" +"Die bearbeitete Datei kann nicht in die Sammlung aufgenommen werden. " +"Bearbeitete Datei ist %s" -#: gimp.lua:251 +#: gimp.lua:251 contrib/gimp.lua:109 msgid "GIMP not found" msgstr "GIMP nicht gefunden" -#: gimp.lua:266 +#: gimp.lua:266 contrib/gimp.lua:128 msgid "Launching GIMP..." msgstr "Starten von GIMP" -#: gimp.lua:313 +#: gimp.lua:313 contrib/gimp.lua:182 msgid "Edit with GIMP" msgstr "Bearbeiten mit GIMP" diff --git a/data/po/de/gpx_export.po b/data/po/de/gpx_export.po new file mode 100644 index 00000000..5aa255be --- /dev/null +++ b/data/po/de/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/hugin.po b/data/po/de/hugin.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/hugin.po rename to data/po/de/hugin.po diff --git a/data/po/de/image_stack.po b/data/po/de/image_stack.po new file mode 100644 index 00000000..d30f6465 --- /dev/null +++ b/data/po/de/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/de/image_time.po b/data/po/de/image_time.po new file mode 100644 index 00000000..9de9af14 --- /dev/null +++ b/data/po/de/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/kml_export.po b/data/po/de/kml_export.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/kml_export.po rename to data/po/de/kml_export.po diff --git a/data/po/de/lighttable_demo.po b/data/po/de/lighttable_demo.po new file mode 100644 index 00000000..2dae40a7 --- /dev/null +++ b/data/po/de/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/de/moduleExample.po b/data/po/de/moduleExample.po new file mode 100644 index 00000000..a3538c7f --- /dev/null +++ b/data/po/de/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/de/multi_os.po b/data/po/de/multi_os.po new file mode 100644 index 00000000..d583c8d3 --- /dev/null +++ b/data/po/de/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/de/panels_demo.po b/data/po/de/panels_demo.po new file mode 100644 index 00000000..8a25d8e6 --- /dev/null +++ b/data/po/de/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/de/passport_guide.po b/data/po/de/passport_guide.po new file mode 100644 index 00000000..1f82e1ba --- /dev/null +++ b/data/po/de/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/de/pdf_slideshow.po b/data/po/de/pdf_slideshow.po new file mode 100644 index 00000000..c5beb43f --- /dev/null +++ b/data/po/de/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/photils.po b/data/po/de/photils.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/photils.po rename to data/po/de/photils.po diff --git a/locale/de_DE/LC_MESSAGES/quicktag.po b/data/po/de/quicktag.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/quicktag.po rename to data/po/de/quicktag.po diff --git a/data/po/de/script_manager.po b/data/po/de/script_manager.po new file mode 100644 index 00000000..1a675e41 --- /dev/null +++ b/data/po/de/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/locale/de_DE/LC_MESSAGES/select_untagged.po b/data/po/de/select_untagged.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/select_untagged.po rename to data/po/de/select_untagged.po diff --git a/locale/de_DE/LC_MESSAGES/slideshowMusic.po b/data/po/de/slideshowMusic.po similarity index 100% rename from locale/de_DE/LC_MESSAGES/slideshowMusic.po rename to data/po/de/slideshowMusic.po diff --git a/data/po/de/transfer_hierarchy.po b/data/po/de/transfer_hierarchy.po new file mode 100644 index 00000000..5933ad20 --- /dev/null +++ b/data/po/de/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/de/video_ffmpeg.po b/data/po/de/video_ffmpeg.po new file mode 100644 index 00000000..c23fcbd3 --- /dev/null +++ b/data/po/de/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/el/AutoGrouper.po b/data/po/el/AutoGrouper.po new file mode 100644 index 00000000..53ba78cd --- /dev/null +++ b/data/po/el/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/el/CollectHelper.po b/data/po/el/CollectHelper.po new file mode 100644 index 00000000..aa9ae0f9 --- /dev/null +++ b/data/po/el/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/el/HDRMerge.po b/data/po/el/HDRMerge.po new file mode 100644 index 00000000..c28aaf76 --- /dev/null +++ b/data/po/el/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/el/OpenInExplorer.po b/data/po/el/OpenInExplorer.po new file mode 100644 index 00000000..b3084301 --- /dev/null +++ b/data/po/el/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/el/RL_out_sharp.po b/data/po/el/RL_out_sharp.po new file mode 100644 index 00000000..1fdda859 --- /dev/null +++ b/data/po/el/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/el/autostyle.po b/data/po/el/autostyle.po new file mode 100644 index 00000000..45411314 --- /dev/null +++ b/data/po/el/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/el/clear_GPS.po b/data/po/el/clear_GPS.po new file mode 100644 index 00000000..4dc4a11b --- /dev/null +++ b/data/po/el/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/el/copy_attach_detach_tags.po b/data/po/el/copy_attach_detach_tags.po new file mode 100644 index 00000000..a62e055e --- /dev/null +++ b/data/po/el/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/el/darkroom_demo.po b/data/po/el/darkroom_demo.po new file mode 100644 index 00000000..4a59ef2e --- /dev/null +++ b/data/po/el/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/el/dtutils.po b/data/po/el/dtutils.po new file mode 100644 index 00000000..577e6e99 --- /dev/null +++ b/data/po/el/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/el/enfuse.po b/data/po/el/enfuse.po new file mode 100644 index 00000000..31497a02 --- /dev/null +++ b/data/po/el/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/el/enfuseAdvanced.po b/data/po/el/enfuseAdvanced.po new file mode 100644 index 00000000..0a092031 --- /dev/null +++ b/data/po/el/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/el/executable_manager.po b/data/po/el/executable_manager.po new file mode 100644 index 00000000..9f198a35 --- /dev/null +++ b/data/po/el/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/el/exportLUT.po b/data/po/el/exportLUT.po new file mode 100644 index 00000000..7e8ffaef --- /dev/null +++ b/data/po/el/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/el/ext_editor.po b/data/po/el/ext_editor.po new file mode 100644 index 00000000..9d05b7d6 --- /dev/null +++ b/data/po/el/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/el/face_recognition.po b/data/po/el/face_recognition.po new file mode 100644 index 00000000..61b47bb1 --- /dev/null +++ b/data/po/el/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/el/file.po b/data/po/el/file.po new file mode 100644 index 00000000..a87e2d4a --- /dev/null +++ b/data/po/el/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/el/fujifilm_ratings.po b/data/po/el/fujifilm_ratings.po new file mode 100644 index 00000000..03a23e0c --- /dev/null +++ b/data/po/el/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/el/geoJSON_export.po b/data/po/el/geoJSON_export.po new file mode 100644 index 00000000..3d2db564 --- /dev/null +++ b/data/po/el/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/el/geoToolbox.po b/data/po/el/geoToolbox.po new file mode 100644 index 00000000..97e0e256 --- /dev/null +++ b/data/po/el/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/el/gettextExample.po b/data/po/el/gettextExample.po new file mode 100644 index 00000000..77fa8af5 --- /dev/null +++ b/data/po/el/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/el/gimp.po b/data/po/el/gimp.po new file mode 100644 index 00000000..7c0f1699 --- /dev/null +++ b/data/po/el/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/el/gpx_export.po b/data/po/el/gpx_export.po new file mode 100644 index 00000000..3aab1938 --- /dev/null +++ b/data/po/el/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/el/hugin.po b/data/po/el/hugin.po new file mode 100644 index 00000000..01a1d295 --- /dev/null +++ b/data/po/el/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/el/image_stack.po b/data/po/el/image_stack.po new file mode 100644 index 00000000..8ce42610 --- /dev/null +++ b/data/po/el/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/el/image_time.po b/data/po/el/image_time.po new file mode 100644 index 00000000..1f6c2048 --- /dev/null +++ b/data/po/el/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/el/kml_export.po b/data/po/el/kml_export.po new file mode 100644 index 00000000..fccdce47 --- /dev/null +++ b/data/po/el/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/el/lighttable_demo.po b/data/po/el/lighttable_demo.po new file mode 100644 index 00000000..880d4285 --- /dev/null +++ b/data/po/el/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/el/moduleExample.po b/data/po/el/moduleExample.po new file mode 100644 index 00000000..9a474127 --- /dev/null +++ b/data/po/el/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/el/multi_os.po b/data/po/el/multi_os.po new file mode 100644 index 00000000..850123d2 --- /dev/null +++ b/data/po/el/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/el/panels_demo.po b/data/po/el/panels_demo.po new file mode 100644 index 00000000..d694db40 --- /dev/null +++ b/data/po/el/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/el/passport_guide.po b/data/po/el/passport_guide.po new file mode 100644 index 00000000..d338f43d --- /dev/null +++ b/data/po/el/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/el/pdf_slideshow.po b/data/po/el/pdf_slideshow.po new file mode 100644 index 00000000..e8f0a990 --- /dev/null +++ b/data/po/el/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/el/photils.po b/data/po/el/photils.po new file mode 100644 index 00000000..a387c958 --- /dev/null +++ b/data/po/el/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/el/quicktag.po b/data/po/el/quicktag.po new file mode 100644 index 00000000..9404b1ee --- /dev/null +++ b/data/po/el/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/el/script_manager.po b/data/po/el/script_manager.po new file mode 100644 index 00000000..edbe491e --- /dev/null +++ b/data/po/el/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/el/select_untagged.po b/data/po/el/select_untagged.po new file mode 100644 index 00000000..d4b88676 --- /dev/null +++ b/data/po/el/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/el/slideshowMusic.po b/data/po/el/slideshowMusic.po new file mode 100644 index 00000000..4d927536 --- /dev/null +++ b/data/po/el/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/el/transfer_hierarchy.po b/data/po/el/transfer_hierarchy.po new file mode 100644 index 00000000..fde869d4 --- /dev/null +++ b/data/po/el/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/el/video_ffmpeg.po b/data/po/el/video_ffmpeg.po new file mode 100644 index 00000000..20ba6c3a --- /dev/null +++ b/data/po/el/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/es/AutoGrouper.po b/data/po/es/AutoGrouper.po new file mode 100644 index 00000000..1e8917aa --- /dev/null +++ b/data/po/es/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/es/CollectHelper.po b/data/po/es/CollectHelper.po new file mode 100644 index 00000000..4db2c1c8 --- /dev/null +++ b/data/po/es/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/es/HDRMerge.po b/data/po/es/HDRMerge.po new file mode 100644 index 00000000..f41973dc --- /dev/null +++ b/data/po/es/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/es/OpenInExplorer.po b/data/po/es/OpenInExplorer.po new file mode 100644 index 00000000..587334a0 --- /dev/null +++ b/data/po/es/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/es/RL_out_sharp.po b/data/po/es/RL_out_sharp.po new file mode 100644 index 00000000..0348be23 --- /dev/null +++ b/data/po/es/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/es/autostyle.po b/data/po/es/autostyle.po new file mode 100644 index 00000000..1641221e --- /dev/null +++ b/data/po/es/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/es/clear_GPS.po b/data/po/es/clear_GPS.po new file mode 100644 index 00000000..7157b73d --- /dev/null +++ b/data/po/es/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/es/copy_attach_detach_tags.po b/data/po/es/copy_attach_detach_tags.po new file mode 100644 index 00000000..5ffb1a12 --- /dev/null +++ b/data/po/es/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/es/darkroom_demo.po b/data/po/es/darkroom_demo.po new file mode 100644 index 00000000..45355ca7 --- /dev/null +++ b/data/po/es/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/es/dtutils.po b/data/po/es/dtutils.po new file mode 100644 index 00000000..413d8506 --- /dev/null +++ b/data/po/es/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/es/enfuse.po b/data/po/es/enfuse.po new file mode 100644 index 00000000..5fbb1f1e --- /dev/null +++ b/data/po/es/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/es/enfuseAdvanced.po b/data/po/es/enfuseAdvanced.po new file mode 100644 index 00000000..312fa5a3 --- /dev/null +++ b/data/po/es/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/es/executable_manager.po b/data/po/es/executable_manager.po new file mode 100644 index 00000000..eac4f1c3 --- /dev/null +++ b/data/po/es/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/es/exportLUT.po b/data/po/es/exportLUT.po new file mode 100644 index 00000000..eb3a1e09 --- /dev/null +++ b/data/po/es/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/es/ext_editor.po b/data/po/es/ext_editor.po new file mode 100644 index 00000000..8e442ea1 --- /dev/null +++ b/data/po/es/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/es/face_recognition.po b/data/po/es/face_recognition.po new file mode 100644 index 00000000..b93f7233 --- /dev/null +++ b/data/po/es/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/es/file.po b/data/po/es/file.po new file mode 100644 index 00000000..c376cf4c --- /dev/null +++ b/data/po/es/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/es/fujifilm_ratings.po b/data/po/es/fujifilm_ratings.po new file mode 100644 index 00000000..bf2f7953 --- /dev/null +++ b/data/po/es/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/es/geoJSON_export.po b/data/po/es/geoJSON_export.po new file mode 100644 index 00000000..d1046f62 --- /dev/null +++ b/data/po/es/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/es/geoToolbox.po b/data/po/es/geoToolbox.po new file mode 100644 index 00000000..781d13fe --- /dev/null +++ b/data/po/es/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/es/gettextExample.po b/data/po/es/gettextExample.po new file mode 100644 index 00000000..e9bca811 --- /dev/null +++ b/data/po/es/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/es/gimp.po b/data/po/es/gimp.po new file mode 100644 index 00000000..b092ed66 --- /dev/null +++ b/data/po/es/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/es/gpx_export.po b/data/po/es/gpx_export.po new file mode 100644 index 00000000..8844b79f --- /dev/null +++ b/data/po/es/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/es/hugin.po b/data/po/es/hugin.po new file mode 100644 index 00000000..51847b8c --- /dev/null +++ b/data/po/es/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/es/image_stack.po b/data/po/es/image_stack.po new file mode 100644 index 00000000..c11e23a7 --- /dev/null +++ b/data/po/es/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/es/image_time.po b/data/po/es/image_time.po new file mode 100644 index 00000000..f9635a43 --- /dev/null +++ b/data/po/es/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/es/kml_export.po b/data/po/es/kml_export.po new file mode 100644 index 00000000..24681664 --- /dev/null +++ b/data/po/es/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/es/lighttable_demo.po b/data/po/es/lighttable_demo.po new file mode 100644 index 00000000..584f1ecf --- /dev/null +++ b/data/po/es/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/es/moduleExample.po b/data/po/es/moduleExample.po new file mode 100644 index 00000000..8c64919b --- /dev/null +++ b/data/po/es/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/es/multi_os.po b/data/po/es/multi_os.po new file mode 100644 index 00000000..4018dc42 --- /dev/null +++ b/data/po/es/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/es/panels_demo.po b/data/po/es/panels_demo.po new file mode 100644 index 00000000..3927d578 --- /dev/null +++ b/data/po/es/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/es/passport_guide.po b/data/po/es/passport_guide.po new file mode 100644 index 00000000..0f182746 --- /dev/null +++ b/data/po/es/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/es/pdf_slideshow.po b/data/po/es/pdf_slideshow.po new file mode 100644 index 00000000..7f09f8e9 --- /dev/null +++ b/data/po/es/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/es/photils.po b/data/po/es/photils.po new file mode 100644 index 00000000..37d3b517 --- /dev/null +++ b/data/po/es/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/es/quicktag.po b/data/po/es/quicktag.po new file mode 100644 index 00000000..5492b71b --- /dev/null +++ b/data/po/es/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/es/script_manager.po b/data/po/es/script_manager.po new file mode 100644 index 00000000..c69b337d --- /dev/null +++ b/data/po/es/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/es/select_untagged.po b/data/po/es/select_untagged.po new file mode 100644 index 00000000..884b7f43 --- /dev/null +++ b/data/po/es/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/es/slideshowMusic.po b/data/po/es/slideshowMusic.po new file mode 100644 index 00000000..f1dff527 --- /dev/null +++ b/data/po/es/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/es/transfer_hierarchy.po b/data/po/es/transfer_hierarchy.po new file mode 100644 index 00000000..7889cda3 --- /dev/null +++ b/data/po/es/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/es/video_ffmpeg.po b/data/po/es/video_ffmpeg.po new file mode 100644 index 00000000..ec405350 --- /dev/null +++ b/data/po/es/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/fi/AutoGrouper.po b/data/po/fi/AutoGrouper.po new file mode 100644 index 00000000..8971784e --- /dev/null +++ b/data/po/fi/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/fi/CollectHelper.po b/data/po/fi/CollectHelper.po new file mode 100644 index 00000000..1fa302cb --- /dev/null +++ b/data/po/fi/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/fi/HDRMerge.po b/data/po/fi/HDRMerge.po new file mode 100644 index 00000000..2115c423 --- /dev/null +++ b/data/po/fi/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/fi/OpenInExplorer.po b/data/po/fi/OpenInExplorer.po new file mode 100644 index 00000000..f785ba13 --- /dev/null +++ b/data/po/fi/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/fi/RL_out_sharp.po b/data/po/fi/RL_out_sharp.po new file mode 100644 index 00000000..6a5a9b44 --- /dev/null +++ b/data/po/fi/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/fi/autostyle.po b/data/po/fi/autostyle.po new file mode 100644 index 00000000..1abe0077 --- /dev/null +++ b/data/po/fi/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/fi/clear_GPS.po b/data/po/fi/clear_GPS.po new file mode 100644 index 00000000..014b3911 --- /dev/null +++ b/data/po/fi/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/fi/copy_attach_detach_tags.po b/data/po/fi/copy_attach_detach_tags.po new file mode 100644 index 00000000..879bc6fe --- /dev/null +++ b/data/po/fi/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/fi/darkroom_demo.po b/data/po/fi/darkroom_demo.po new file mode 100644 index 00000000..325a9355 --- /dev/null +++ b/data/po/fi/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/fi/dtutils.po b/data/po/fi/dtutils.po new file mode 100644 index 00000000..9f98694c --- /dev/null +++ b/data/po/fi/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/fi/enfuse.po b/data/po/fi/enfuse.po new file mode 100644 index 00000000..b3a92480 --- /dev/null +++ b/data/po/fi/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/fi/enfuseAdvanced.po b/data/po/fi/enfuseAdvanced.po new file mode 100644 index 00000000..49a0b6e4 --- /dev/null +++ b/data/po/fi/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/fi/executable_manager.po b/data/po/fi/executable_manager.po new file mode 100644 index 00000000..b35a4796 --- /dev/null +++ b/data/po/fi/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/fi/exportLUT.po b/data/po/fi/exportLUT.po new file mode 100644 index 00000000..fca7db44 --- /dev/null +++ b/data/po/fi/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/fi/ext_editor.po b/data/po/fi/ext_editor.po new file mode 100644 index 00000000..d0d45ca2 --- /dev/null +++ b/data/po/fi/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/fi/face_recognition.po b/data/po/fi/face_recognition.po new file mode 100644 index 00000000..fdf67e81 --- /dev/null +++ b/data/po/fi/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/fi/file.po b/data/po/fi/file.po new file mode 100644 index 00000000..86de1da9 --- /dev/null +++ b/data/po/fi/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/fi/fujifilm_ratings.po b/data/po/fi/fujifilm_ratings.po new file mode 100644 index 00000000..ad3b52bd --- /dev/null +++ b/data/po/fi/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/fi/geoJSON_export.po b/data/po/fi/geoJSON_export.po new file mode 100644 index 00000000..67de1b67 --- /dev/null +++ b/data/po/fi/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/fi/geoToolbox.po b/data/po/fi/geoToolbox.po new file mode 100644 index 00000000..6ff8698d --- /dev/null +++ b/data/po/fi/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/fi/gettextExample.po b/data/po/fi/gettextExample.po new file mode 100644 index 00000000..de2a7407 --- /dev/null +++ b/data/po/fi/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/fi/gimp.po b/data/po/fi/gimp.po new file mode 100644 index 00000000..ce75a1d7 --- /dev/null +++ b/data/po/fi/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/fi/gpx_export.po b/data/po/fi/gpx_export.po new file mode 100644 index 00000000..7fb09cc4 --- /dev/null +++ b/data/po/fi/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/fi/hugin.po b/data/po/fi/hugin.po new file mode 100644 index 00000000..8f4104b3 --- /dev/null +++ b/data/po/fi/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/fi/image_stack.po b/data/po/fi/image_stack.po new file mode 100644 index 00000000..1f92b730 --- /dev/null +++ b/data/po/fi/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/fi/image_time.po b/data/po/fi/image_time.po new file mode 100644 index 00000000..fceabcfa --- /dev/null +++ b/data/po/fi/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/fi/kml_export.po b/data/po/fi/kml_export.po new file mode 100644 index 00000000..85352b68 --- /dev/null +++ b/data/po/fi/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/fi/lighttable_demo.po b/data/po/fi/lighttable_demo.po new file mode 100644 index 00000000..606d756e --- /dev/null +++ b/data/po/fi/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/fi/moduleExample.po b/data/po/fi/moduleExample.po new file mode 100644 index 00000000..254a22ea --- /dev/null +++ b/data/po/fi/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/fi/multi_os.po b/data/po/fi/multi_os.po new file mode 100644 index 00000000..5c0927fd --- /dev/null +++ b/data/po/fi/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/fi/panels_demo.po b/data/po/fi/panels_demo.po new file mode 100644 index 00000000..3709f2e0 --- /dev/null +++ b/data/po/fi/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/fi/passport_guide.po b/data/po/fi/passport_guide.po new file mode 100644 index 00000000..0ebe5491 --- /dev/null +++ b/data/po/fi/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/fi/pdf_slideshow.po b/data/po/fi/pdf_slideshow.po new file mode 100644 index 00000000..210e7286 --- /dev/null +++ b/data/po/fi/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/fi/photils.po b/data/po/fi/photils.po new file mode 100644 index 00000000..f60acdf5 --- /dev/null +++ b/data/po/fi/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/fi/quicktag.po b/data/po/fi/quicktag.po new file mode 100644 index 00000000..e2329846 --- /dev/null +++ b/data/po/fi/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/fi/script_manager.po b/data/po/fi/script_manager.po new file mode 100644 index 00000000..57dd6dfb --- /dev/null +++ b/data/po/fi/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/fi/select_untagged.po b/data/po/fi/select_untagged.po new file mode 100644 index 00000000..4c6603ae --- /dev/null +++ b/data/po/fi/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/fi/slideshowMusic.po b/data/po/fi/slideshowMusic.po new file mode 100644 index 00000000..6c303877 --- /dev/null +++ b/data/po/fi/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/fi/transfer_hierarchy.po b/data/po/fi/transfer_hierarchy.po new file mode 100644 index 00000000..027edb30 --- /dev/null +++ b/data/po/fi/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/fi/video_ffmpeg.po b/data/po/fi/video_ffmpeg.po new file mode 100644 index 00000000..82d9a278 --- /dev/null +++ b/data/po/fi/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/fr/AutoGrouper.po b/data/po/fr/AutoGrouper.po new file mode 100644 index 00000000..4cd7160e --- /dev/null +++ b/data/po/fr/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/fr/CollectHelper.po b/data/po/fr/CollectHelper.po new file mode 100644 index 00000000..927828bd --- /dev/null +++ b/data/po/fr/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/fr/HDRMerge.po b/data/po/fr/HDRMerge.po new file mode 100644 index 00000000..b97f01ff --- /dev/null +++ b/data/po/fr/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/fr/OpenInExplorer.po b/data/po/fr/OpenInExplorer.po new file mode 100644 index 00000000..16a955b2 --- /dev/null +++ b/data/po/fr/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/fr/RL_out_sharp.po b/data/po/fr/RL_out_sharp.po new file mode 100644 index 00000000..7f96917e --- /dev/null +++ b/data/po/fr/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/fr/autostyle.po b/data/po/fr/autostyle.po new file mode 100644 index 00000000..efae3e94 --- /dev/null +++ b/data/po/fr/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/clear_GPS.po b/data/po/fr/clear_GPS.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/clear_GPS.po rename to data/po/fr/clear_GPS.po diff --git a/data/po/fr/copy_attach_detach_tags.po b/data/po/fr/copy_attach_detach_tags.po new file mode 100644 index 00000000..6a4ea6d7 --- /dev/null +++ b/data/po/fr/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/fr/darkroom_demo.po b/data/po/fr/darkroom_demo.po new file mode 100644 index 00000000..d794419f --- /dev/null +++ b/data/po/fr/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/fr/dtutils.po b/data/po/fr/dtutils.po new file mode 100644 index 00000000..8eecdcda --- /dev/null +++ b/data/po/fr/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/fr/enfuse.po b/data/po/fr/enfuse.po new file mode 100644 index 00000000..59b775a6 --- /dev/null +++ b/data/po/fr/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/fr/enfuseAdvanced.po b/data/po/fr/enfuseAdvanced.po new file mode 100644 index 00000000..bded2a9c --- /dev/null +++ b/data/po/fr/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/fr/executable_manager.po b/data/po/fr/executable_manager.po new file mode 100644 index 00000000..6ae61362 --- /dev/null +++ b/data/po/fr/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/fr/exportLUT.po b/data/po/fr/exportLUT.po new file mode 100644 index 00000000..a798e449 --- /dev/null +++ b/data/po/fr/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/fr/ext_editor.po b/data/po/fr/ext_editor.po new file mode 100644 index 00000000..04cbb007 --- /dev/null +++ b/data/po/fr/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/fr/face_recognition.po b/data/po/fr/face_recognition.po new file mode 100644 index 00000000..3a3ea03f --- /dev/null +++ b/data/po/fr/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/fr/file.po b/data/po/fr/file.po new file mode 100644 index 00000000..7e9b8b10 --- /dev/null +++ b/data/po/fr/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/fr/fujifilm_ratings.po b/data/po/fr/fujifilm_ratings.po new file mode 100644 index 00000000..a7a1c40a --- /dev/null +++ b/data/po/fr/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/fr/geoJSON_export.po b/data/po/fr/geoJSON_export.po new file mode 100644 index 00000000..af206dfa --- /dev/null +++ b/data/po/fr/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/fr/geoToolbox.po b/data/po/fr/geoToolbox.po new file mode 100644 index 00000000..34f5151f --- /dev/null +++ b/data/po/fr/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "gnome-maps non disponible" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "curl non disponible" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "jq non disponible" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "Sélectionner toutes les images avec des informations GPS" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "Sélectionner toutes les images sans information GPS" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "Ouvre la position dans Gnome Maps" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "Calcule la distance en km entre les positions GPS de deux images" diff --git a/data/po/fr/gettextExample.po b/data/po/fr/gettextExample.po new file mode 100644 index 00000000..eddacd0f --- /dev/null +++ b/data/po/fr/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/gimp.po b/data/po/fr/gimp.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/gimp.po rename to data/po/fr/gimp.po diff --git a/data/po/fr/gpx_export.po b/data/po/fr/gpx_export.po new file mode 100644 index 00000000..eb2ab311 --- /dev/null +++ b/data/po/fr/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/hugin.po b/data/po/fr/hugin.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/hugin.po rename to data/po/fr/hugin.po diff --git a/data/po/fr/image_stack.po b/data/po/fr/image_stack.po new file mode 100644 index 00000000..bbf0fd12 --- /dev/null +++ b/data/po/fr/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/fr/image_time.po b/data/po/fr/image_time.po new file mode 100644 index 00000000..d54b8da1 --- /dev/null +++ b/data/po/fr/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/kml_export.po b/data/po/fr/kml_export.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/kml_export.po rename to data/po/fr/kml_export.po diff --git a/data/po/fr/lighttable_demo.po b/data/po/fr/lighttable_demo.po new file mode 100644 index 00000000..f903b5d4 --- /dev/null +++ b/data/po/fr/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/fr/moduleExample.po b/data/po/fr/moduleExample.po new file mode 100644 index 00000000..66a76054 --- /dev/null +++ b/data/po/fr/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/fr/multi_os.po b/data/po/fr/multi_os.po new file mode 100644 index 00000000..b5917df4 --- /dev/null +++ b/data/po/fr/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/fr/panels_demo.po b/data/po/fr/panels_demo.po new file mode 100644 index 00000000..ec11518e --- /dev/null +++ b/data/po/fr/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/fr/passport_guide.po b/data/po/fr/passport_guide.po new file mode 100644 index 00000000..75918a7a --- /dev/null +++ b/data/po/fr/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/pdf_slideshow.po b/data/po/fr/pdf_slideshow.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/pdf_slideshow.po rename to data/po/fr/pdf_slideshow.po diff --git a/data/po/fr/photils.po b/data/po/fr/photils.po new file mode 100644 index 00000000..b1a9e22f --- /dev/null +++ b/data/po/fr/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/fr/quicktag.po b/data/po/fr/quicktag.po new file mode 100644 index 00000000..160f401f --- /dev/null +++ b/data/po/fr/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/fr/script_manager.po b/data/po/fr/script_manager.po new file mode 100644 index 00000000..26b5a4ae --- /dev/null +++ b/data/po/fr/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/locale/fr_FR/LC_MESSAGES/select_untagged.po b/data/po/fr/select_untagged.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/select_untagged.po rename to data/po/fr/select_untagged.po diff --git a/locale/fr_FR/LC_MESSAGES/slideshowMusic.po b/data/po/fr/slideshowMusic.po similarity index 100% rename from locale/fr_FR/LC_MESSAGES/slideshowMusic.po rename to data/po/fr/slideshowMusic.po diff --git a/data/po/fr/transfer_hierarchy.po b/data/po/fr/transfer_hierarchy.po new file mode 100644 index 00000000..30b4fc7f --- /dev/null +++ b/data/po/fr/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/fr/video_ffmpeg.po b/data/po/fr/video_ffmpeg.po new file mode 100644 index 00000000..37d2dd4b --- /dev/null +++ b/data/po/fr/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/gl/AutoGrouper.po b/data/po/gl/AutoGrouper.po new file mode 100644 index 00000000..08249828 --- /dev/null +++ b/data/po/gl/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/gl/CollectHelper.po b/data/po/gl/CollectHelper.po new file mode 100644 index 00000000..ac7a6a1e --- /dev/null +++ b/data/po/gl/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/gl/HDRMerge.po b/data/po/gl/HDRMerge.po new file mode 100644 index 00000000..a19f5ab7 --- /dev/null +++ b/data/po/gl/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/gl/OpenInExplorer.po b/data/po/gl/OpenInExplorer.po new file mode 100644 index 00000000..32bd22ef --- /dev/null +++ b/data/po/gl/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/gl/RL_out_sharp.po b/data/po/gl/RL_out_sharp.po new file mode 100644 index 00000000..6d070a3e --- /dev/null +++ b/data/po/gl/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/gl/autostyle.po b/data/po/gl/autostyle.po new file mode 100644 index 00000000..5a02fcaa --- /dev/null +++ b/data/po/gl/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/gl/clear_GPS.po b/data/po/gl/clear_GPS.po new file mode 100644 index 00000000..71dc0dd2 --- /dev/null +++ b/data/po/gl/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/gl/copy_attach_detach_tags.po b/data/po/gl/copy_attach_detach_tags.po new file mode 100644 index 00000000..1df3df2e --- /dev/null +++ b/data/po/gl/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/gl/darkroom_demo.po b/data/po/gl/darkroom_demo.po new file mode 100644 index 00000000..c1296d82 --- /dev/null +++ b/data/po/gl/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/gl/dtutils.po b/data/po/gl/dtutils.po new file mode 100644 index 00000000..52020c1e --- /dev/null +++ b/data/po/gl/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/gl/enfuse.po b/data/po/gl/enfuse.po new file mode 100644 index 00000000..273702a9 --- /dev/null +++ b/data/po/gl/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/gl/enfuseAdvanced.po b/data/po/gl/enfuseAdvanced.po new file mode 100644 index 00000000..d57139cd --- /dev/null +++ b/data/po/gl/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/gl/executable_manager.po b/data/po/gl/executable_manager.po new file mode 100644 index 00000000..ff78ec61 --- /dev/null +++ b/data/po/gl/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/gl/exportLUT.po b/data/po/gl/exportLUT.po new file mode 100644 index 00000000..5046d50c --- /dev/null +++ b/data/po/gl/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/gl/ext_editor.po b/data/po/gl/ext_editor.po new file mode 100644 index 00000000..0788df51 --- /dev/null +++ b/data/po/gl/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/gl/face_recognition.po b/data/po/gl/face_recognition.po new file mode 100644 index 00000000..febdb1a0 --- /dev/null +++ b/data/po/gl/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/gl/file.po b/data/po/gl/file.po new file mode 100644 index 00000000..521a41a3 --- /dev/null +++ b/data/po/gl/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/gl/fujifilm_ratings.po b/data/po/gl/fujifilm_ratings.po new file mode 100644 index 00000000..29424ea1 --- /dev/null +++ b/data/po/gl/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/gl/geoJSON_export.po b/data/po/gl/geoJSON_export.po new file mode 100644 index 00000000..67109166 --- /dev/null +++ b/data/po/gl/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/gl/geoToolbox.po b/data/po/gl/geoToolbox.po new file mode 100644 index 00000000..4a052133 --- /dev/null +++ b/data/po/gl/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/gl/gettextExample.po b/data/po/gl/gettextExample.po new file mode 100644 index 00000000..d088ba6f --- /dev/null +++ b/data/po/gl/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/gl/gimp.po b/data/po/gl/gimp.po new file mode 100644 index 00000000..4aa71a60 --- /dev/null +++ b/data/po/gl/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/gl/gpx_export.po b/data/po/gl/gpx_export.po new file mode 100644 index 00000000..1913d878 --- /dev/null +++ b/data/po/gl/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/gl/hugin.po b/data/po/gl/hugin.po new file mode 100644 index 00000000..c25c73e4 --- /dev/null +++ b/data/po/gl/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/gl/image_stack.po b/data/po/gl/image_stack.po new file mode 100644 index 00000000..63bb0fde --- /dev/null +++ b/data/po/gl/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/gl/image_time.po b/data/po/gl/image_time.po new file mode 100644 index 00000000..8beafc35 --- /dev/null +++ b/data/po/gl/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/gl/kml_export.po b/data/po/gl/kml_export.po new file mode 100644 index 00000000..91d206f7 --- /dev/null +++ b/data/po/gl/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/gl/lighttable_demo.po b/data/po/gl/lighttable_demo.po new file mode 100644 index 00000000..c2689132 --- /dev/null +++ b/data/po/gl/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/gl/moduleExample.po b/data/po/gl/moduleExample.po new file mode 100644 index 00000000..391e5a5e --- /dev/null +++ b/data/po/gl/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/gl/multi_os.po b/data/po/gl/multi_os.po new file mode 100644 index 00000000..4e6f541b --- /dev/null +++ b/data/po/gl/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/gl/panels_demo.po b/data/po/gl/panels_demo.po new file mode 100644 index 00000000..fe38f73e --- /dev/null +++ b/data/po/gl/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/gl/passport_guide.po b/data/po/gl/passport_guide.po new file mode 100644 index 00000000..bc9e353b --- /dev/null +++ b/data/po/gl/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/gl/pdf_slideshow.po b/data/po/gl/pdf_slideshow.po new file mode 100644 index 00000000..9fc62943 --- /dev/null +++ b/data/po/gl/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/gl/photils.po b/data/po/gl/photils.po new file mode 100644 index 00000000..22ee2c39 --- /dev/null +++ b/data/po/gl/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/gl/quicktag.po b/data/po/gl/quicktag.po new file mode 100644 index 00000000..4206b63b --- /dev/null +++ b/data/po/gl/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/gl/script_manager.po b/data/po/gl/script_manager.po new file mode 100644 index 00000000..b26ee29c --- /dev/null +++ b/data/po/gl/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/gl/select_untagged.po b/data/po/gl/select_untagged.po new file mode 100644 index 00000000..883f341c --- /dev/null +++ b/data/po/gl/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/gl/slideshowMusic.po b/data/po/gl/slideshowMusic.po new file mode 100644 index 00000000..c52e5f92 --- /dev/null +++ b/data/po/gl/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/gl/transfer_hierarchy.po b/data/po/gl/transfer_hierarchy.po new file mode 100644 index 00000000..9a062296 --- /dev/null +++ b/data/po/gl/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/gl/video_ffmpeg.po b/data/po/gl/video_ffmpeg.po new file mode 100644 index 00000000..795396d6 --- /dev/null +++ b/data/po/gl/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/he/AutoGrouper.po b/data/po/he/AutoGrouper.po new file mode 100644 index 00000000..ef44d2c7 --- /dev/null +++ b/data/po/he/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/he/CollectHelper.po b/data/po/he/CollectHelper.po new file mode 100644 index 00000000..15f88515 --- /dev/null +++ b/data/po/he/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/he/HDRMerge.po b/data/po/he/HDRMerge.po new file mode 100644 index 00000000..261c6e45 --- /dev/null +++ b/data/po/he/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/he/OpenInExplorer.po b/data/po/he/OpenInExplorer.po new file mode 100644 index 00000000..55150c58 --- /dev/null +++ b/data/po/he/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/he/RL_out_sharp.po b/data/po/he/RL_out_sharp.po new file mode 100644 index 00000000..91a1d67e --- /dev/null +++ b/data/po/he/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/he/autostyle.po b/data/po/he/autostyle.po new file mode 100644 index 00000000..ccc3c9c7 --- /dev/null +++ b/data/po/he/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/he/clear_GPS.po b/data/po/he/clear_GPS.po new file mode 100644 index 00000000..470f2b24 --- /dev/null +++ b/data/po/he/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/he/copy_attach_detach_tags.po b/data/po/he/copy_attach_detach_tags.po new file mode 100644 index 00000000..3c7a4f21 --- /dev/null +++ b/data/po/he/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/he/darkroom_demo.po b/data/po/he/darkroom_demo.po new file mode 100644 index 00000000..0bc7dae2 --- /dev/null +++ b/data/po/he/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/he/dtutils.po b/data/po/he/dtutils.po new file mode 100644 index 00000000..1b78abe5 --- /dev/null +++ b/data/po/he/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/he/enfuse.po b/data/po/he/enfuse.po new file mode 100644 index 00000000..85c8f470 --- /dev/null +++ b/data/po/he/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/he/enfuseAdvanced.po b/data/po/he/enfuseAdvanced.po new file mode 100644 index 00000000..01cc2ce1 --- /dev/null +++ b/data/po/he/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/he/executable_manager.po b/data/po/he/executable_manager.po new file mode 100644 index 00000000..e4f0ebff --- /dev/null +++ b/data/po/he/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/he/exportLUT.po b/data/po/he/exportLUT.po new file mode 100644 index 00000000..7f888ff5 --- /dev/null +++ b/data/po/he/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/he/ext_editor.po b/data/po/he/ext_editor.po new file mode 100644 index 00000000..fa75ed76 --- /dev/null +++ b/data/po/he/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/he/face_recognition.po b/data/po/he/face_recognition.po new file mode 100644 index 00000000..bccb11d7 --- /dev/null +++ b/data/po/he/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/he/file.po b/data/po/he/file.po new file mode 100644 index 00000000..865f1906 --- /dev/null +++ b/data/po/he/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/he/fujifilm_ratings.po b/data/po/he/fujifilm_ratings.po new file mode 100644 index 00000000..f2180a63 --- /dev/null +++ b/data/po/he/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/he/geoJSON_export.po b/data/po/he/geoJSON_export.po new file mode 100644 index 00000000..b62a07b8 --- /dev/null +++ b/data/po/he/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/he/geoToolbox.po b/data/po/he/geoToolbox.po new file mode 100644 index 00000000..8a1b1344 --- /dev/null +++ b/data/po/he/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/he/gettextExample.po b/data/po/he/gettextExample.po new file mode 100644 index 00000000..1d89ad36 --- /dev/null +++ b/data/po/he/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/he/gimp.po b/data/po/he/gimp.po new file mode 100644 index 00000000..807e16c4 --- /dev/null +++ b/data/po/he/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/he/gpx_export.po b/data/po/he/gpx_export.po new file mode 100644 index 00000000..c8db9b35 --- /dev/null +++ b/data/po/he/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/he/hugin.po b/data/po/he/hugin.po new file mode 100644 index 00000000..4121bf20 --- /dev/null +++ b/data/po/he/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/he/image_stack.po b/data/po/he/image_stack.po new file mode 100644 index 00000000..1b53aece --- /dev/null +++ b/data/po/he/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/he/image_time.po b/data/po/he/image_time.po new file mode 100644 index 00000000..87ed38fc --- /dev/null +++ b/data/po/he/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/he/kml_export.po b/data/po/he/kml_export.po new file mode 100644 index 00000000..0878bd76 --- /dev/null +++ b/data/po/he/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/he/lighttable_demo.po b/data/po/he/lighttable_demo.po new file mode 100644 index 00000000..723b7988 --- /dev/null +++ b/data/po/he/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/he/moduleExample.po b/data/po/he/moduleExample.po new file mode 100644 index 00000000..38adda6d --- /dev/null +++ b/data/po/he/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/he/multi_os.po b/data/po/he/multi_os.po new file mode 100644 index 00000000..73bd4b24 --- /dev/null +++ b/data/po/he/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/he/panels_demo.po b/data/po/he/panels_demo.po new file mode 100644 index 00000000..18db16d5 --- /dev/null +++ b/data/po/he/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/he/passport_guide.po b/data/po/he/passport_guide.po new file mode 100644 index 00000000..84dfa69d --- /dev/null +++ b/data/po/he/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/he/pdf_slideshow.po b/data/po/he/pdf_slideshow.po new file mode 100644 index 00000000..7e44834f --- /dev/null +++ b/data/po/he/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/he/photils.po b/data/po/he/photils.po new file mode 100644 index 00000000..a746789d --- /dev/null +++ b/data/po/he/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/he/quicktag.po b/data/po/he/quicktag.po new file mode 100644 index 00000000..34d8f288 --- /dev/null +++ b/data/po/he/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/he/script_manager.po b/data/po/he/script_manager.po new file mode 100644 index 00000000..583a18b0 --- /dev/null +++ b/data/po/he/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/he/select_untagged.po b/data/po/he/select_untagged.po new file mode 100644 index 00000000..807494ee --- /dev/null +++ b/data/po/he/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/he/slideshowMusic.po b/data/po/he/slideshowMusic.po new file mode 100644 index 00000000..b034009e --- /dev/null +++ b/data/po/he/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/he/transfer_hierarchy.po b/data/po/he/transfer_hierarchy.po new file mode 100644 index 00000000..014052ee --- /dev/null +++ b/data/po/he/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/he/video_ffmpeg.po b/data/po/he/video_ffmpeg.po new file mode 100644 index 00000000..62bcb9a1 --- /dev/null +++ b/data/po/he/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/hu/AutoGrouper.po b/data/po/hu/AutoGrouper.po new file mode 100644 index 00000000..ce2c8155 --- /dev/null +++ b/data/po/hu/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/hu/CollectHelper.po b/data/po/hu/CollectHelper.po new file mode 100644 index 00000000..af3580b8 --- /dev/null +++ b/data/po/hu/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/hu/HDRMerge.po b/data/po/hu/HDRMerge.po new file mode 100644 index 00000000..edb84a0e --- /dev/null +++ b/data/po/hu/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/hu/OpenInExplorer.po b/data/po/hu/OpenInExplorer.po new file mode 100644 index 00000000..67592c00 --- /dev/null +++ b/data/po/hu/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/hu/RL_out_sharp.po b/data/po/hu/RL_out_sharp.po new file mode 100644 index 00000000..3fc852ff --- /dev/null +++ b/data/po/hu/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/hu/autostyle.po b/data/po/hu/autostyle.po new file mode 100644 index 00000000..6d8add2d --- /dev/null +++ b/data/po/hu/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/hu/clear_GPS.po b/data/po/hu/clear_GPS.po new file mode 100644 index 00000000..567e5147 --- /dev/null +++ b/data/po/hu/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/hu/copy_attach_detach_tags.po b/data/po/hu/copy_attach_detach_tags.po new file mode 100644 index 00000000..2f883f7e --- /dev/null +++ b/data/po/hu/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/hu/darkroom_demo.po b/data/po/hu/darkroom_demo.po new file mode 100644 index 00000000..95186462 --- /dev/null +++ b/data/po/hu/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/hu/dtutils.po b/data/po/hu/dtutils.po new file mode 100644 index 00000000..8b6502d9 --- /dev/null +++ b/data/po/hu/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/hu/enfuse.po b/data/po/hu/enfuse.po new file mode 100644 index 00000000..15239df0 --- /dev/null +++ b/data/po/hu/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/hu/enfuseAdvanced.po b/data/po/hu/enfuseAdvanced.po new file mode 100644 index 00000000..05425c59 --- /dev/null +++ b/data/po/hu/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/hu/executable_manager.po b/data/po/hu/executable_manager.po new file mode 100644 index 00000000..fe292286 --- /dev/null +++ b/data/po/hu/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/hu/exportLUT.po b/data/po/hu/exportLUT.po new file mode 100644 index 00000000..85143693 --- /dev/null +++ b/data/po/hu/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/hu/ext_editor.po b/data/po/hu/ext_editor.po new file mode 100644 index 00000000..5708b614 --- /dev/null +++ b/data/po/hu/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/hu/face_recognition.po b/data/po/hu/face_recognition.po new file mode 100644 index 00000000..d271ee11 --- /dev/null +++ b/data/po/hu/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/hu/file.po b/data/po/hu/file.po new file mode 100644 index 00000000..1e96c13d --- /dev/null +++ b/data/po/hu/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/hu/fujifilm_ratings.po b/data/po/hu/fujifilm_ratings.po new file mode 100644 index 00000000..049ff648 --- /dev/null +++ b/data/po/hu/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/hu/geoJSON_export.po b/data/po/hu/geoJSON_export.po new file mode 100644 index 00000000..134d6d61 --- /dev/null +++ b/data/po/hu/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/hu/geoToolbox.po b/data/po/hu/geoToolbox.po new file mode 100644 index 00000000..7faec9f4 --- /dev/null +++ b/data/po/hu/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/hu/gettextExample.po b/data/po/hu/gettextExample.po new file mode 100644 index 00000000..d348633d --- /dev/null +++ b/data/po/hu/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/hu/gimp.po b/data/po/hu/gimp.po new file mode 100644 index 00000000..9bdfb7aa --- /dev/null +++ b/data/po/hu/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/hu/gpx_export.po b/data/po/hu/gpx_export.po new file mode 100644 index 00000000..3f7c172a --- /dev/null +++ b/data/po/hu/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/hu/hugin.po b/data/po/hu/hugin.po new file mode 100644 index 00000000..0cadcffe --- /dev/null +++ b/data/po/hu/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/hu/image_stack.po b/data/po/hu/image_stack.po new file mode 100644 index 00000000..ecf6b382 --- /dev/null +++ b/data/po/hu/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/hu/image_time.po b/data/po/hu/image_time.po new file mode 100644 index 00000000..9d6228a6 --- /dev/null +++ b/data/po/hu/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/hu/kml_export.po b/data/po/hu/kml_export.po new file mode 100644 index 00000000..53319ff7 --- /dev/null +++ b/data/po/hu/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/hu/lighttable_demo.po b/data/po/hu/lighttable_demo.po new file mode 100644 index 00000000..c00f14c9 --- /dev/null +++ b/data/po/hu/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/hu/moduleExample.po b/data/po/hu/moduleExample.po new file mode 100644 index 00000000..c741cf78 --- /dev/null +++ b/data/po/hu/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/hu/multi_os.po b/data/po/hu/multi_os.po new file mode 100644 index 00000000..e2d9e86a --- /dev/null +++ b/data/po/hu/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/hu/panels_demo.po b/data/po/hu/panels_demo.po new file mode 100644 index 00000000..bb0d3955 --- /dev/null +++ b/data/po/hu/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/hu/passport_guide.po b/data/po/hu/passport_guide.po new file mode 100644 index 00000000..b71f86e5 --- /dev/null +++ b/data/po/hu/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/hu/pdf_slideshow.po b/data/po/hu/pdf_slideshow.po new file mode 100644 index 00000000..a143d10c --- /dev/null +++ b/data/po/hu/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/hu/photils.po b/data/po/hu/photils.po new file mode 100644 index 00000000..ec94e941 --- /dev/null +++ b/data/po/hu/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/hu/quicktag.po b/data/po/hu/quicktag.po new file mode 100644 index 00000000..c976171e --- /dev/null +++ b/data/po/hu/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/hu/script_manager.po b/data/po/hu/script_manager.po new file mode 100644 index 00000000..0f7f593c --- /dev/null +++ b/data/po/hu/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/hu/select_untagged.po b/data/po/hu/select_untagged.po new file mode 100644 index 00000000..8091a7c8 --- /dev/null +++ b/data/po/hu/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/hu/slideshowMusic.po b/data/po/hu/slideshowMusic.po new file mode 100644 index 00000000..de3048fe --- /dev/null +++ b/data/po/hu/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/hu/transfer_hierarchy.po b/data/po/hu/transfer_hierarchy.po new file mode 100644 index 00000000..fe043a04 --- /dev/null +++ b/data/po/hu/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/hu/video_ffmpeg.po b/data/po/hu/video_ffmpeg.po new file mode 100644 index 00000000..03db941f --- /dev/null +++ b/data/po/hu/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/it/AutoGrouper.po b/data/po/it/AutoGrouper.po new file mode 100644 index 00000000..b0d0705b --- /dev/null +++ b/data/po/it/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/it/CollectHelper.po b/data/po/it/CollectHelper.po new file mode 100644 index 00000000..0456f7a2 --- /dev/null +++ b/data/po/it/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/it/HDRMerge.po b/data/po/it/HDRMerge.po new file mode 100644 index 00000000..4ed42d16 --- /dev/null +++ b/data/po/it/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/it/OpenInExplorer.po b/data/po/it/OpenInExplorer.po new file mode 100644 index 00000000..f0fe325b --- /dev/null +++ b/data/po/it/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/it/RL_out_sharp.po b/data/po/it/RL_out_sharp.po new file mode 100644 index 00000000..5473b39c --- /dev/null +++ b/data/po/it/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/it/autostyle.po b/data/po/it/autostyle.po new file mode 100644 index 00000000..590937e5 --- /dev/null +++ b/data/po/it/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/it/clear_GPS.po b/data/po/it/clear_GPS.po new file mode 100644 index 00000000..65049dca --- /dev/null +++ b/data/po/it/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/it/copy_attach_detach_tags.po b/data/po/it/copy_attach_detach_tags.po new file mode 100644 index 00000000..b6a7fbe9 --- /dev/null +++ b/data/po/it/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/it/darkroom_demo.po b/data/po/it/darkroom_demo.po new file mode 100644 index 00000000..73828819 --- /dev/null +++ b/data/po/it/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/it/dtutils.po b/data/po/it/dtutils.po new file mode 100644 index 00000000..679a4059 --- /dev/null +++ b/data/po/it/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/it/enfuse.po b/data/po/it/enfuse.po new file mode 100644 index 00000000..75332f44 --- /dev/null +++ b/data/po/it/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/it/enfuseAdvanced.po b/data/po/it/enfuseAdvanced.po new file mode 100644 index 00000000..9080ba21 --- /dev/null +++ b/data/po/it/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/it/executable_manager.po b/data/po/it/executable_manager.po new file mode 100644 index 00000000..0a408500 --- /dev/null +++ b/data/po/it/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/it/exportLUT.po b/data/po/it/exportLUT.po new file mode 100644 index 00000000..e2b08ab5 --- /dev/null +++ b/data/po/it/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/locale/it_IT/LC_MESSAGES/ext_editor.po b/data/po/it/ext_editor.po similarity index 100% rename from locale/it_IT/LC_MESSAGES/ext_editor.po rename to data/po/it/ext_editor.po diff --git a/data/po/it/face_recognition.po b/data/po/it/face_recognition.po new file mode 100644 index 00000000..ceefb41e --- /dev/null +++ b/data/po/it/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/it/file.po b/data/po/it/file.po new file mode 100644 index 00000000..322100e7 --- /dev/null +++ b/data/po/it/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/it/fujifilm_ratings.po b/data/po/it/fujifilm_ratings.po new file mode 100644 index 00000000..45678c88 --- /dev/null +++ b/data/po/it/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/it/geoJSON_export.po b/data/po/it/geoJSON_export.po new file mode 100644 index 00000000..d136d796 --- /dev/null +++ b/data/po/it/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/it/geoToolbox.po b/data/po/it/geoToolbox.po new file mode 100644 index 00000000..42432be7 --- /dev/null +++ b/data/po/it/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/it/gettextExample.po b/data/po/it/gettextExample.po new file mode 100644 index 00000000..2ce72366 --- /dev/null +++ b/data/po/it/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/it/gimp.po b/data/po/it/gimp.po new file mode 100644 index 00000000..b38b3e48 --- /dev/null +++ b/data/po/it/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/it/gpx_export.po b/data/po/it/gpx_export.po new file mode 100644 index 00000000..759f77d3 --- /dev/null +++ b/data/po/it/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/it/hugin.po b/data/po/it/hugin.po new file mode 100644 index 00000000..eb42bcd1 --- /dev/null +++ b/data/po/it/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/it/image_stack.po b/data/po/it/image_stack.po new file mode 100644 index 00000000..7b8bbc66 --- /dev/null +++ b/data/po/it/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/it/image_time.po b/data/po/it/image_time.po new file mode 100644 index 00000000..63223f5a --- /dev/null +++ b/data/po/it/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/it/kml_export.po b/data/po/it/kml_export.po new file mode 100644 index 00000000..34829d50 --- /dev/null +++ b/data/po/it/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/it/lighttable_demo.po b/data/po/it/lighttable_demo.po new file mode 100644 index 00000000..a2c9ffd5 --- /dev/null +++ b/data/po/it/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/it/moduleExample.po b/data/po/it/moduleExample.po new file mode 100644 index 00000000..cb9cd64f --- /dev/null +++ b/data/po/it/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/it/multi_os.po b/data/po/it/multi_os.po new file mode 100644 index 00000000..c887d9f1 --- /dev/null +++ b/data/po/it/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/it/panels_demo.po b/data/po/it/panels_demo.po new file mode 100644 index 00000000..91f1f804 --- /dev/null +++ b/data/po/it/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/it/passport_guide.po b/data/po/it/passport_guide.po new file mode 100644 index 00000000..996e4910 --- /dev/null +++ b/data/po/it/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/it/pdf_slideshow.po b/data/po/it/pdf_slideshow.po new file mode 100644 index 00000000..a2dd87ff --- /dev/null +++ b/data/po/it/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/it/photils.po b/data/po/it/photils.po new file mode 100644 index 00000000..d1747dce --- /dev/null +++ b/data/po/it/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/it/quicktag.po b/data/po/it/quicktag.po new file mode 100644 index 00000000..ae4bfa39 --- /dev/null +++ b/data/po/it/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/it/script_manager.po b/data/po/it/script_manager.po new file mode 100644 index 00000000..2c4e0a92 --- /dev/null +++ b/data/po/it/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/it/select_untagged.po b/data/po/it/select_untagged.po new file mode 100644 index 00000000..1aab7176 --- /dev/null +++ b/data/po/it/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/it/slideshowMusic.po b/data/po/it/slideshowMusic.po new file mode 100644 index 00000000..9603b450 --- /dev/null +++ b/data/po/it/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/it/transfer_hierarchy.po b/data/po/it/transfer_hierarchy.po new file mode 100644 index 00000000..1f736351 --- /dev/null +++ b/data/po/it/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/it/video_ffmpeg.po b/data/po/it/video_ffmpeg.po new file mode 100644 index 00000000..e1a33c11 --- /dev/null +++ b/data/po/it/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/ja/AutoGrouper.po b/data/po/ja/AutoGrouper.po new file mode 100644 index 00000000..b9263f79 --- /dev/null +++ b/data/po/ja/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/ja/CollectHelper.po b/data/po/ja/CollectHelper.po new file mode 100644 index 00000000..0481ac28 --- /dev/null +++ b/data/po/ja/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/ja/HDRMerge.po b/data/po/ja/HDRMerge.po new file mode 100644 index 00000000..ca24727d --- /dev/null +++ b/data/po/ja/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/ja/OpenInExplorer.po b/data/po/ja/OpenInExplorer.po new file mode 100644 index 00000000..30395e3a --- /dev/null +++ b/data/po/ja/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/ja/RL_out_sharp.po b/data/po/ja/RL_out_sharp.po new file mode 100644 index 00000000..d3f0690a --- /dev/null +++ b/data/po/ja/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/ja/autostyle.po b/data/po/ja/autostyle.po new file mode 100644 index 00000000..2550b9cb --- /dev/null +++ b/data/po/ja/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/ja/clear_GPS.po b/data/po/ja/clear_GPS.po new file mode 100644 index 00000000..18b3493b --- /dev/null +++ b/data/po/ja/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/ja/copy_attach_detach_tags.po b/data/po/ja/copy_attach_detach_tags.po new file mode 100644 index 00000000..2b1c9695 --- /dev/null +++ b/data/po/ja/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/ja/darkroom_demo.po b/data/po/ja/darkroom_demo.po new file mode 100644 index 00000000..6a388d38 --- /dev/null +++ b/data/po/ja/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/ja/dtutils.po b/data/po/ja/dtutils.po new file mode 100644 index 00000000..43d329e5 --- /dev/null +++ b/data/po/ja/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/ja/enfuse.po b/data/po/ja/enfuse.po new file mode 100644 index 00000000..588f0fa2 --- /dev/null +++ b/data/po/ja/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/ja/enfuseAdvanced.po b/data/po/ja/enfuseAdvanced.po new file mode 100644 index 00000000..056a539b --- /dev/null +++ b/data/po/ja/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/ja/executable_manager.po b/data/po/ja/executable_manager.po new file mode 100644 index 00000000..b5e3f63d --- /dev/null +++ b/data/po/ja/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/ja/exportLUT.po b/data/po/ja/exportLUT.po new file mode 100644 index 00000000..6beed49b --- /dev/null +++ b/data/po/ja/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/ja/ext_editor.po b/data/po/ja/ext_editor.po new file mode 100644 index 00000000..98a51c78 --- /dev/null +++ b/data/po/ja/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/ja/face_recognition.po b/data/po/ja/face_recognition.po new file mode 100644 index 00000000..3e96f601 --- /dev/null +++ b/data/po/ja/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/ja/file.po b/data/po/ja/file.po new file mode 100644 index 00000000..5f923c93 --- /dev/null +++ b/data/po/ja/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/ja/fujifilm_ratings.po b/data/po/ja/fujifilm_ratings.po new file mode 100644 index 00000000..dc1fd88f --- /dev/null +++ b/data/po/ja/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/ja/geoJSON_export.po b/data/po/ja/geoJSON_export.po new file mode 100644 index 00000000..5a4de178 --- /dev/null +++ b/data/po/ja/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/ja/geoToolbox.po b/data/po/ja/geoToolbox.po new file mode 100644 index 00000000..b871e836 --- /dev/null +++ b/data/po/ja/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/ja/gettextExample.po b/data/po/ja/gettextExample.po new file mode 100644 index 00000000..886d27b0 --- /dev/null +++ b/data/po/ja/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/ja/gimp.po b/data/po/ja/gimp.po new file mode 100644 index 00000000..6bac5b0a --- /dev/null +++ b/data/po/ja/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/ja/gpx_export.po b/data/po/ja/gpx_export.po new file mode 100644 index 00000000..a721274d --- /dev/null +++ b/data/po/ja/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/ja/hugin.po b/data/po/ja/hugin.po new file mode 100644 index 00000000..fbba1b64 --- /dev/null +++ b/data/po/ja/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/ja/image_stack.po b/data/po/ja/image_stack.po new file mode 100644 index 00000000..b58fcdd3 --- /dev/null +++ b/data/po/ja/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/ja/image_time.po b/data/po/ja/image_time.po new file mode 100644 index 00000000..f0de8080 --- /dev/null +++ b/data/po/ja/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/ja/kml_export.po b/data/po/ja/kml_export.po new file mode 100644 index 00000000..2f6e699c --- /dev/null +++ b/data/po/ja/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/ja/lighttable_demo.po b/data/po/ja/lighttable_demo.po new file mode 100644 index 00000000..d090cecd --- /dev/null +++ b/data/po/ja/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/ja/moduleExample.po b/data/po/ja/moduleExample.po new file mode 100644 index 00000000..bf995f47 --- /dev/null +++ b/data/po/ja/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/ja/multi_os.po b/data/po/ja/multi_os.po new file mode 100644 index 00000000..b14337fd --- /dev/null +++ b/data/po/ja/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/ja/panels_demo.po b/data/po/ja/panels_demo.po new file mode 100644 index 00000000..d2d12a55 --- /dev/null +++ b/data/po/ja/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/ja/passport_guide.po b/data/po/ja/passport_guide.po new file mode 100644 index 00000000..ea53808d --- /dev/null +++ b/data/po/ja/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/ja/pdf_slideshow.po b/data/po/ja/pdf_slideshow.po new file mode 100644 index 00000000..3075f9f9 --- /dev/null +++ b/data/po/ja/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/ja/photils.po b/data/po/ja/photils.po new file mode 100644 index 00000000..c84ce981 --- /dev/null +++ b/data/po/ja/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/ja/quicktag.po b/data/po/ja/quicktag.po new file mode 100644 index 00000000..3a64ea8d --- /dev/null +++ b/data/po/ja/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/ja/script_manager.po b/data/po/ja/script_manager.po new file mode 100644 index 00000000..bd80550c --- /dev/null +++ b/data/po/ja/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/ja/select_untagged.po b/data/po/ja/select_untagged.po new file mode 100644 index 00000000..3951fd54 --- /dev/null +++ b/data/po/ja/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/ja/slideshowMusic.po b/data/po/ja/slideshowMusic.po new file mode 100644 index 00000000..294a80ac --- /dev/null +++ b/data/po/ja/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/ja/transfer_hierarchy.po b/data/po/ja/transfer_hierarchy.po new file mode 100644 index 00000000..345fa4c6 --- /dev/null +++ b/data/po/ja/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/ja/video_ffmpeg.po b/data/po/ja/video_ffmpeg.po new file mode 100644 index 00000000..015f0d76 --- /dev/null +++ b/data/po/ja/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/nb/AutoGrouper.po b/data/po/nb/AutoGrouper.po new file mode 100644 index 00000000..bde52655 --- /dev/null +++ b/data/po/nb/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/nb/CollectHelper.po b/data/po/nb/CollectHelper.po new file mode 100644 index 00000000..51f3b9a9 --- /dev/null +++ b/data/po/nb/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/nb/HDRMerge.po b/data/po/nb/HDRMerge.po new file mode 100644 index 00000000..9512488a --- /dev/null +++ b/data/po/nb/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/nb/OpenInExplorer.po b/data/po/nb/OpenInExplorer.po new file mode 100644 index 00000000..80a833b0 --- /dev/null +++ b/data/po/nb/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/nb/RL_out_sharp.po b/data/po/nb/RL_out_sharp.po new file mode 100644 index 00000000..0feac8a3 --- /dev/null +++ b/data/po/nb/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/nb/autostyle.po b/data/po/nb/autostyle.po new file mode 100644 index 00000000..649371c5 --- /dev/null +++ b/data/po/nb/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/nb/clear_GPS.po b/data/po/nb/clear_GPS.po new file mode 100644 index 00000000..05a22924 --- /dev/null +++ b/data/po/nb/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/nb/copy_attach_detach_tags.po b/data/po/nb/copy_attach_detach_tags.po new file mode 100644 index 00000000..1d31cf4b --- /dev/null +++ b/data/po/nb/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/nb/darkroom_demo.po b/data/po/nb/darkroom_demo.po new file mode 100644 index 00000000..984b86bf --- /dev/null +++ b/data/po/nb/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/nb/dtutils.po b/data/po/nb/dtutils.po new file mode 100644 index 00000000..24092643 --- /dev/null +++ b/data/po/nb/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/nb/enfuse.po b/data/po/nb/enfuse.po new file mode 100644 index 00000000..421614c9 --- /dev/null +++ b/data/po/nb/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/nb/enfuseAdvanced.po b/data/po/nb/enfuseAdvanced.po new file mode 100644 index 00000000..c4aac88b --- /dev/null +++ b/data/po/nb/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/nb/executable_manager.po b/data/po/nb/executable_manager.po new file mode 100644 index 00000000..e5ee1a94 --- /dev/null +++ b/data/po/nb/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/nb/exportLUT.po b/data/po/nb/exportLUT.po new file mode 100644 index 00000000..6587edc6 --- /dev/null +++ b/data/po/nb/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/nb/ext_editor.po b/data/po/nb/ext_editor.po new file mode 100644 index 00000000..0d6639d0 --- /dev/null +++ b/data/po/nb/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/nb/face_recognition.po b/data/po/nb/face_recognition.po new file mode 100644 index 00000000..67f73368 --- /dev/null +++ b/data/po/nb/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/nb/file.po b/data/po/nb/file.po new file mode 100644 index 00000000..c3fcb908 --- /dev/null +++ b/data/po/nb/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/nb/fujifilm_ratings.po b/data/po/nb/fujifilm_ratings.po new file mode 100644 index 00000000..c2d91b27 --- /dev/null +++ b/data/po/nb/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/nb/geoJSON_export.po b/data/po/nb/geoJSON_export.po new file mode 100644 index 00000000..2a5adc95 --- /dev/null +++ b/data/po/nb/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/nb/geoToolbox.po b/data/po/nb/geoToolbox.po new file mode 100644 index 00000000..b2cdcda3 --- /dev/null +++ b/data/po/nb/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/nb/gettextExample.po b/data/po/nb/gettextExample.po new file mode 100644 index 00000000..94169d60 --- /dev/null +++ b/data/po/nb/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/nb/gimp.po b/data/po/nb/gimp.po new file mode 100644 index 00000000..108f24b9 --- /dev/null +++ b/data/po/nb/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/nb/gpx_export.po b/data/po/nb/gpx_export.po new file mode 100644 index 00000000..eaa0b45e --- /dev/null +++ b/data/po/nb/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/nb/hugin.po b/data/po/nb/hugin.po new file mode 100644 index 00000000..03b6565f --- /dev/null +++ b/data/po/nb/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/nb/image_stack.po b/data/po/nb/image_stack.po new file mode 100644 index 00000000..007ce670 --- /dev/null +++ b/data/po/nb/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/nb/image_time.po b/data/po/nb/image_time.po new file mode 100644 index 00000000..7b04fd5d --- /dev/null +++ b/data/po/nb/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/nb/kml_export.po b/data/po/nb/kml_export.po new file mode 100644 index 00000000..868487f2 --- /dev/null +++ b/data/po/nb/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/nb/lighttable_demo.po b/data/po/nb/lighttable_demo.po new file mode 100644 index 00000000..7318e514 --- /dev/null +++ b/data/po/nb/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/nb/moduleExample.po b/data/po/nb/moduleExample.po new file mode 100644 index 00000000..aed781f0 --- /dev/null +++ b/data/po/nb/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/nb/multi_os.po b/data/po/nb/multi_os.po new file mode 100644 index 00000000..6140dab9 --- /dev/null +++ b/data/po/nb/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/nb/panels_demo.po b/data/po/nb/panels_demo.po new file mode 100644 index 00000000..805da015 --- /dev/null +++ b/data/po/nb/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/nb/passport_guide.po b/data/po/nb/passport_guide.po new file mode 100644 index 00000000..ea784e5e --- /dev/null +++ b/data/po/nb/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/nb/pdf_slideshow.po b/data/po/nb/pdf_slideshow.po new file mode 100644 index 00000000..81256ea4 --- /dev/null +++ b/data/po/nb/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/nb/photils.po b/data/po/nb/photils.po new file mode 100644 index 00000000..39c756d6 --- /dev/null +++ b/data/po/nb/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/nb/quicktag.po b/data/po/nb/quicktag.po new file mode 100644 index 00000000..315dc6f7 --- /dev/null +++ b/data/po/nb/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/nb/script_manager.po b/data/po/nb/script_manager.po new file mode 100644 index 00000000..f64f0a05 --- /dev/null +++ b/data/po/nb/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/nb/select_untagged.po b/data/po/nb/select_untagged.po new file mode 100644 index 00000000..e0759820 --- /dev/null +++ b/data/po/nb/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/nb/slideshowMusic.po b/data/po/nb/slideshowMusic.po new file mode 100644 index 00000000..9d08b3e8 --- /dev/null +++ b/data/po/nb/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/nb/transfer_hierarchy.po b/data/po/nb/transfer_hierarchy.po new file mode 100644 index 00000000..2a323b56 --- /dev/null +++ b/data/po/nb/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/nb/video_ffmpeg.po b/data/po/nb/video_ffmpeg.po new file mode 100644 index 00000000..5d24ace4 --- /dev/null +++ b/data/po/nb/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/nl/AutoGrouper.po b/data/po/nl/AutoGrouper.po new file mode 100644 index 00000000..556164c3 --- /dev/null +++ b/data/po/nl/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/nl/CollectHelper.po b/data/po/nl/CollectHelper.po new file mode 100644 index 00000000..2df6f2a1 --- /dev/null +++ b/data/po/nl/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/nl/HDRMerge.po b/data/po/nl/HDRMerge.po new file mode 100644 index 00000000..29ef1845 --- /dev/null +++ b/data/po/nl/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/nl/OpenInExplorer.po b/data/po/nl/OpenInExplorer.po new file mode 100644 index 00000000..11fe578e --- /dev/null +++ b/data/po/nl/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/nl/RL_out_sharp.po b/data/po/nl/RL_out_sharp.po new file mode 100644 index 00000000..cedd6a59 --- /dev/null +++ b/data/po/nl/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/nl/autostyle.po b/data/po/nl/autostyle.po new file mode 100644 index 00000000..bf2a1123 --- /dev/null +++ b/data/po/nl/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/nl/clear_GPS.po b/data/po/nl/clear_GPS.po new file mode 100644 index 00000000..b4a3c22b --- /dev/null +++ b/data/po/nl/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/nl/copy_attach_detach_tags.po b/data/po/nl/copy_attach_detach_tags.po new file mode 100644 index 00000000..b4d33896 --- /dev/null +++ b/data/po/nl/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/nl/darkroom_demo.po b/data/po/nl/darkroom_demo.po new file mode 100644 index 00000000..f8a00dcc --- /dev/null +++ b/data/po/nl/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/nl/dtutils.po b/data/po/nl/dtutils.po new file mode 100644 index 00000000..b1d8078f --- /dev/null +++ b/data/po/nl/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/nl/enfuse.po b/data/po/nl/enfuse.po new file mode 100644 index 00000000..13e153d9 --- /dev/null +++ b/data/po/nl/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/nl/enfuseAdvanced.po b/data/po/nl/enfuseAdvanced.po new file mode 100644 index 00000000..e1e841ce --- /dev/null +++ b/data/po/nl/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/nl/executable_manager.po b/data/po/nl/executable_manager.po new file mode 100644 index 00000000..1bbeb246 --- /dev/null +++ b/data/po/nl/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/nl/exportLUT.po b/data/po/nl/exportLUT.po new file mode 100644 index 00000000..a1ff4dad --- /dev/null +++ b/data/po/nl/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/nl/ext_editor.po b/data/po/nl/ext_editor.po new file mode 100644 index 00000000..307cc873 --- /dev/null +++ b/data/po/nl/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/nl/face_recognition.po b/data/po/nl/face_recognition.po new file mode 100644 index 00000000..0ec293a1 --- /dev/null +++ b/data/po/nl/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/nl/file.po b/data/po/nl/file.po new file mode 100644 index 00000000..3268b13e --- /dev/null +++ b/data/po/nl/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/nl/fujifilm_ratings.po b/data/po/nl/fujifilm_ratings.po new file mode 100644 index 00000000..a27a53ab --- /dev/null +++ b/data/po/nl/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/nl/geoJSON_export.po b/data/po/nl/geoJSON_export.po new file mode 100644 index 00000000..300005a5 --- /dev/null +++ b/data/po/nl/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/nl/geoToolbox.po b/data/po/nl/geoToolbox.po new file mode 100644 index 00000000..6a0a69eb --- /dev/null +++ b/data/po/nl/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/nl/gettextExample.po b/data/po/nl/gettextExample.po new file mode 100644 index 00000000..e6143712 --- /dev/null +++ b/data/po/nl/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/nl/gimp.po b/data/po/nl/gimp.po new file mode 100644 index 00000000..0ce1d401 --- /dev/null +++ b/data/po/nl/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/nl/gpx_export.po b/data/po/nl/gpx_export.po new file mode 100644 index 00000000..86a1dbc3 --- /dev/null +++ b/data/po/nl/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/nl/hugin.po b/data/po/nl/hugin.po new file mode 100644 index 00000000..e0ae77f0 --- /dev/null +++ b/data/po/nl/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/nl/image_stack.po b/data/po/nl/image_stack.po new file mode 100644 index 00000000..44fba2cf --- /dev/null +++ b/data/po/nl/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/nl/image_time.po b/data/po/nl/image_time.po new file mode 100644 index 00000000..7f277823 --- /dev/null +++ b/data/po/nl/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/nl/kml_export.po b/data/po/nl/kml_export.po new file mode 100644 index 00000000..47c91016 --- /dev/null +++ b/data/po/nl/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/nl/lighttable_demo.po b/data/po/nl/lighttable_demo.po new file mode 100644 index 00000000..8f92bcf1 --- /dev/null +++ b/data/po/nl/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/nl/moduleExample.po b/data/po/nl/moduleExample.po new file mode 100644 index 00000000..20886429 --- /dev/null +++ b/data/po/nl/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/nl/multi_os.po b/data/po/nl/multi_os.po new file mode 100644 index 00000000..227c1bc3 --- /dev/null +++ b/data/po/nl/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/nl/panels_demo.po b/data/po/nl/panels_demo.po new file mode 100644 index 00000000..4e2bf2be --- /dev/null +++ b/data/po/nl/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/nl/passport_guide.po b/data/po/nl/passport_guide.po new file mode 100644 index 00000000..07ce2d2a --- /dev/null +++ b/data/po/nl/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/nl/pdf_slideshow.po b/data/po/nl/pdf_slideshow.po new file mode 100644 index 00000000..b6a0ed2d --- /dev/null +++ b/data/po/nl/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/nl/photils.po b/data/po/nl/photils.po new file mode 100644 index 00000000..cd93ce54 --- /dev/null +++ b/data/po/nl/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/nl/quicktag.po b/data/po/nl/quicktag.po new file mode 100644 index 00000000..55e81df7 --- /dev/null +++ b/data/po/nl/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/nl/script_manager.po b/data/po/nl/script_manager.po new file mode 100644 index 00000000..963e893c --- /dev/null +++ b/data/po/nl/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/nl/select_untagged.po b/data/po/nl/select_untagged.po new file mode 100644 index 00000000..2a825a95 --- /dev/null +++ b/data/po/nl/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/nl/slideshowMusic.po b/data/po/nl/slideshowMusic.po new file mode 100644 index 00000000..2e267d53 --- /dev/null +++ b/data/po/nl/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/nl/transfer_hierarchy.po b/data/po/nl/transfer_hierarchy.po new file mode 100644 index 00000000..ac1b4ee7 --- /dev/null +++ b/data/po/nl/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/nl/video_ffmpeg.po b/data/po/nl/video_ffmpeg.po new file mode 100644 index 00000000..ec45d9e9 --- /dev/null +++ b/data/po/nl/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/pl/AutoGrouper.po b/data/po/pl/AutoGrouper.po new file mode 100644 index 00000000..d74184b4 --- /dev/null +++ b/data/po/pl/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/pl/CollectHelper.po b/data/po/pl/CollectHelper.po new file mode 100644 index 00000000..faaea01c --- /dev/null +++ b/data/po/pl/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/pl/HDRMerge.po b/data/po/pl/HDRMerge.po new file mode 100644 index 00000000..acb2ece1 --- /dev/null +++ b/data/po/pl/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/pl/OpenInExplorer.po b/data/po/pl/OpenInExplorer.po new file mode 100644 index 00000000..20b363ad --- /dev/null +++ b/data/po/pl/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/pl/RL_out_sharp.po b/data/po/pl/RL_out_sharp.po new file mode 100644 index 00000000..4b26fae9 --- /dev/null +++ b/data/po/pl/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/pl/autostyle.po b/data/po/pl/autostyle.po new file mode 100644 index 00000000..3b582242 --- /dev/null +++ b/data/po/pl/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/pl/clear_GPS.po b/data/po/pl/clear_GPS.po new file mode 100644 index 00000000..50b87d8c --- /dev/null +++ b/data/po/pl/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/pl/copy_attach_detach_tags.po b/data/po/pl/copy_attach_detach_tags.po new file mode 100644 index 00000000..b4688a05 --- /dev/null +++ b/data/po/pl/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/pl/darkroom_demo.po b/data/po/pl/darkroom_demo.po new file mode 100644 index 00000000..de6e817a --- /dev/null +++ b/data/po/pl/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/pl/dtutils.po b/data/po/pl/dtutils.po new file mode 100644 index 00000000..4aabdd9d --- /dev/null +++ b/data/po/pl/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/pl/enfuse.po b/data/po/pl/enfuse.po new file mode 100644 index 00000000..008f68a5 --- /dev/null +++ b/data/po/pl/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/pl/enfuseAdvanced.po b/data/po/pl/enfuseAdvanced.po new file mode 100644 index 00000000..63f39e9e --- /dev/null +++ b/data/po/pl/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/pl/executable_manager.po b/data/po/pl/executable_manager.po new file mode 100644 index 00000000..869fac40 --- /dev/null +++ b/data/po/pl/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/pl/exportLUT.po b/data/po/pl/exportLUT.po new file mode 100644 index 00000000..521261d4 --- /dev/null +++ b/data/po/pl/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/pl/ext_editor.po b/data/po/pl/ext_editor.po new file mode 100644 index 00000000..c354a7d0 --- /dev/null +++ b/data/po/pl/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/pl/face_recognition.po b/data/po/pl/face_recognition.po new file mode 100644 index 00000000..ac556697 --- /dev/null +++ b/data/po/pl/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/pl/file.po b/data/po/pl/file.po new file mode 100644 index 00000000..cbad2a4b --- /dev/null +++ b/data/po/pl/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/pl/fujifilm_ratings.po b/data/po/pl/fujifilm_ratings.po new file mode 100644 index 00000000..9e0ed6d6 --- /dev/null +++ b/data/po/pl/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/pl/geoJSON_export.po b/data/po/pl/geoJSON_export.po new file mode 100644 index 00000000..0c262461 --- /dev/null +++ b/data/po/pl/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/pl/geoToolbox.po b/data/po/pl/geoToolbox.po new file mode 100644 index 00000000..d7e50e9e --- /dev/null +++ b/data/po/pl/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/pl/gettextExample.po b/data/po/pl/gettextExample.po new file mode 100644 index 00000000..35a502af --- /dev/null +++ b/data/po/pl/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/pl/gimp.po b/data/po/pl/gimp.po new file mode 100644 index 00000000..18eac152 --- /dev/null +++ b/data/po/pl/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/pl/gpx_export.po b/data/po/pl/gpx_export.po new file mode 100644 index 00000000..50ac679a --- /dev/null +++ b/data/po/pl/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/pl/hugin.po b/data/po/pl/hugin.po new file mode 100644 index 00000000..48f35844 --- /dev/null +++ b/data/po/pl/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/pl/image_stack.po b/data/po/pl/image_stack.po new file mode 100644 index 00000000..152402f0 --- /dev/null +++ b/data/po/pl/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/pl/image_time.po b/data/po/pl/image_time.po new file mode 100644 index 00000000..bc4942f1 --- /dev/null +++ b/data/po/pl/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/pl/kml_export.po b/data/po/pl/kml_export.po new file mode 100644 index 00000000..f83687d1 --- /dev/null +++ b/data/po/pl/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/pl/lighttable_demo.po b/data/po/pl/lighttable_demo.po new file mode 100644 index 00000000..13a0597b --- /dev/null +++ b/data/po/pl/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/pl/moduleExample.po b/data/po/pl/moduleExample.po new file mode 100644 index 00000000..a85b5b34 --- /dev/null +++ b/data/po/pl/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/pl/multi_os.po b/data/po/pl/multi_os.po new file mode 100644 index 00000000..7e574758 --- /dev/null +++ b/data/po/pl/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/pl/panels_demo.po b/data/po/pl/panels_demo.po new file mode 100644 index 00000000..66236d5a --- /dev/null +++ b/data/po/pl/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/pl/passport_guide.po b/data/po/pl/passport_guide.po new file mode 100644 index 00000000..b3c714c5 --- /dev/null +++ b/data/po/pl/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/pl/pdf_slideshow.po b/data/po/pl/pdf_slideshow.po new file mode 100644 index 00000000..9e17d808 --- /dev/null +++ b/data/po/pl/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/pl/photils.po b/data/po/pl/photils.po new file mode 100644 index 00000000..2ebf2c74 --- /dev/null +++ b/data/po/pl/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/pl/quicktag.po b/data/po/pl/quicktag.po new file mode 100644 index 00000000..356d39e6 --- /dev/null +++ b/data/po/pl/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/pl/script_manager.po b/data/po/pl/script_manager.po new file mode 100644 index 00000000..596d55e0 --- /dev/null +++ b/data/po/pl/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/pl/select_untagged.po b/data/po/pl/select_untagged.po new file mode 100644 index 00000000..93dc0489 --- /dev/null +++ b/data/po/pl/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/pl/slideshowMusic.po b/data/po/pl/slideshowMusic.po new file mode 100644 index 00000000..90e329a0 --- /dev/null +++ b/data/po/pl/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/pl/transfer_hierarchy.po b/data/po/pl/transfer_hierarchy.po new file mode 100644 index 00000000..8893db5e --- /dev/null +++ b/data/po/pl/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/pl/video_ffmpeg.po b/data/po/pl/video_ffmpeg.po new file mode 100644 index 00000000..9fb63652 --- /dev/null +++ b/data/po/pl/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/pt_BR/AutoGrouper.po b/data/po/pt_BR/AutoGrouper.po new file mode 100644 index 00000000..f8ce7714 --- /dev/null +++ b/data/po/pt_BR/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/pt_BR/CollectHelper.po b/data/po/pt_BR/CollectHelper.po new file mode 100644 index 00000000..86d5e7eb --- /dev/null +++ b/data/po/pt_BR/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/pt_BR/HDRMerge.po b/data/po/pt_BR/HDRMerge.po new file mode 100644 index 00000000..f17c40c1 --- /dev/null +++ b/data/po/pt_BR/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/pt_BR/OpenInExplorer.po b/data/po/pt_BR/OpenInExplorer.po new file mode 100644 index 00000000..c9a96a43 --- /dev/null +++ b/data/po/pt_BR/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/pt_BR/RL_out_sharp.po b/data/po/pt_BR/RL_out_sharp.po new file mode 100644 index 00000000..67ce7cfd --- /dev/null +++ b/data/po/pt_BR/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/pt_BR/autostyle.po b/data/po/pt_BR/autostyle.po new file mode 100644 index 00000000..9ce537b2 --- /dev/null +++ b/data/po/pt_BR/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/pt_BR/clear_GPS.po b/data/po/pt_BR/clear_GPS.po new file mode 100644 index 00000000..26218ea7 --- /dev/null +++ b/data/po/pt_BR/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/pt_BR/copy_attach_detach_tags.po b/data/po/pt_BR/copy_attach_detach_tags.po new file mode 100644 index 00000000..ae0afc46 --- /dev/null +++ b/data/po/pt_BR/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/pt_BR/darkroom_demo.po b/data/po/pt_BR/darkroom_demo.po new file mode 100644 index 00000000..3a78e9de --- /dev/null +++ b/data/po/pt_BR/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/pt_BR/dtutils.po b/data/po/pt_BR/dtutils.po new file mode 100644 index 00000000..34f8342c --- /dev/null +++ b/data/po/pt_BR/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/pt_BR/enfuse.po b/data/po/pt_BR/enfuse.po new file mode 100644 index 00000000..b289efaf --- /dev/null +++ b/data/po/pt_BR/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/pt_BR/enfuseAdvanced.po b/data/po/pt_BR/enfuseAdvanced.po new file mode 100644 index 00000000..47e50cff --- /dev/null +++ b/data/po/pt_BR/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/pt_BR/executable_manager.po b/data/po/pt_BR/executable_manager.po new file mode 100644 index 00000000..d8029bd4 --- /dev/null +++ b/data/po/pt_BR/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/pt_BR/exportLUT.po b/data/po/pt_BR/exportLUT.po new file mode 100644 index 00000000..f09d08dc --- /dev/null +++ b/data/po/pt_BR/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/pt_BR/ext_editor.po b/data/po/pt_BR/ext_editor.po new file mode 100644 index 00000000..93ee5cb2 --- /dev/null +++ b/data/po/pt_BR/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/pt_BR/face_recognition.po b/data/po/pt_BR/face_recognition.po new file mode 100644 index 00000000..63c2685b --- /dev/null +++ b/data/po/pt_BR/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/pt_BR/file.po b/data/po/pt_BR/file.po new file mode 100644 index 00000000..c6883d6c --- /dev/null +++ b/data/po/pt_BR/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/pt_BR/fujifilm_ratings.po b/data/po/pt_BR/fujifilm_ratings.po new file mode 100644 index 00000000..8c8e48ca --- /dev/null +++ b/data/po/pt_BR/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/pt_BR/geoJSON_export.po b/data/po/pt_BR/geoJSON_export.po new file mode 100644 index 00000000..cb2cdb9d --- /dev/null +++ b/data/po/pt_BR/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/pt_BR/geoToolbox.po b/data/po/pt_BR/geoToolbox.po new file mode 100644 index 00000000..1b82c9f0 --- /dev/null +++ b/data/po/pt_BR/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/pt_BR/gettextExample.po b/data/po/pt_BR/gettextExample.po new file mode 100644 index 00000000..6e73e093 --- /dev/null +++ b/data/po/pt_BR/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/pt_BR/gimp.po b/data/po/pt_BR/gimp.po new file mode 100644 index 00000000..378a0f8f --- /dev/null +++ b/data/po/pt_BR/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/pt_BR/gpx_export.po b/data/po/pt_BR/gpx_export.po new file mode 100644 index 00000000..18ba506d --- /dev/null +++ b/data/po/pt_BR/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/pt_BR/hugin.po b/data/po/pt_BR/hugin.po new file mode 100644 index 00000000..9eea6db0 --- /dev/null +++ b/data/po/pt_BR/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/pt_BR/image_stack.po b/data/po/pt_BR/image_stack.po new file mode 100644 index 00000000..57787e9f --- /dev/null +++ b/data/po/pt_BR/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/pt_BR/image_time.po b/data/po/pt_BR/image_time.po new file mode 100644 index 00000000..48f9ff7d --- /dev/null +++ b/data/po/pt_BR/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/pt_BR/kml_export.po b/data/po/pt_BR/kml_export.po new file mode 100644 index 00000000..9a3c0ca2 --- /dev/null +++ b/data/po/pt_BR/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/pt_BR/lighttable_demo.po b/data/po/pt_BR/lighttable_demo.po new file mode 100644 index 00000000..ee5ab652 --- /dev/null +++ b/data/po/pt_BR/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/pt_BR/moduleExample.po b/data/po/pt_BR/moduleExample.po new file mode 100644 index 00000000..643d0d31 --- /dev/null +++ b/data/po/pt_BR/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/pt_BR/multi_os.po b/data/po/pt_BR/multi_os.po new file mode 100644 index 00000000..c0352d59 --- /dev/null +++ b/data/po/pt_BR/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/pt_BR/panels_demo.po b/data/po/pt_BR/panels_demo.po new file mode 100644 index 00000000..be59b6bf --- /dev/null +++ b/data/po/pt_BR/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/pt_BR/passport_guide.po b/data/po/pt_BR/passport_guide.po new file mode 100644 index 00000000..27ba62c8 --- /dev/null +++ b/data/po/pt_BR/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/pt_BR/pdf_slideshow.po b/data/po/pt_BR/pdf_slideshow.po new file mode 100644 index 00000000..328c49cc --- /dev/null +++ b/data/po/pt_BR/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/pt_BR/photils.po b/data/po/pt_BR/photils.po new file mode 100644 index 00000000..e796882a --- /dev/null +++ b/data/po/pt_BR/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/pt_BR/quicktag.po b/data/po/pt_BR/quicktag.po new file mode 100644 index 00000000..c1d357cd --- /dev/null +++ b/data/po/pt_BR/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/pt_BR/script_manager.po b/data/po/pt_BR/script_manager.po new file mode 100644 index 00000000..1791c511 --- /dev/null +++ b/data/po/pt_BR/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/pt_BR/select_untagged.po b/data/po/pt_BR/select_untagged.po new file mode 100644 index 00000000..acdf38e9 --- /dev/null +++ b/data/po/pt_BR/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/pt_BR/slideshowMusic.po b/data/po/pt_BR/slideshowMusic.po new file mode 100644 index 00000000..c43837c7 --- /dev/null +++ b/data/po/pt_BR/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/pt_BR/transfer_hierarchy.po b/data/po/pt_BR/transfer_hierarchy.po new file mode 100644 index 00000000..3a632e0f --- /dev/null +++ b/data/po/pt_BR/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/pt_BR/video_ffmpeg.po b/data/po/pt_BR/video_ffmpeg.po new file mode 100644 index 00000000..a097d5fd --- /dev/null +++ b/data/po/pt_BR/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/pt_PT/AutoGrouper.po b/data/po/pt_PT/AutoGrouper.po new file mode 100644 index 00000000..0df5d949 --- /dev/null +++ b/data/po/pt_PT/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/pt_PT/CollectHelper.po b/data/po/pt_PT/CollectHelper.po new file mode 100644 index 00000000..0e63e4e0 --- /dev/null +++ b/data/po/pt_PT/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/pt_PT/HDRMerge.po b/data/po/pt_PT/HDRMerge.po new file mode 100644 index 00000000..cc2c199e --- /dev/null +++ b/data/po/pt_PT/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/pt_PT/OpenInExplorer.po b/data/po/pt_PT/OpenInExplorer.po new file mode 100644 index 00000000..8c48c49d --- /dev/null +++ b/data/po/pt_PT/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/pt_PT/RL_out_sharp.po b/data/po/pt_PT/RL_out_sharp.po new file mode 100644 index 00000000..48c6e029 --- /dev/null +++ b/data/po/pt_PT/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/pt_PT/autostyle.po b/data/po/pt_PT/autostyle.po new file mode 100644 index 00000000..c20eeae7 --- /dev/null +++ b/data/po/pt_PT/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/pt_PT/clear_GPS.po b/data/po/pt_PT/clear_GPS.po new file mode 100644 index 00000000..f1bcf96b --- /dev/null +++ b/data/po/pt_PT/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/pt_PT/copy_attach_detach_tags.po b/data/po/pt_PT/copy_attach_detach_tags.po new file mode 100644 index 00000000..bcb8b798 --- /dev/null +++ b/data/po/pt_PT/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/pt_PT/darkroom_demo.po b/data/po/pt_PT/darkroom_demo.po new file mode 100644 index 00000000..b582b168 --- /dev/null +++ b/data/po/pt_PT/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/pt_PT/dtutils.po b/data/po/pt_PT/dtutils.po new file mode 100644 index 00000000..8451d3f8 --- /dev/null +++ b/data/po/pt_PT/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/pt_PT/enfuse.po b/data/po/pt_PT/enfuse.po new file mode 100644 index 00000000..78520430 --- /dev/null +++ b/data/po/pt_PT/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/pt_PT/enfuseAdvanced.po b/data/po/pt_PT/enfuseAdvanced.po new file mode 100644 index 00000000..0c105ee8 --- /dev/null +++ b/data/po/pt_PT/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/pt_PT/executable_manager.po b/data/po/pt_PT/executable_manager.po new file mode 100644 index 00000000..21dea0e8 --- /dev/null +++ b/data/po/pt_PT/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/pt_PT/exportLUT.po b/data/po/pt_PT/exportLUT.po new file mode 100644 index 00000000..c1475ac6 --- /dev/null +++ b/data/po/pt_PT/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/pt_PT/ext_editor.po b/data/po/pt_PT/ext_editor.po new file mode 100644 index 00000000..2cc226ae --- /dev/null +++ b/data/po/pt_PT/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/pt_PT/face_recognition.po b/data/po/pt_PT/face_recognition.po new file mode 100644 index 00000000..810986cc --- /dev/null +++ b/data/po/pt_PT/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/pt_PT/file.po b/data/po/pt_PT/file.po new file mode 100644 index 00000000..a92e8a47 --- /dev/null +++ b/data/po/pt_PT/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/pt_PT/fujifilm_ratings.po b/data/po/pt_PT/fujifilm_ratings.po new file mode 100644 index 00000000..d2c7067a --- /dev/null +++ b/data/po/pt_PT/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/pt_PT/geoJSON_export.po b/data/po/pt_PT/geoJSON_export.po new file mode 100644 index 00000000..7dbc7333 --- /dev/null +++ b/data/po/pt_PT/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/pt_PT/geoToolbox.po b/data/po/pt_PT/geoToolbox.po new file mode 100644 index 00000000..421b4a93 --- /dev/null +++ b/data/po/pt_PT/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/pt_PT/gettextExample.po b/data/po/pt_PT/gettextExample.po new file mode 100644 index 00000000..eab9e874 --- /dev/null +++ b/data/po/pt_PT/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/pt_PT/gimp.po b/data/po/pt_PT/gimp.po new file mode 100644 index 00000000..03d0e9c2 --- /dev/null +++ b/data/po/pt_PT/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/pt_PT/gpx_export.po b/data/po/pt_PT/gpx_export.po new file mode 100644 index 00000000..7cf03714 --- /dev/null +++ b/data/po/pt_PT/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/pt_PT/hugin.po b/data/po/pt_PT/hugin.po new file mode 100644 index 00000000..ded1a185 --- /dev/null +++ b/data/po/pt_PT/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/pt_PT/image_stack.po b/data/po/pt_PT/image_stack.po new file mode 100644 index 00000000..1d469498 --- /dev/null +++ b/data/po/pt_PT/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/pt_PT/image_time.po b/data/po/pt_PT/image_time.po new file mode 100644 index 00000000..052c4adc --- /dev/null +++ b/data/po/pt_PT/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/pt_PT/kml_export.po b/data/po/pt_PT/kml_export.po new file mode 100644 index 00000000..d9ea236c --- /dev/null +++ b/data/po/pt_PT/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/pt_PT/lighttable_demo.po b/data/po/pt_PT/lighttable_demo.po new file mode 100644 index 00000000..97e4a5b6 --- /dev/null +++ b/data/po/pt_PT/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/pt_PT/moduleExample.po b/data/po/pt_PT/moduleExample.po new file mode 100644 index 00000000..c065d58b --- /dev/null +++ b/data/po/pt_PT/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/pt_PT/multi_os.po b/data/po/pt_PT/multi_os.po new file mode 100644 index 00000000..60d118ff --- /dev/null +++ b/data/po/pt_PT/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/pt_PT/panels_demo.po b/data/po/pt_PT/panels_demo.po new file mode 100644 index 00000000..b901a8b3 --- /dev/null +++ b/data/po/pt_PT/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/pt_PT/passport_guide.po b/data/po/pt_PT/passport_guide.po new file mode 100644 index 00000000..f237b2d0 --- /dev/null +++ b/data/po/pt_PT/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/pt_PT/pdf_slideshow.po b/data/po/pt_PT/pdf_slideshow.po new file mode 100644 index 00000000..34f9073d --- /dev/null +++ b/data/po/pt_PT/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/pt_PT/photils.po b/data/po/pt_PT/photils.po new file mode 100644 index 00000000..00b84d38 --- /dev/null +++ b/data/po/pt_PT/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/pt_PT/quicktag.po b/data/po/pt_PT/quicktag.po new file mode 100644 index 00000000..e2957787 --- /dev/null +++ b/data/po/pt_PT/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/pt_PT/script_manager.po b/data/po/pt_PT/script_manager.po new file mode 100644 index 00000000..efdeb740 --- /dev/null +++ b/data/po/pt_PT/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/pt_PT/select_untagged.po b/data/po/pt_PT/select_untagged.po new file mode 100644 index 00000000..14c65d4a --- /dev/null +++ b/data/po/pt_PT/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/pt_PT/slideshowMusic.po b/data/po/pt_PT/slideshowMusic.po new file mode 100644 index 00000000..33078670 --- /dev/null +++ b/data/po/pt_PT/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/pt_PT/transfer_hierarchy.po b/data/po/pt_PT/transfer_hierarchy.po new file mode 100644 index 00000000..51439ab5 --- /dev/null +++ b/data/po/pt_PT/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/pt_PT/video_ffmpeg.po b/data/po/pt_PT/video_ffmpeg.po new file mode 100644 index 00000000..0c91fa57 --- /dev/null +++ b/data/po/pt_PT/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/ro/AutoGrouper.po b/data/po/ro/AutoGrouper.po new file mode 100644 index 00000000..156ae1ce --- /dev/null +++ b/data/po/ro/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/ro/CollectHelper.po b/data/po/ro/CollectHelper.po new file mode 100644 index 00000000..b9ebfb7d --- /dev/null +++ b/data/po/ro/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/ro/HDRMerge.po b/data/po/ro/HDRMerge.po new file mode 100644 index 00000000..be5da1bd --- /dev/null +++ b/data/po/ro/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/ro/OpenInExplorer.po b/data/po/ro/OpenInExplorer.po new file mode 100644 index 00000000..59fbaa20 --- /dev/null +++ b/data/po/ro/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/ro/RL_out_sharp.po b/data/po/ro/RL_out_sharp.po new file mode 100644 index 00000000..4c9ad96a --- /dev/null +++ b/data/po/ro/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/ro/autostyle.po b/data/po/ro/autostyle.po new file mode 100644 index 00000000..c6c130dc --- /dev/null +++ b/data/po/ro/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/ro/clear_GPS.po b/data/po/ro/clear_GPS.po new file mode 100644 index 00000000..bb76e0da --- /dev/null +++ b/data/po/ro/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/ro/copy_attach_detach_tags.po b/data/po/ro/copy_attach_detach_tags.po new file mode 100644 index 00000000..762743ff --- /dev/null +++ b/data/po/ro/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/ro/darkroom_demo.po b/data/po/ro/darkroom_demo.po new file mode 100644 index 00000000..c3ce868d --- /dev/null +++ b/data/po/ro/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/ro/dtutils.po b/data/po/ro/dtutils.po new file mode 100644 index 00000000..0af74b32 --- /dev/null +++ b/data/po/ro/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/ro/enfuse.po b/data/po/ro/enfuse.po new file mode 100644 index 00000000..984efcde --- /dev/null +++ b/data/po/ro/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/ro/enfuseAdvanced.po b/data/po/ro/enfuseAdvanced.po new file mode 100644 index 00000000..6d9db4e5 --- /dev/null +++ b/data/po/ro/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/ro/executable_manager.po b/data/po/ro/executable_manager.po new file mode 100644 index 00000000..6d05f24a --- /dev/null +++ b/data/po/ro/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/ro/exportLUT.po b/data/po/ro/exportLUT.po new file mode 100644 index 00000000..d8c26dc8 --- /dev/null +++ b/data/po/ro/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/ro/ext_editor.po b/data/po/ro/ext_editor.po new file mode 100644 index 00000000..927a04c6 --- /dev/null +++ b/data/po/ro/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/ro/face_recognition.po b/data/po/ro/face_recognition.po new file mode 100644 index 00000000..ed525a80 --- /dev/null +++ b/data/po/ro/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/ro/file.po b/data/po/ro/file.po new file mode 100644 index 00000000..39c487a0 --- /dev/null +++ b/data/po/ro/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/ro/fujifilm_ratings.po b/data/po/ro/fujifilm_ratings.po new file mode 100644 index 00000000..34556751 --- /dev/null +++ b/data/po/ro/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/ro/geoJSON_export.po b/data/po/ro/geoJSON_export.po new file mode 100644 index 00000000..c3b6b2b3 --- /dev/null +++ b/data/po/ro/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/ro/geoToolbox.po b/data/po/ro/geoToolbox.po new file mode 100644 index 00000000..5dbc5020 --- /dev/null +++ b/data/po/ro/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/ro/gettextExample.po b/data/po/ro/gettextExample.po new file mode 100644 index 00000000..a285dffc --- /dev/null +++ b/data/po/ro/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/ro/gimp.po b/data/po/ro/gimp.po new file mode 100644 index 00000000..6d1fe5ec --- /dev/null +++ b/data/po/ro/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/ro/gpx_export.po b/data/po/ro/gpx_export.po new file mode 100644 index 00000000..8a1164d8 --- /dev/null +++ b/data/po/ro/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/ro/hugin.po b/data/po/ro/hugin.po new file mode 100644 index 00000000..cde5d98a --- /dev/null +++ b/data/po/ro/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/ro/image_stack.po b/data/po/ro/image_stack.po new file mode 100644 index 00000000..a26a148c --- /dev/null +++ b/data/po/ro/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/ro/image_time.po b/data/po/ro/image_time.po new file mode 100644 index 00000000..4fa7d1b3 --- /dev/null +++ b/data/po/ro/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/ro/kml_export.po b/data/po/ro/kml_export.po new file mode 100644 index 00000000..3fa079d9 --- /dev/null +++ b/data/po/ro/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/ro/lighttable_demo.po b/data/po/ro/lighttable_demo.po new file mode 100644 index 00000000..8244206a --- /dev/null +++ b/data/po/ro/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/ro/moduleExample.po b/data/po/ro/moduleExample.po new file mode 100644 index 00000000..c83fe1eb --- /dev/null +++ b/data/po/ro/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/ro/multi_os.po b/data/po/ro/multi_os.po new file mode 100644 index 00000000..ddcd30a1 --- /dev/null +++ b/data/po/ro/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/ro/panels_demo.po b/data/po/ro/panels_demo.po new file mode 100644 index 00000000..d0d42d00 --- /dev/null +++ b/data/po/ro/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/ro/passport_guide.po b/data/po/ro/passport_guide.po new file mode 100644 index 00000000..44152158 --- /dev/null +++ b/data/po/ro/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/ro/pdf_slideshow.po b/data/po/ro/pdf_slideshow.po new file mode 100644 index 00000000..f6bd4306 --- /dev/null +++ b/data/po/ro/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/ro/photils.po b/data/po/ro/photils.po new file mode 100644 index 00000000..34f332b9 --- /dev/null +++ b/data/po/ro/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/ro/quicktag.po b/data/po/ro/quicktag.po new file mode 100644 index 00000000..af1b79f6 --- /dev/null +++ b/data/po/ro/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/ro/script_manager.po b/data/po/ro/script_manager.po new file mode 100644 index 00000000..b52b6ee1 --- /dev/null +++ b/data/po/ro/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/ro/select_untagged.po b/data/po/ro/select_untagged.po new file mode 100644 index 00000000..d0f0158d --- /dev/null +++ b/data/po/ro/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/ro/slideshowMusic.po b/data/po/ro/slideshowMusic.po new file mode 100644 index 00000000..235687e9 --- /dev/null +++ b/data/po/ro/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/ro/transfer_hierarchy.po b/data/po/ro/transfer_hierarchy.po new file mode 100644 index 00000000..54c42389 --- /dev/null +++ b/data/po/ro/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/ro/video_ffmpeg.po b/data/po/ro/video_ffmpeg.po new file mode 100644 index 00000000..5a6d5709 --- /dev/null +++ b/data/po/ro/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/ru/AutoGrouper.po b/data/po/ru/AutoGrouper.po new file mode 100644 index 00000000..2980edb6 --- /dev/null +++ b/data/po/ru/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/ru/CollectHelper.po b/data/po/ru/CollectHelper.po new file mode 100644 index 00000000..c5bf5227 --- /dev/null +++ b/data/po/ru/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/ru/HDRMerge.po b/data/po/ru/HDRMerge.po new file mode 100644 index 00000000..2c2579ac --- /dev/null +++ b/data/po/ru/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/ru/OpenInExplorer.po b/data/po/ru/OpenInExplorer.po new file mode 100644 index 00000000..0dc8ebd6 --- /dev/null +++ b/data/po/ru/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/ru/RL_out_sharp.po b/data/po/ru/RL_out_sharp.po new file mode 100644 index 00000000..abb633dd --- /dev/null +++ b/data/po/ru/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/ru/autostyle.po b/data/po/ru/autostyle.po new file mode 100644 index 00000000..64ba7452 --- /dev/null +++ b/data/po/ru/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/ru/clear_GPS.po b/data/po/ru/clear_GPS.po new file mode 100644 index 00000000..61eff50f --- /dev/null +++ b/data/po/ru/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/ru/copy_attach_detach_tags.po b/data/po/ru/copy_attach_detach_tags.po new file mode 100644 index 00000000..ddcaef40 --- /dev/null +++ b/data/po/ru/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/ru/darkroom_demo.po b/data/po/ru/darkroom_demo.po new file mode 100644 index 00000000..e76d97a5 --- /dev/null +++ b/data/po/ru/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/ru/dtutils.po b/data/po/ru/dtutils.po new file mode 100644 index 00000000..a5929f38 --- /dev/null +++ b/data/po/ru/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/ru/enfuse.po b/data/po/ru/enfuse.po new file mode 100644 index 00000000..adee7ffe --- /dev/null +++ b/data/po/ru/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/ru/enfuseAdvanced.po b/data/po/ru/enfuseAdvanced.po new file mode 100644 index 00000000..21f0859c --- /dev/null +++ b/data/po/ru/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/ru/executable_manager.po b/data/po/ru/executable_manager.po new file mode 100644 index 00000000..9fc006e6 --- /dev/null +++ b/data/po/ru/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/ru/exportLUT.po b/data/po/ru/exportLUT.po new file mode 100644 index 00000000..3e3b3418 --- /dev/null +++ b/data/po/ru/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/ru/ext_editor.po b/data/po/ru/ext_editor.po new file mode 100644 index 00000000..f3079a83 --- /dev/null +++ b/data/po/ru/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/ru/face_recognition.po b/data/po/ru/face_recognition.po new file mode 100644 index 00000000..3f84fadc --- /dev/null +++ b/data/po/ru/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/ru/file.po b/data/po/ru/file.po new file mode 100644 index 00000000..0effef36 --- /dev/null +++ b/data/po/ru/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/ru/fujifilm_ratings.po b/data/po/ru/fujifilm_ratings.po new file mode 100644 index 00000000..12c32997 --- /dev/null +++ b/data/po/ru/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/ru/geoJSON_export.po b/data/po/ru/geoJSON_export.po new file mode 100644 index 00000000..3022b660 --- /dev/null +++ b/data/po/ru/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/ru/geoToolbox.po b/data/po/ru/geoToolbox.po new file mode 100644 index 00000000..5a07330f --- /dev/null +++ b/data/po/ru/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/ru/gettextExample.po b/data/po/ru/gettextExample.po new file mode 100644 index 00000000..8bdd6f52 --- /dev/null +++ b/data/po/ru/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/ru/gimp.po b/data/po/ru/gimp.po new file mode 100644 index 00000000..b1cb3b35 --- /dev/null +++ b/data/po/ru/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/ru/gpx_export.po b/data/po/ru/gpx_export.po new file mode 100644 index 00000000..9f62ee02 --- /dev/null +++ b/data/po/ru/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/ru/hugin.po b/data/po/ru/hugin.po new file mode 100644 index 00000000..edeae67a --- /dev/null +++ b/data/po/ru/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/ru/image_stack.po b/data/po/ru/image_stack.po new file mode 100644 index 00000000..f3c01b11 --- /dev/null +++ b/data/po/ru/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/ru/image_time.po b/data/po/ru/image_time.po new file mode 100644 index 00000000..54cb19d7 --- /dev/null +++ b/data/po/ru/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/ru/kml_export.po b/data/po/ru/kml_export.po new file mode 100644 index 00000000..e2797ddc --- /dev/null +++ b/data/po/ru/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/ru/lighttable_demo.po b/data/po/ru/lighttable_demo.po new file mode 100644 index 00000000..e06bcab3 --- /dev/null +++ b/data/po/ru/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/ru/moduleExample.po b/data/po/ru/moduleExample.po new file mode 100644 index 00000000..b6b19be6 --- /dev/null +++ b/data/po/ru/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/ru/multi_os.po b/data/po/ru/multi_os.po new file mode 100644 index 00000000..7d36077d --- /dev/null +++ b/data/po/ru/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/ru/panels_demo.po b/data/po/ru/panels_demo.po new file mode 100644 index 00000000..73f7db70 --- /dev/null +++ b/data/po/ru/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/ru/passport_guide.po b/data/po/ru/passport_guide.po new file mode 100644 index 00000000..bf214f27 --- /dev/null +++ b/data/po/ru/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/ru/pdf_slideshow.po b/data/po/ru/pdf_slideshow.po new file mode 100644 index 00000000..836a0f5a --- /dev/null +++ b/data/po/ru/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/ru/photils.po b/data/po/ru/photils.po new file mode 100644 index 00000000..6f8a13c2 --- /dev/null +++ b/data/po/ru/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/ru/quicktag.po b/data/po/ru/quicktag.po new file mode 100644 index 00000000..1698abe0 --- /dev/null +++ b/data/po/ru/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/ru/script_manager.po b/data/po/ru/script_manager.po new file mode 100644 index 00000000..5ab6debd --- /dev/null +++ b/data/po/ru/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/ru/select_untagged.po b/data/po/ru/select_untagged.po new file mode 100644 index 00000000..dcc3881d --- /dev/null +++ b/data/po/ru/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/ru/slideshowMusic.po b/data/po/ru/slideshowMusic.po new file mode 100644 index 00000000..1975ebb1 --- /dev/null +++ b/data/po/ru/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/ru/transfer_hierarchy.po b/data/po/ru/transfer_hierarchy.po new file mode 100644 index 00000000..000dac99 --- /dev/null +++ b/data/po/ru/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/ru/video_ffmpeg.po b/data/po/ru/video_ffmpeg.po new file mode 100644 index 00000000..c7c51b59 --- /dev/null +++ b/data/po/ru/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/sk/AutoGrouper.po b/data/po/sk/AutoGrouper.po new file mode 100644 index 00000000..da67a380 --- /dev/null +++ b/data/po/sk/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/sk/CollectHelper.po b/data/po/sk/CollectHelper.po new file mode 100644 index 00000000..6b36b406 --- /dev/null +++ b/data/po/sk/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/sk/HDRMerge.po b/data/po/sk/HDRMerge.po new file mode 100644 index 00000000..18e4faa0 --- /dev/null +++ b/data/po/sk/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/sk/OpenInExplorer.po b/data/po/sk/OpenInExplorer.po new file mode 100644 index 00000000..d79bafce --- /dev/null +++ b/data/po/sk/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/sk/RL_out_sharp.po b/data/po/sk/RL_out_sharp.po new file mode 100644 index 00000000..191d3fc9 --- /dev/null +++ b/data/po/sk/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/sk/autostyle.po b/data/po/sk/autostyle.po new file mode 100644 index 00000000..8592dded --- /dev/null +++ b/data/po/sk/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/sk/clear_GPS.po b/data/po/sk/clear_GPS.po new file mode 100644 index 00000000..a1b04dac --- /dev/null +++ b/data/po/sk/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/sk/copy_attach_detach_tags.po b/data/po/sk/copy_attach_detach_tags.po new file mode 100644 index 00000000..f6011c6c --- /dev/null +++ b/data/po/sk/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/sk/darkroom_demo.po b/data/po/sk/darkroom_demo.po new file mode 100644 index 00000000..e37c307f --- /dev/null +++ b/data/po/sk/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/sk/dtutils.po b/data/po/sk/dtutils.po new file mode 100644 index 00000000..1ac3a712 --- /dev/null +++ b/data/po/sk/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/sk/enfuse.po b/data/po/sk/enfuse.po new file mode 100644 index 00000000..0fbfc6e4 --- /dev/null +++ b/data/po/sk/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/sk/enfuseAdvanced.po b/data/po/sk/enfuseAdvanced.po new file mode 100644 index 00000000..4882501c --- /dev/null +++ b/data/po/sk/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/sk/executable_manager.po b/data/po/sk/executable_manager.po new file mode 100644 index 00000000..eabebded --- /dev/null +++ b/data/po/sk/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/sk/exportLUT.po b/data/po/sk/exportLUT.po new file mode 100644 index 00000000..7f40b68f --- /dev/null +++ b/data/po/sk/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/sk/ext_editor.po b/data/po/sk/ext_editor.po new file mode 100644 index 00000000..deb8330a --- /dev/null +++ b/data/po/sk/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/sk/face_recognition.po b/data/po/sk/face_recognition.po new file mode 100644 index 00000000..3a6a4ee9 --- /dev/null +++ b/data/po/sk/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/sk/file.po b/data/po/sk/file.po new file mode 100644 index 00000000..f73e8951 --- /dev/null +++ b/data/po/sk/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/sk/fujifilm_ratings.po b/data/po/sk/fujifilm_ratings.po new file mode 100644 index 00000000..3e4c5eac --- /dev/null +++ b/data/po/sk/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/sk/geoJSON_export.po b/data/po/sk/geoJSON_export.po new file mode 100644 index 00000000..9b3775f8 --- /dev/null +++ b/data/po/sk/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/sk/geoToolbox.po b/data/po/sk/geoToolbox.po new file mode 100644 index 00000000..73e79faf --- /dev/null +++ b/data/po/sk/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/sk/gettextExample.po b/data/po/sk/gettextExample.po new file mode 100644 index 00000000..5805af10 --- /dev/null +++ b/data/po/sk/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/sk/gimp.po b/data/po/sk/gimp.po new file mode 100644 index 00000000..cafbc1b6 --- /dev/null +++ b/data/po/sk/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/sk/gpx_export.po b/data/po/sk/gpx_export.po new file mode 100644 index 00000000..6714a0a0 --- /dev/null +++ b/data/po/sk/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/sk/hugin.po b/data/po/sk/hugin.po new file mode 100644 index 00000000..12ddf9be --- /dev/null +++ b/data/po/sk/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/sk/image_stack.po b/data/po/sk/image_stack.po new file mode 100644 index 00000000..a65cbc0d --- /dev/null +++ b/data/po/sk/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/sk/image_time.po b/data/po/sk/image_time.po new file mode 100644 index 00000000..85c3257f --- /dev/null +++ b/data/po/sk/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/sk/kml_export.po b/data/po/sk/kml_export.po new file mode 100644 index 00000000..a40e5a3f --- /dev/null +++ b/data/po/sk/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/sk/lighttable_demo.po b/data/po/sk/lighttable_demo.po new file mode 100644 index 00000000..06996fa1 --- /dev/null +++ b/data/po/sk/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/sk/moduleExample.po b/data/po/sk/moduleExample.po new file mode 100644 index 00000000..e487c08c --- /dev/null +++ b/data/po/sk/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/sk/multi_os.po b/data/po/sk/multi_os.po new file mode 100644 index 00000000..85125768 --- /dev/null +++ b/data/po/sk/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/sk/panels_demo.po b/data/po/sk/panels_demo.po new file mode 100644 index 00000000..ecbc574b --- /dev/null +++ b/data/po/sk/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/sk/passport_guide.po b/data/po/sk/passport_guide.po new file mode 100644 index 00000000..6fee807f --- /dev/null +++ b/data/po/sk/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/sk/pdf_slideshow.po b/data/po/sk/pdf_slideshow.po new file mode 100644 index 00000000..94913b65 --- /dev/null +++ b/data/po/sk/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/sk/photils.po b/data/po/sk/photils.po new file mode 100644 index 00000000..4979b96c --- /dev/null +++ b/data/po/sk/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/sk/quicktag.po b/data/po/sk/quicktag.po new file mode 100644 index 00000000..cea8a220 --- /dev/null +++ b/data/po/sk/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/sk/script_manager.po b/data/po/sk/script_manager.po new file mode 100644 index 00000000..e241a059 --- /dev/null +++ b/data/po/sk/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/sk/select_untagged.po b/data/po/sk/select_untagged.po new file mode 100644 index 00000000..bd6c6ecf --- /dev/null +++ b/data/po/sk/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/sk/slideshowMusic.po b/data/po/sk/slideshowMusic.po new file mode 100644 index 00000000..1bca31f0 --- /dev/null +++ b/data/po/sk/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/sk/transfer_hierarchy.po b/data/po/sk/transfer_hierarchy.po new file mode 100644 index 00000000..7b31b452 --- /dev/null +++ b/data/po/sk/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/sk/video_ffmpeg.po b/data/po/sk/video_ffmpeg.po new file mode 100644 index 00000000..471469ff --- /dev/null +++ b/data/po/sk/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/sl/AutoGrouper.po b/data/po/sl/AutoGrouper.po new file mode 100644 index 00000000..77696f1c --- /dev/null +++ b/data/po/sl/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/sl/CollectHelper.po b/data/po/sl/CollectHelper.po new file mode 100644 index 00000000..ef7ce75a --- /dev/null +++ b/data/po/sl/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/sl/HDRMerge.po b/data/po/sl/HDRMerge.po new file mode 100644 index 00000000..e9f7f7be --- /dev/null +++ b/data/po/sl/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/sl/OpenInExplorer.po b/data/po/sl/OpenInExplorer.po new file mode 100644 index 00000000..5b616343 --- /dev/null +++ b/data/po/sl/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/sl/RL_out_sharp.po b/data/po/sl/RL_out_sharp.po new file mode 100644 index 00000000..5a625217 --- /dev/null +++ b/data/po/sl/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/sl/autostyle.po b/data/po/sl/autostyle.po new file mode 100644 index 00000000..33ca3a01 --- /dev/null +++ b/data/po/sl/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/sl/clear_GPS.po b/data/po/sl/clear_GPS.po new file mode 100644 index 00000000..69aa2d1e --- /dev/null +++ b/data/po/sl/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/sl/copy_attach_detach_tags.po b/data/po/sl/copy_attach_detach_tags.po new file mode 100644 index 00000000..3d12f718 --- /dev/null +++ b/data/po/sl/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/sl/darkroom_demo.po b/data/po/sl/darkroom_demo.po new file mode 100644 index 00000000..82ff266d --- /dev/null +++ b/data/po/sl/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/sl/dtutils.po b/data/po/sl/dtutils.po new file mode 100644 index 00000000..1810555b --- /dev/null +++ b/data/po/sl/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/sl/enfuse.po b/data/po/sl/enfuse.po new file mode 100644 index 00000000..1a8b42e2 --- /dev/null +++ b/data/po/sl/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/sl/enfuseAdvanced.po b/data/po/sl/enfuseAdvanced.po new file mode 100644 index 00000000..e8bb510e --- /dev/null +++ b/data/po/sl/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/sl/executable_manager.po b/data/po/sl/executable_manager.po new file mode 100644 index 00000000..fe4b7349 --- /dev/null +++ b/data/po/sl/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/sl/exportLUT.po b/data/po/sl/exportLUT.po new file mode 100644 index 00000000..a83b429d --- /dev/null +++ b/data/po/sl/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/sl/ext_editor.po b/data/po/sl/ext_editor.po new file mode 100644 index 00000000..e8251033 --- /dev/null +++ b/data/po/sl/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/sl/face_recognition.po b/data/po/sl/face_recognition.po new file mode 100644 index 00000000..a9b753e3 --- /dev/null +++ b/data/po/sl/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/sl/file.po b/data/po/sl/file.po new file mode 100644 index 00000000..dd211057 --- /dev/null +++ b/data/po/sl/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/sl/fujifilm_ratings.po b/data/po/sl/fujifilm_ratings.po new file mode 100644 index 00000000..2c3c0333 --- /dev/null +++ b/data/po/sl/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/sl/geoJSON_export.po b/data/po/sl/geoJSON_export.po new file mode 100644 index 00000000..14956d24 --- /dev/null +++ b/data/po/sl/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/sl/geoToolbox.po b/data/po/sl/geoToolbox.po new file mode 100644 index 00000000..711bfda7 --- /dev/null +++ b/data/po/sl/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/sl/gettextExample.po b/data/po/sl/gettextExample.po new file mode 100644 index 00000000..bee181f8 --- /dev/null +++ b/data/po/sl/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/sl/gimp.po b/data/po/sl/gimp.po new file mode 100644 index 00000000..1017371e --- /dev/null +++ b/data/po/sl/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/sl/gpx_export.po b/data/po/sl/gpx_export.po new file mode 100644 index 00000000..9b3aa471 --- /dev/null +++ b/data/po/sl/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/sl/hugin.po b/data/po/sl/hugin.po new file mode 100644 index 00000000..628fb8b9 --- /dev/null +++ b/data/po/sl/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/sl/image_stack.po b/data/po/sl/image_stack.po new file mode 100644 index 00000000..8f8d9363 --- /dev/null +++ b/data/po/sl/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/sl/image_time.po b/data/po/sl/image_time.po new file mode 100644 index 00000000..d1ee2a87 --- /dev/null +++ b/data/po/sl/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/sl/kml_export.po b/data/po/sl/kml_export.po new file mode 100644 index 00000000..ded6a9b6 --- /dev/null +++ b/data/po/sl/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/sl/lighttable_demo.po b/data/po/sl/lighttable_demo.po new file mode 100644 index 00000000..3f2d0458 --- /dev/null +++ b/data/po/sl/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/sl/moduleExample.po b/data/po/sl/moduleExample.po new file mode 100644 index 00000000..dc3953af --- /dev/null +++ b/data/po/sl/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/sl/multi_os.po b/data/po/sl/multi_os.po new file mode 100644 index 00000000..57817e8f --- /dev/null +++ b/data/po/sl/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/sl/panels_demo.po b/data/po/sl/panels_demo.po new file mode 100644 index 00000000..bcbf1c85 --- /dev/null +++ b/data/po/sl/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/sl/passport_guide.po b/data/po/sl/passport_guide.po new file mode 100644 index 00000000..105c3153 --- /dev/null +++ b/data/po/sl/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/sl/pdf_slideshow.po b/data/po/sl/pdf_slideshow.po new file mode 100644 index 00000000..109396b6 --- /dev/null +++ b/data/po/sl/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/sl/photils.po b/data/po/sl/photils.po new file mode 100644 index 00000000..4a2343be --- /dev/null +++ b/data/po/sl/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/sl/quicktag.po b/data/po/sl/quicktag.po new file mode 100644 index 00000000..947d792f --- /dev/null +++ b/data/po/sl/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/sl/script_manager.po b/data/po/sl/script_manager.po new file mode 100644 index 00000000..f6b29226 --- /dev/null +++ b/data/po/sl/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/sl/select_untagged.po b/data/po/sl/select_untagged.po new file mode 100644 index 00000000..6814259e --- /dev/null +++ b/data/po/sl/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/sl/slideshowMusic.po b/data/po/sl/slideshowMusic.po new file mode 100644 index 00000000..ae96f0bc --- /dev/null +++ b/data/po/sl/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/sl/transfer_hierarchy.po b/data/po/sl/transfer_hierarchy.po new file mode 100644 index 00000000..3bd49db3 --- /dev/null +++ b/data/po/sl/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/sl/video_ffmpeg.po b/data/po/sl/video_ffmpeg.po new file mode 100644 index 00000000..81b352f2 --- /dev/null +++ b/data/po/sl/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/sq/AutoGrouper.po b/data/po/sq/AutoGrouper.po new file mode 100644 index 00000000..720e5bc2 --- /dev/null +++ b/data/po/sq/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/sq/CollectHelper.po b/data/po/sq/CollectHelper.po new file mode 100644 index 00000000..f0c92104 --- /dev/null +++ b/data/po/sq/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/sq/HDRMerge.po b/data/po/sq/HDRMerge.po new file mode 100644 index 00000000..48d9a272 --- /dev/null +++ b/data/po/sq/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/sq/OpenInExplorer.po b/data/po/sq/OpenInExplorer.po new file mode 100644 index 00000000..fa8b94a2 --- /dev/null +++ b/data/po/sq/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/sq/RL_out_sharp.po b/data/po/sq/RL_out_sharp.po new file mode 100644 index 00000000..a4731639 --- /dev/null +++ b/data/po/sq/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/sq/autostyle.po b/data/po/sq/autostyle.po new file mode 100644 index 00000000..ef98d9a1 --- /dev/null +++ b/data/po/sq/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/sq/clear_GPS.po b/data/po/sq/clear_GPS.po new file mode 100644 index 00000000..af511435 --- /dev/null +++ b/data/po/sq/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/sq/copy_attach_detach_tags.po b/data/po/sq/copy_attach_detach_tags.po new file mode 100644 index 00000000..d35f533f --- /dev/null +++ b/data/po/sq/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/sq/darkroom_demo.po b/data/po/sq/darkroom_demo.po new file mode 100644 index 00000000..40e6f475 --- /dev/null +++ b/data/po/sq/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/sq/dtutils.po b/data/po/sq/dtutils.po new file mode 100644 index 00000000..00913fb3 --- /dev/null +++ b/data/po/sq/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/sq/enfuse.po b/data/po/sq/enfuse.po new file mode 100644 index 00000000..39dba776 --- /dev/null +++ b/data/po/sq/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/sq/enfuseAdvanced.po b/data/po/sq/enfuseAdvanced.po new file mode 100644 index 00000000..e7ac2bbe --- /dev/null +++ b/data/po/sq/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/sq/executable_manager.po b/data/po/sq/executable_manager.po new file mode 100644 index 00000000..377710a2 --- /dev/null +++ b/data/po/sq/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/sq/exportLUT.po b/data/po/sq/exportLUT.po new file mode 100644 index 00000000..626eb70c --- /dev/null +++ b/data/po/sq/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/sq/ext_editor.po b/data/po/sq/ext_editor.po new file mode 100644 index 00000000..03d016be --- /dev/null +++ b/data/po/sq/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/sq/face_recognition.po b/data/po/sq/face_recognition.po new file mode 100644 index 00000000..e4eccc31 --- /dev/null +++ b/data/po/sq/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/sq/file.po b/data/po/sq/file.po new file mode 100644 index 00000000..9e1ac00c --- /dev/null +++ b/data/po/sq/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/sq/fujifilm_ratings.po b/data/po/sq/fujifilm_ratings.po new file mode 100644 index 00000000..c6936794 --- /dev/null +++ b/data/po/sq/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/sq/geoJSON_export.po b/data/po/sq/geoJSON_export.po new file mode 100644 index 00000000..71a2b62c --- /dev/null +++ b/data/po/sq/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/sq/geoToolbox.po b/data/po/sq/geoToolbox.po new file mode 100644 index 00000000..20534210 --- /dev/null +++ b/data/po/sq/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/sq/gettextExample.po b/data/po/sq/gettextExample.po new file mode 100644 index 00000000..3a97388b --- /dev/null +++ b/data/po/sq/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/sq/gimp.po b/data/po/sq/gimp.po new file mode 100644 index 00000000..7fee0c14 --- /dev/null +++ b/data/po/sq/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/sq/gpx_export.po b/data/po/sq/gpx_export.po new file mode 100644 index 00000000..14cdb6b7 --- /dev/null +++ b/data/po/sq/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/sq/hugin.po b/data/po/sq/hugin.po new file mode 100644 index 00000000..0065f9ce --- /dev/null +++ b/data/po/sq/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/sq/image_stack.po b/data/po/sq/image_stack.po new file mode 100644 index 00000000..cfcb411a --- /dev/null +++ b/data/po/sq/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/sq/image_time.po b/data/po/sq/image_time.po new file mode 100644 index 00000000..ef917fed --- /dev/null +++ b/data/po/sq/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/sq/kml_export.po b/data/po/sq/kml_export.po new file mode 100644 index 00000000..ece91778 --- /dev/null +++ b/data/po/sq/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/sq/lighttable_demo.po b/data/po/sq/lighttable_demo.po new file mode 100644 index 00000000..01e4d117 --- /dev/null +++ b/data/po/sq/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/sq/moduleExample.po b/data/po/sq/moduleExample.po new file mode 100644 index 00000000..1a091ddd --- /dev/null +++ b/data/po/sq/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/sq/multi_os.po b/data/po/sq/multi_os.po new file mode 100644 index 00000000..1ace67f0 --- /dev/null +++ b/data/po/sq/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/sq/panels_demo.po b/data/po/sq/panels_demo.po new file mode 100644 index 00000000..0ae866fe --- /dev/null +++ b/data/po/sq/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/sq/passport_guide.po b/data/po/sq/passport_guide.po new file mode 100644 index 00000000..e99c9293 --- /dev/null +++ b/data/po/sq/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/sq/pdf_slideshow.po b/data/po/sq/pdf_slideshow.po new file mode 100644 index 00000000..5df89b5b --- /dev/null +++ b/data/po/sq/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/sq/photils.po b/data/po/sq/photils.po new file mode 100644 index 00000000..67f99a39 --- /dev/null +++ b/data/po/sq/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/sq/quicktag.po b/data/po/sq/quicktag.po new file mode 100644 index 00000000..2689ad47 --- /dev/null +++ b/data/po/sq/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/sq/script_manager.po b/data/po/sq/script_manager.po new file mode 100644 index 00000000..4f5026b5 --- /dev/null +++ b/data/po/sq/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/sq/select_untagged.po b/data/po/sq/select_untagged.po new file mode 100644 index 00000000..7dc090fb --- /dev/null +++ b/data/po/sq/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/sq/slideshowMusic.po b/data/po/sq/slideshowMusic.po new file mode 100644 index 00000000..d44eb4b9 --- /dev/null +++ b/data/po/sq/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/sq/transfer_hierarchy.po b/data/po/sq/transfer_hierarchy.po new file mode 100644 index 00000000..0d2c0d0b --- /dev/null +++ b/data/po/sq/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/sq/video_ffmpeg.po b/data/po/sq/video_ffmpeg.po new file mode 100644 index 00000000..cc1f76a3 --- /dev/null +++ b/data/po/sq/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/sv/AutoGrouper.po b/data/po/sv/AutoGrouper.po new file mode 100644 index 00000000..2191e636 --- /dev/null +++ b/data/po/sv/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/sv/CollectHelper.po b/data/po/sv/CollectHelper.po new file mode 100644 index 00000000..ba4ab150 --- /dev/null +++ b/data/po/sv/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/sv/HDRMerge.po b/data/po/sv/HDRMerge.po new file mode 100644 index 00000000..0d1fd4c8 --- /dev/null +++ b/data/po/sv/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/sv/OpenInExplorer.po b/data/po/sv/OpenInExplorer.po new file mode 100644 index 00000000..8646bf6e --- /dev/null +++ b/data/po/sv/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/sv/RL_out_sharp.po b/data/po/sv/RL_out_sharp.po new file mode 100644 index 00000000..66cb4414 --- /dev/null +++ b/data/po/sv/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/sv/autostyle.po b/data/po/sv/autostyle.po new file mode 100644 index 00000000..e524821f --- /dev/null +++ b/data/po/sv/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/sv/clear_GPS.po b/data/po/sv/clear_GPS.po new file mode 100644 index 00000000..3e87f7a9 --- /dev/null +++ b/data/po/sv/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/sv/copy_attach_detach_tags.po b/data/po/sv/copy_attach_detach_tags.po new file mode 100644 index 00000000..c0cdd0da --- /dev/null +++ b/data/po/sv/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/sv/darkroom_demo.po b/data/po/sv/darkroom_demo.po new file mode 100644 index 00000000..b0caa43e --- /dev/null +++ b/data/po/sv/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/sv/dtutils.po b/data/po/sv/dtutils.po new file mode 100644 index 00000000..9ee97b30 --- /dev/null +++ b/data/po/sv/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/sv/enfuse.po b/data/po/sv/enfuse.po new file mode 100644 index 00000000..6a7552a3 --- /dev/null +++ b/data/po/sv/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/sv/enfuseAdvanced.po b/data/po/sv/enfuseAdvanced.po new file mode 100644 index 00000000..55ddfa74 --- /dev/null +++ b/data/po/sv/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/sv/executable_manager.po b/data/po/sv/executable_manager.po new file mode 100644 index 00000000..17d0165e --- /dev/null +++ b/data/po/sv/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/sv/exportLUT.po b/data/po/sv/exportLUT.po new file mode 100644 index 00000000..704dd0a7 --- /dev/null +++ b/data/po/sv/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/sv/ext_editor.po b/data/po/sv/ext_editor.po new file mode 100644 index 00000000..126bec9f --- /dev/null +++ b/data/po/sv/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/sv/face_recognition.po b/data/po/sv/face_recognition.po new file mode 100644 index 00000000..1ffee7b2 --- /dev/null +++ b/data/po/sv/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/sv/file.po b/data/po/sv/file.po new file mode 100644 index 00000000..44662c1d --- /dev/null +++ b/data/po/sv/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/sv/fujifilm_ratings.po b/data/po/sv/fujifilm_ratings.po new file mode 100644 index 00000000..2be02f15 --- /dev/null +++ b/data/po/sv/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/sv/geoJSON_export.po b/data/po/sv/geoJSON_export.po new file mode 100644 index 00000000..e8725003 --- /dev/null +++ b/data/po/sv/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/sv/geoToolbox.po b/data/po/sv/geoToolbox.po new file mode 100644 index 00000000..ff378cc7 --- /dev/null +++ b/data/po/sv/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/sv/gettextExample.po b/data/po/sv/gettextExample.po new file mode 100644 index 00000000..4dab0c3f --- /dev/null +++ b/data/po/sv/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/sv/gimp.po b/data/po/sv/gimp.po new file mode 100644 index 00000000..a58a70c6 --- /dev/null +++ b/data/po/sv/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/sv/gpx_export.po b/data/po/sv/gpx_export.po new file mode 100644 index 00000000..2c33aa57 --- /dev/null +++ b/data/po/sv/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/sv/hugin.po b/data/po/sv/hugin.po new file mode 100644 index 00000000..b2259246 --- /dev/null +++ b/data/po/sv/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/sv/image_stack.po b/data/po/sv/image_stack.po new file mode 100644 index 00000000..b39492b1 --- /dev/null +++ b/data/po/sv/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/sv/image_time.po b/data/po/sv/image_time.po new file mode 100644 index 00000000..dec385ca --- /dev/null +++ b/data/po/sv/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/sv/kml_export.po b/data/po/sv/kml_export.po new file mode 100644 index 00000000..2933165a --- /dev/null +++ b/data/po/sv/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/sv/lighttable_demo.po b/data/po/sv/lighttable_demo.po new file mode 100644 index 00000000..fd0bcc6c --- /dev/null +++ b/data/po/sv/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/sv/moduleExample.po b/data/po/sv/moduleExample.po new file mode 100644 index 00000000..c019fb3a --- /dev/null +++ b/data/po/sv/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/sv/multi_os.po b/data/po/sv/multi_os.po new file mode 100644 index 00000000..88edb3bc --- /dev/null +++ b/data/po/sv/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/sv/panels_demo.po b/data/po/sv/panels_demo.po new file mode 100644 index 00000000..918c9495 --- /dev/null +++ b/data/po/sv/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/sv/passport_guide.po b/data/po/sv/passport_guide.po new file mode 100644 index 00000000..1297d21d --- /dev/null +++ b/data/po/sv/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/sv/pdf_slideshow.po b/data/po/sv/pdf_slideshow.po new file mode 100644 index 00000000..a3bebab0 --- /dev/null +++ b/data/po/sv/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/sv/photils.po b/data/po/sv/photils.po new file mode 100644 index 00000000..6635bcd4 --- /dev/null +++ b/data/po/sv/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/sv/quicktag.po b/data/po/sv/quicktag.po new file mode 100644 index 00000000..79e11707 --- /dev/null +++ b/data/po/sv/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/sv/script_manager.po b/data/po/sv/script_manager.po new file mode 100644 index 00000000..0c130726 --- /dev/null +++ b/data/po/sv/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/sv/select_untagged.po b/data/po/sv/select_untagged.po new file mode 100644 index 00000000..a3408432 --- /dev/null +++ b/data/po/sv/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/sv/slideshowMusic.po b/data/po/sv/slideshowMusic.po new file mode 100644 index 00000000..52f130ff --- /dev/null +++ b/data/po/sv/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/sv/transfer_hierarchy.po b/data/po/sv/transfer_hierarchy.po new file mode 100644 index 00000000..c8af9b93 --- /dev/null +++ b/data/po/sv/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/sv/video_ffmpeg.po b/data/po/sv/video_ffmpeg.po new file mode 100644 index 00000000..7f6ea54e --- /dev/null +++ b/data/po/sv/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/th/AutoGrouper.po b/data/po/th/AutoGrouper.po new file mode 100644 index 00000000..05467158 --- /dev/null +++ b/data/po/th/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/th/CollectHelper.po b/data/po/th/CollectHelper.po new file mode 100644 index 00000000..78fca42b --- /dev/null +++ b/data/po/th/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/th/HDRMerge.po b/data/po/th/HDRMerge.po new file mode 100644 index 00000000..dde9f8e7 --- /dev/null +++ b/data/po/th/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/th/OpenInExplorer.po b/data/po/th/OpenInExplorer.po new file mode 100644 index 00000000..40d6898f --- /dev/null +++ b/data/po/th/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/th/RL_out_sharp.po b/data/po/th/RL_out_sharp.po new file mode 100644 index 00000000..494a6ea4 --- /dev/null +++ b/data/po/th/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/th/autostyle.po b/data/po/th/autostyle.po new file mode 100644 index 00000000..9d2ea2f6 --- /dev/null +++ b/data/po/th/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/th/clear_GPS.po b/data/po/th/clear_GPS.po new file mode 100644 index 00000000..89caabfa --- /dev/null +++ b/data/po/th/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/th/copy_attach_detach_tags.po b/data/po/th/copy_attach_detach_tags.po new file mode 100644 index 00000000..5342114b --- /dev/null +++ b/data/po/th/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/th/darkroom_demo.po b/data/po/th/darkroom_demo.po new file mode 100644 index 00000000..01918636 --- /dev/null +++ b/data/po/th/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/th/dtutils.po b/data/po/th/dtutils.po new file mode 100644 index 00000000..75aaf95a --- /dev/null +++ b/data/po/th/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/th/enfuse.po b/data/po/th/enfuse.po new file mode 100644 index 00000000..52207d84 --- /dev/null +++ b/data/po/th/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/th/enfuseAdvanced.po b/data/po/th/enfuseAdvanced.po new file mode 100644 index 00000000..2af0a8f0 --- /dev/null +++ b/data/po/th/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/th/executable_manager.po b/data/po/th/executable_manager.po new file mode 100644 index 00000000..61dd45cf --- /dev/null +++ b/data/po/th/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/th/exportLUT.po b/data/po/th/exportLUT.po new file mode 100644 index 00000000..ea66838b --- /dev/null +++ b/data/po/th/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/th/ext_editor.po b/data/po/th/ext_editor.po new file mode 100644 index 00000000..84c6ba1a --- /dev/null +++ b/data/po/th/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/th/face_recognition.po b/data/po/th/face_recognition.po new file mode 100644 index 00000000..8e111fca --- /dev/null +++ b/data/po/th/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/th/file.po b/data/po/th/file.po new file mode 100644 index 00000000..02894e6a --- /dev/null +++ b/data/po/th/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/th/fujifilm_ratings.po b/data/po/th/fujifilm_ratings.po new file mode 100644 index 00000000..9d18441c --- /dev/null +++ b/data/po/th/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/th/geoJSON_export.po b/data/po/th/geoJSON_export.po new file mode 100644 index 00000000..be4384af --- /dev/null +++ b/data/po/th/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/th/geoToolbox.po b/data/po/th/geoToolbox.po new file mode 100644 index 00000000..7c4a2788 --- /dev/null +++ b/data/po/th/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/th/gettextExample.po b/data/po/th/gettextExample.po new file mode 100644 index 00000000..bba86e29 --- /dev/null +++ b/data/po/th/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/th/gimp.po b/data/po/th/gimp.po new file mode 100644 index 00000000..2ee9293c --- /dev/null +++ b/data/po/th/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/th/gpx_export.po b/data/po/th/gpx_export.po new file mode 100644 index 00000000..35443f20 --- /dev/null +++ b/data/po/th/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/th/hugin.po b/data/po/th/hugin.po new file mode 100644 index 00000000..20fc2682 --- /dev/null +++ b/data/po/th/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/th/image_stack.po b/data/po/th/image_stack.po new file mode 100644 index 00000000..3a8ff358 --- /dev/null +++ b/data/po/th/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/th/image_time.po b/data/po/th/image_time.po new file mode 100644 index 00000000..bf3966a3 --- /dev/null +++ b/data/po/th/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/th/kml_export.po b/data/po/th/kml_export.po new file mode 100644 index 00000000..593ea2a5 --- /dev/null +++ b/data/po/th/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/th/lighttable_demo.po b/data/po/th/lighttable_demo.po new file mode 100644 index 00000000..e7f00eb8 --- /dev/null +++ b/data/po/th/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/th/moduleExample.po b/data/po/th/moduleExample.po new file mode 100644 index 00000000..dbf0abf7 --- /dev/null +++ b/data/po/th/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/th/multi_os.po b/data/po/th/multi_os.po new file mode 100644 index 00000000..56b66a6d --- /dev/null +++ b/data/po/th/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/th/panels_demo.po b/data/po/th/panels_demo.po new file mode 100644 index 00000000..78421319 --- /dev/null +++ b/data/po/th/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/th/passport_guide.po b/data/po/th/passport_guide.po new file mode 100644 index 00000000..0ee09767 --- /dev/null +++ b/data/po/th/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/th/pdf_slideshow.po b/data/po/th/pdf_slideshow.po new file mode 100644 index 00000000..99fc89c3 --- /dev/null +++ b/data/po/th/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/th/photils.po b/data/po/th/photils.po new file mode 100644 index 00000000..16ec1926 --- /dev/null +++ b/data/po/th/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/th/quicktag.po b/data/po/th/quicktag.po new file mode 100644 index 00000000..2a61fd27 --- /dev/null +++ b/data/po/th/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/th/script_manager.po b/data/po/th/script_manager.po new file mode 100644 index 00000000..6daf40be --- /dev/null +++ b/data/po/th/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/th/select_untagged.po b/data/po/th/select_untagged.po new file mode 100644 index 00000000..7be25710 --- /dev/null +++ b/data/po/th/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/th/slideshowMusic.po b/data/po/th/slideshowMusic.po new file mode 100644 index 00000000..507f9572 --- /dev/null +++ b/data/po/th/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/th/transfer_hierarchy.po b/data/po/th/transfer_hierarchy.po new file mode 100644 index 00000000..cddfdb9b --- /dev/null +++ b/data/po/th/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/th/video_ffmpeg.po b/data/po/th/video_ffmpeg.po new file mode 100644 index 00000000..cbce7e00 --- /dev/null +++ b/data/po/th/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/zh_CN/AutoGrouper.po b/data/po/zh_CN/AutoGrouper.po new file mode 100644 index 00000000..2b442f62 --- /dev/null +++ b/data/po/zh_CN/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/zh_CN/CollectHelper.po b/data/po/zh_CN/CollectHelper.po new file mode 100644 index 00000000..df46b6b7 --- /dev/null +++ b/data/po/zh_CN/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/zh_CN/HDRMerge.po b/data/po/zh_CN/HDRMerge.po new file mode 100644 index 00000000..314d7943 --- /dev/null +++ b/data/po/zh_CN/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/zh_CN/OpenInExplorer.po b/data/po/zh_CN/OpenInExplorer.po new file mode 100644 index 00000000..f1fb378b --- /dev/null +++ b/data/po/zh_CN/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/zh_CN/RL_out_sharp.po b/data/po/zh_CN/RL_out_sharp.po new file mode 100644 index 00000000..1a97ddc5 --- /dev/null +++ b/data/po/zh_CN/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/zh_CN/autostyle.po b/data/po/zh_CN/autostyle.po new file mode 100644 index 00000000..39e25b57 --- /dev/null +++ b/data/po/zh_CN/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/zh_CN/clear_GPS.po b/data/po/zh_CN/clear_GPS.po new file mode 100644 index 00000000..29d9c9ba --- /dev/null +++ b/data/po/zh_CN/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/zh_CN/copy_attach_detach_tags.po b/data/po/zh_CN/copy_attach_detach_tags.po new file mode 100644 index 00000000..02be10b5 --- /dev/null +++ b/data/po/zh_CN/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/zh_CN/darkroom_demo.po b/data/po/zh_CN/darkroom_demo.po new file mode 100644 index 00000000..6118c1df --- /dev/null +++ b/data/po/zh_CN/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/zh_CN/dtutils.po b/data/po/zh_CN/dtutils.po new file mode 100644 index 00000000..7cd81680 --- /dev/null +++ b/data/po/zh_CN/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/zh_CN/enfuse.po b/data/po/zh_CN/enfuse.po new file mode 100644 index 00000000..00929de0 --- /dev/null +++ b/data/po/zh_CN/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/zh_CN/enfuseAdvanced.po b/data/po/zh_CN/enfuseAdvanced.po new file mode 100644 index 00000000..eb1ae267 --- /dev/null +++ b/data/po/zh_CN/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/zh_CN/executable_manager.po b/data/po/zh_CN/executable_manager.po new file mode 100644 index 00000000..48a947d1 --- /dev/null +++ b/data/po/zh_CN/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/zh_CN/exportLUT.po b/data/po/zh_CN/exportLUT.po new file mode 100644 index 00000000..3c9102a8 --- /dev/null +++ b/data/po/zh_CN/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/zh_CN/ext_editor.po b/data/po/zh_CN/ext_editor.po new file mode 100644 index 00000000..89b4f4f0 --- /dev/null +++ b/data/po/zh_CN/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/zh_CN/face_recognition.po b/data/po/zh_CN/face_recognition.po new file mode 100644 index 00000000..b7ee9f64 --- /dev/null +++ b/data/po/zh_CN/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/zh_CN/file.po b/data/po/zh_CN/file.po new file mode 100644 index 00000000..2b32d1e8 --- /dev/null +++ b/data/po/zh_CN/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/zh_CN/fujifilm_ratings.po b/data/po/zh_CN/fujifilm_ratings.po new file mode 100644 index 00000000..4d5f0a1d --- /dev/null +++ b/data/po/zh_CN/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/zh_CN/geoJSON_export.po b/data/po/zh_CN/geoJSON_export.po new file mode 100644 index 00000000..db163e25 --- /dev/null +++ b/data/po/zh_CN/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/zh_CN/geoToolbox.po b/data/po/zh_CN/geoToolbox.po new file mode 100644 index 00000000..c6390ef2 --- /dev/null +++ b/data/po/zh_CN/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/zh_CN/gettextExample.po b/data/po/zh_CN/gettextExample.po new file mode 100644 index 00000000..99df6cad --- /dev/null +++ b/data/po/zh_CN/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/zh_CN/gimp.po b/data/po/zh_CN/gimp.po new file mode 100644 index 00000000..713b7b45 --- /dev/null +++ b/data/po/zh_CN/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/zh_CN/gpx_export.po b/data/po/zh_CN/gpx_export.po new file mode 100644 index 00000000..e6ad274f --- /dev/null +++ b/data/po/zh_CN/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/zh_CN/hugin.po b/data/po/zh_CN/hugin.po new file mode 100644 index 00000000..78852982 --- /dev/null +++ b/data/po/zh_CN/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/zh_CN/image_stack.po b/data/po/zh_CN/image_stack.po new file mode 100644 index 00000000..3991327a --- /dev/null +++ b/data/po/zh_CN/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/zh_CN/image_time.po b/data/po/zh_CN/image_time.po new file mode 100644 index 00000000..11fd9562 --- /dev/null +++ b/data/po/zh_CN/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/zh_CN/kml_export.po b/data/po/zh_CN/kml_export.po new file mode 100644 index 00000000..c0b2bf4b --- /dev/null +++ b/data/po/zh_CN/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/zh_CN/lighttable_demo.po b/data/po/zh_CN/lighttable_demo.po new file mode 100644 index 00000000..80ae7a51 --- /dev/null +++ b/data/po/zh_CN/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/zh_CN/moduleExample.po b/data/po/zh_CN/moduleExample.po new file mode 100644 index 00000000..39a05126 --- /dev/null +++ b/data/po/zh_CN/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/zh_CN/multi_os.po b/data/po/zh_CN/multi_os.po new file mode 100644 index 00000000..fb9d3194 --- /dev/null +++ b/data/po/zh_CN/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/zh_CN/panels_demo.po b/data/po/zh_CN/panels_demo.po new file mode 100644 index 00000000..290892cd --- /dev/null +++ b/data/po/zh_CN/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/zh_CN/passport_guide.po b/data/po/zh_CN/passport_guide.po new file mode 100644 index 00000000..8908b666 --- /dev/null +++ b/data/po/zh_CN/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/zh_CN/pdf_slideshow.po b/data/po/zh_CN/pdf_slideshow.po new file mode 100644 index 00000000..57a13ec3 --- /dev/null +++ b/data/po/zh_CN/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/zh_CN/photils.po b/data/po/zh_CN/photils.po new file mode 100644 index 00000000..d4025192 --- /dev/null +++ b/data/po/zh_CN/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/zh_CN/quicktag.po b/data/po/zh_CN/quicktag.po new file mode 100644 index 00000000..799c8c10 --- /dev/null +++ b/data/po/zh_CN/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/zh_CN/script_manager.po b/data/po/zh_CN/script_manager.po new file mode 100644 index 00000000..dc769160 --- /dev/null +++ b/data/po/zh_CN/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/zh_CN/select_untagged.po b/data/po/zh_CN/select_untagged.po new file mode 100644 index 00000000..30bc49d6 --- /dev/null +++ b/data/po/zh_CN/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/zh_CN/slideshowMusic.po b/data/po/zh_CN/slideshowMusic.po new file mode 100644 index 00000000..726b2872 --- /dev/null +++ b/data/po/zh_CN/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/zh_CN/transfer_hierarchy.po b/data/po/zh_CN/transfer_hierarchy.po new file mode 100644 index 00000000..7497974d --- /dev/null +++ b/data/po/zh_CN/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/zh_CN/video_ffmpeg.po b/data/po/zh_CN/video_ffmpeg.po new file mode 100644 index 00000000..9617af7b --- /dev/null +++ b/data/po/zh_CN/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/data/po/zh_TW/AutoGrouper.po b/data/po/zh_TW/AutoGrouper.po new file mode 100644 index 00000000..0b23c59e --- /dev/null +++ b/data/po/zh_TW/AutoGrouper.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/AutoGrouper.lua:129 +msgid "auto group" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:148 +msgid "group gap [sec.]" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:149 +msgid "minimum gap, in seconds, between groups" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:162 +msgid "auto group: selected" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:163 +msgid "auto group selected images" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:167 +msgid "auto group: collection" +msgstr "" + +#: ../../contrib/AutoGrouper.lua:168 +msgid "auto group the entire collection" +msgstr "" diff --git a/data/po/zh_TW/CollectHelper.po b/data/po/zh_TW/CollectHelper.po new file mode 100644 index 00000000..f5deba03 --- /dev/null +++ b/data/po/zh_TW/CollectHelper.po @@ -0,0 +1,89 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/CollectHelper.lua:63 +msgid "Please select a single image" +msgstr "" + +#: ../../contrib/CollectHelper.lua:110 +msgid "select an image with an active color label" +msgstr "" + +#: ../../contrib/CollectHelper.lua:177 +msgid "collect: previous" +msgstr "" + +#: ../../contrib/CollectHelper.lua:179 +msgid "Sets the Collect parameters to be the previously active parameters" +msgstr "" + +#: ../../contrib/CollectHelper.lua:183 +msgid "collect: folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:185 +msgid "Sets the Collect parameters to be the selected images's folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:190 +msgid "collect: color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:192 +msgid "Sets the Collect parameters to be the selected images's color label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:197 +msgid "collect: all (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:199 +msgid "" +"Sets the Collect parameters based on all activated CollectHelper options" +msgstr "" + +#: ../../contrib/CollectHelper.lua:206 +msgid "CollectHelper: All" +msgstr "" + +#: ../../contrib/CollectHelper.lua:207 +msgid "" +"Will create a collect parameter set that utelizes all enabled CollectHelper " +"types (AND)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:212 +msgid "CollectHelper: Color Label(s)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:213 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's COLOR LABEL(S)" +msgstr "" + +#: ../../contrib/CollectHelper.lua:218 +msgid "CollectHelper: Folder" +msgstr "" + +#: ../../contrib/CollectHelper.lua:219 +msgid "" +"Enable the button that allows you to swap to a collection based on selected " +"image's FOLDER location" +msgstr "" diff --git a/data/po/zh_TW/HDRMerge.po b/data/po/zh_TW/HDRMerge.po new file mode 100644 index 00000000..97d64c21 --- /dev/null +++ b/data/po/zh_TW/HDRMerge.po @@ -0,0 +1,154 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/HDRMerge.lua:161 +msgid "please update you binary locatoin" +msgstr "" + +#: ../../contrib/HDRMerge.lua:180 +msgid "update successful" +msgstr "" + +#: ../../contrib/HDRMerge.lua:182 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/HDRMerge.lua:196 +msgid "HDRMerge install issue" +msgstr "" + +#: ../../contrib/HDRMerge.lua:197 +msgid "HDRMerge install issue, please ensure the binary path is proper" +msgstr "" + +#: ../../contrib/HDRMerge.lua:202 +msgid "not enough images selected, select at least 2 images to merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:263 +msgid "HDRMerge completed successfully" +msgstr "" + +#: ../../contrib/HDRMerge.lua:265 ../../contrib/HDRMerge.lua:266 +msgid "HDRMerge failed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:275 +msgid "HDRMerge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:290 +msgid "HDRMerge options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:295 +msgid "bits per sample" +msgstr "" + +#: ../../contrib/HDRMerge.lua:296 +msgid "number of bits per sample in the output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:312 +msgid "embedded preview size" +msgstr "" + +#: ../../contrib/HDRMerge.lua:313 +msgid "size of the embedded preview in output image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 ../../contrib/HDRMerge.lua:360 +msgid "none" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "half" +msgstr "" + +#: ../../contrib/HDRMerge.lua:315 +msgid "full" +msgstr "" + +#: ../../contrib/HDRMerge.lua:327 +msgid "batch mode" +msgstr "" + +#: ../../contrib/HDRMerge.lua:329 +msgid "" +"enable batch mode operation \n" +"NOTE: resultant files will NOT be auto-imported" +msgstr "" + +#: ../../contrib/HDRMerge.lua:339 +msgid "batch gap [sec.]" +msgstr "" + +#: ../../contrib/HDRMerge.lua:340 +msgid "gap, in seconds, between batch mode groups" +msgstr "" + +#: ../../contrib/HDRMerge.lua:354 +msgid "import options" +msgstr "" + +#: ../../contrib/HDRMerge.lua:357 +msgid "apply style on import" +msgstr "" + +#: ../../contrib/HDRMerge.lua:358 +msgid "Apply selected style on auto-import to newly created image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:378 +msgid "copy tags" +msgstr "" + +#: ../../contrib/HDRMerge.lua:380 +msgid "copy tags from first source image" +msgstr "" + +#: ../../contrib/HDRMerge.lua:387 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/HDRMerge.lua:389 +msgid "Enter tags, seperated by commas" +msgstr "" + +#: ../../contrib/HDRMerge.lua:393 +msgid "merge" +msgstr "" + +#: ../../contrib/HDRMerge.lua:394 +msgid "run HDRMerge with the above specified settings" +msgstr "" + +#: ../../contrib/HDRMerge.lua:398 +msgid "Select HDRmerge executable" +msgstr "" + +#: ../../contrib/HDRMerge.lua:403 +msgid "update" +msgstr "" + +#: ../../contrib/HDRMerge.lua:404 +msgid "update the binary path with current value" +msgstr "" diff --git a/data/po/zh_TW/OpenInExplorer.po b/data/po/zh_TW/OpenInExplorer.po new file mode 100644 index 00000000..43ed01bc --- /dev/null +++ b/data/po/zh_TW/OpenInExplorer.po @@ -0,0 +1,78 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/OpenInExplorer.lua:71 +msgid "" +"OpenInExplorer plug-in only supports Linux, macOS, and Windows at this time" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:87 +msgid "" +"No links directory selected.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:91 +#, lua-format +msgid "" +"Links directory '%s' not found.\n" +"Please check the dt preferences (lua options)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:148 +msgid "Failed to create links. Missing rights?" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:164 +msgid "Please select an image" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:170 +msgid "Please select fewer images (max. 15)" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:186 +msgid "show in file explorer" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:188 +msgid "Open the file manager at the selected image's location" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:193 +msgid "OpenInExplorer: linked files directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:194 +msgid "" +"Directory to store the links to the file names. Requires restart to take " +"effect" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:197 +msgid "Select directory" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:203 +msgid "OpenInExplorer: use links" +msgstr "" + +#: ../../contrib/OpenInExplorer.lua:204 +msgid "Use links instead of multiple windows. Requires restart to take effect" +msgstr "" diff --git a/data/po/zh_TW/RL_out_sharp.po b/data/po/zh_TW/RL_out_sharp.po new file mode 100644 index 00000000..dfd2c7ba --- /dev/null +++ b/data/po/zh_TW/RL_out_sharp.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/RL_out_sharp.lua:111 +msgid "GMic executable not configured" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:131 +msgid "sharpening image " +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:146 +msgid "sharpening error" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:155 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:161 ../../contrib/RL_out_sharp.lua:162 +msgid "select output folder" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:171 +msgid "sigma" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:172 +msgid "controls the width of the blur that's applied" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:183 +msgid "iterations" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:184 +msgid "increase for better sharpening, but slower" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:195 +msgid "output jpg quality" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:196 +msgid "quality of the output jpg file" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:215 +msgid "RL output sharpen" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:219 +msgid "executable for GMic CLI" +msgstr "" + +#: ../../contrib/RL_out_sharp.lua:220 +msgid "select executable for GMic command line version" +msgstr "" diff --git a/data/po/zh_TW/autostyle.po b/data/po/zh_TW/autostyle.po new file mode 100644 index 00000000..e6e03b3d --- /dev/null +++ b/data/po/zh_TW/autostyle.po @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/autostyle.lua:71 +msgid "EXIF TAG not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:75 +msgid "value to match not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:79 +msgid "style name not found in " +msgstr "" + +#: ../../contrib/autostyle.lua:83 +msgid "Can't find exiftool" +msgstr "" + +#: ../../contrib/autostyle.lua:97 +msgid "style not found for autostyle: " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid "Couldn't get attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:106 +msgid " from exiftool's output" +msgstr "" + +#: ../../contrib/autostyle.lua:110 ../../contrib/autostyle.lua:114 +msgid "Image " +msgstr "" + +#: ../../contrib/autostyle.lua:110 +msgid ": autostyle automatically applied " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid ": autostyle not applied, exif tag " +msgstr "" + +#: ../../contrib/autostyle.lua:114 +msgid " not matched: " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid "Applied auto style to " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " out of " +msgstr "" + +#: ../../contrib/autostyle.lua:128 +msgid " image(s)" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid "Could not find the attribute " +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid " using the command: <" +msgstr "" + +#: ../../contrib/autostyle.lua:137 ../../contrib/autostyle.lua:139 +msgid ">" +msgstr "" + +#: ../../contrib/autostyle.lua:165 +msgid "Apply your chosen style from exiftool tags" +msgstr "" + +#: ../../contrib/autostyle.lua:167 +msgid "" +"apply a style automatically if an EXIF_tag matches value. Find the tag with " +"exiftool" +msgstr "" diff --git a/data/po/zh_TW/clear_GPS.po b/data/po/zh_TW/clear_GPS.po new file mode 100644 index 00000000..91cd85e1 --- /dev/null +++ b/data/po/zh_TW/clear_GPS.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/clear_GPS.lua:67 +msgid "clear GPS data" +msgstr "" diff --git a/data/po/zh_TW/copy_attach_detach_tags.po b/data/po/zh_TW/copy_attach_detach_tags.po new file mode 100644 index 00000000..aebd2f09 --- /dev/null +++ b/data/po/zh_TW/copy_attach_detach_tags.po @@ -0,0 +1,74 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/copy_attach_detach_tags.lua:93 +msgid "Image tags copied ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:115 +msgid "No tags to attached, please copy tags first." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:139 +msgid "Tags attached ..." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:155 +msgid "Tags removed from image(s)." +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:161 +msgid "Tags replaced" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:189 +msgid "tag clipboard" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:197 +msgid "multi copy tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:200 +msgid "paste tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:208 +msgid "replace tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:211 +msgid "remove all tags" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:248 +msgid "copy tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:253 +msgid "paste tags to selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:258 +msgid "remove tags from selected image(s)" +msgstr "" + +#: ../../contrib/copy_attach_detach_tags.lua:263 +msgid "replace tags from selected image(s)" +msgstr "" diff --git a/data/po/zh_TW/darkroom_demo.po b/data/po/zh_TW/darkroom_demo.po new file mode 100644 index 00000000..9b733fa6 --- /dev/null +++ b/data/po/zh_TW/darkroom_demo.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/darkroom_demo.lua:79 +msgid "Showing images, with a pause in between each" +msgstr "" + +#: ../../examples/darkroom_demo.lua:85 +msgid "Displaying image " +msgstr "" + +#: ../../examples/darkroom_demo.lua:95 +msgid "Restoring view" +msgstr "" diff --git a/data/po/zh_TW/dtutils.po b/data/po/zh_TW/dtutils.po new file mode 100644 index 00000000..88466945 --- /dev/null +++ b/data/po/zh_TW/dtutils.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils.lua:75 +msgid "This application is written for lua api version " +msgstr "" + +#: ../../lib/dtutils.lua:75 +msgid " or later." +msgstr "" + +#: ../../lib/dtutils.lua:76 +msgid "The current lua api version is " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid "ERROR: " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "" + +#: ../../lib/dtutils.lua:77 +msgid " or later required." +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "" + +#: ../../lib/dtutils.lua:78 +msgid " not met for " +msgstr "" + +#: ../../lib/dtutils.lua:195 +msgid "Loaded " +msgstr "" + +#: ../../lib/dtutils.lua:197 +msgid "Error loading " +msgstr "" diff --git a/data/po/zh_TW/enfuse.po b/data/po/zh_TW/enfuse.po new file mode 100644 index 00000000..35bed36e --- /dev/null +++ b/data/po/zh_TW/enfuse.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../official/enfuse.lua:170 +#, lua-format +msgid "Error writing to `%s`" +msgstr "" + +#: ../../official/enfuse.lua:193 +#, lua-format +msgid "Converting raw file '%s' to tiff..." +msgstr "" + +#: ../../official/enfuse.lua:203 +#, lua-format +msgid "Skipping %s..." +msgstr "" + +#: ../../official/enfuse.lua:210 +msgid "No suitable images selected, nothing to do for enfuse" +msgstr "" + +#: ../../official/enfuse.lua:216 +#, lua-format +msgid "%d image(s) skipped" +msgstr "" + +#: ../../official/enfuse.lua:236 +msgid "Enfuse failed, see terminal output for details" +msgstr "" + +#: ../../official/enfuse.lua:248 +msgid "enfuse was successful, resulting image has been imported" +msgstr "" + +#: ../../official/enfuse.lua:250 +#, lua-format +msgid "enfuse: done, resulting image '%s' has been imported with id %d" +msgstr "" + +#: ../../official/enfuse.lua:284 +msgid "Could not find enfuse executable. Not loading enfuse exporter..." +msgstr "" diff --git a/data/po/zh_TW/enfuseAdvanced.po b/data/po/zh_TW/enfuseAdvanced.po new file mode 100644 index 00000000..6e22cb17 --- /dev/null +++ b/data/po/zh_TW/enfuseAdvanced.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/enfuseAdvanced.lua:237 +msgid "please update your binary locations" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid "issue with " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:249 +msgid " executable" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:258 +msgid "update successful" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:260 +msgid "update unsuccessful, please try again" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:366 +msgid "saved to " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:382 +msgid "loaded from " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:417 +msgid "export for image fusion " +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:422 +msgid "too few images selected, please select at least 2 images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:425 +msgid "installation error, please verify binary paths are proper" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:442 ../../contrib/enfuseAdvanced.lua:443 +#: ../../contrib/enfuseAdvanced.lua:466 ../../contrib/enfuseAdvanced.lua:467 +msgid " failed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:506 +msgid "image align options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:509 +msgid "align images" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:511 +msgid "automatically align images prior to enfuse" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:521 +msgid "optimize radial distortion" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:523 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:528 +msgid "optimize field of view" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:530 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:535 +msgid "optimize image center shift" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:537 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:542 +msgid "auto crop" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:544 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:549 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:551 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:556 +msgid "use gpu" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:558 +msgid "use gpu during alignment" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:565 +msgid "image grid size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:566 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:582 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:583 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:599 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:600 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:616 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:617 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:631 +msgid "image fusion options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:636 +msgid "exposure weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:637 +msgid "" +"set the relative weight of the well-exposedness criterion \n" +"as defined by the chosen exposure weight function. \n" +"increasing this weight relative to the others will\n" +" make well-exposed pixels contribute more to\n" +" the final output. \n" +"default: (1.0)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:648 +msgid "saturation weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:649 +msgid "" +"set the relative weight of high-saturation pixels. \n" +"increasing this weight makes pixels with high \n" +"saturation contribute more to the final output. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:660 +msgid "contrast weight" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:661 +msgid "" +"sets the relative weight of high local-contrast pixels. \n" +"default: (0.0)." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:672 +msgid "exposure optimum" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:673 +msgid "" +"determine at what normalized exposure value\n" +" the optimum exposure of the input images\n" +" is. this is, set the position of the maximum\n" +" of the exposure weight curve. use this \n" +"option to fine-tune exposure weighting. \n" +"default: (0.5)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:684 +msgid "exposure width" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:685 +msgid "" +"set the characteristic width (FWHM) of the exposure \n" +"weight function. low numbers give less weight to \n" +"pixels that are far from the user-defined \n" +"optimum and vice versa. use this option to \n" +"fine-tune exposure weighting. \n" +"default: (0.2)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:694 +msgid "hard mask" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:696 +msgid "" +"force hard blend masks on the finest scale. this avoids \n" +"averaging of fine details (only), at the expense \n" +"of increasing the noise. this improves the \n" +"sharpness of focus stacks considerably.\n" +"default (soft mask)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:701 +msgid "save masks" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:703 +msgid "" +"Save the generated weight masks to your home directory,\n" +"enblend saves masks as 8 bit grayscale, \n" +"i.e. single channel images. \n" +"for accuracy we recommend to choose a lossless format." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:710 +msgid "contrast window size" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:711 +msgid "" +"set the window size for local contrast analysis. \n" +"the window will be a square of size × size pixels. \n" +"if given an even size, Enfuse will \n" +"automatically use the next odd number.\n" +"for contrast analysis size values larger \n" +"than 5 pixels might result in a \n" +"blurry composite image. values of 3 and \n" +"5 pixels have given good results on \n" +"focus stacks. \n" +"default: (5) pixels" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:727 +msgid "contrast edge scale" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:728 +msgid "" +"a non-zero value for EDGE-SCALE switches on the \n" +"Laplacian-of-Gaussian (LoG) edge detection algorithm.\n" +" edage-scale is the radius of the Gaussian used \n" +"in the search for edges. a positive LCE-SCALE \n" +"turns on local contrast enhancement (LCE) \n" +"before the LoG edge detection. \n" +"Default: (0.0) pixels." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:744 +msgid "contrast min curvature [%]" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:745 +msgid "" +"define the minimum curvature for the LoG edge detection. Append a ‘%’ to " +"specify the minimum curvature relative to maximum pixel value in the source " +"image. Default: (0.0%)" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:759 +msgid "target file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:764 +msgid "tiff compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:765 +msgid "compression method for tiff files" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:781 +msgid "jpeg compression" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:782 +msgid "jpeg compression level" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:804 +msgid "file format" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:805 +msgid "file format of the enfused final image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:825 +msgid "bit depth" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:826 +msgid "bit depth of the enfused file" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:840 +msgid "directory" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:849 +msgid "" +"select the target directory for the fused image. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:854 +msgid "save to source image location" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:856 +msgid "" +"If checked ignores the location above and saves output image(s) to the same " +"location as the source images." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:863 +msgid "on conflict" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:877 +msgid "auto import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:879 +msgid "import the image into darktable database when enfuse completes" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:890 +msgid "Apply Style on Import" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:891 +msgid "Apply selected style on auto-import to newly created blended image" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:910 +msgid "copy tags" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:912 +msgid "Copy tags from first image." +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:919 +msgid "" +"Additional tags to be added on import. Seperate with commas, all spaces will " +"be removed" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:927 +msgid "active preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:928 +msgid "preset to be loaded from or saved to" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:942 +msgid "laod fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:943 +msgid "load current fusion parameters from selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:947 +msgid "save to fusion preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:948 +msgid "save current fusion parameters to selected preset" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:952 +msgid "create image variants from presets" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:954 +msgid "" +"create multiple image variants based on the three different presets of the " +"specified type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:971 +msgid "create variants type" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:972 +msgid "preset type to be used when creating image variants" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1011 +msgid "update" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1012 +msgid "update the binary paths with current values" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1092 +msgid "show options" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1093 +msgid "show options for specified aspect of output" +msgstr "" + +#: ../../contrib/enfuseAdvanced.lua:1114 +msgid "DRI or DFF image" +msgstr "" diff --git a/data/po/zh_TW/executable_manager.po b/data/po/zh_TW/executable_manager.po new file mode 100644 index 00000000..105c4a3b --- /dev/null +++ b/data/po/zh_TW/executable_manager.po @@ -0,0 +1,58 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/executable_manager.lua:127 +msgid "No executable paths found, exiting..." +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "select an executable" +msgstr "" + +#: ../../tools/executable_manager.lua:143 +msgid "search path for executable" +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid "select " +msgstr "" + +#: ../../tools/executable_manager.lua:152 +msgid " executable" +msgstr "" + +#: ../../tools/executable_manager.lua:173 +msgid "select executable to modify" +msgstr "" + +#: ../../tools/executable_manager.lua:188 +msgid "current" +msgstr "" + +#: ../../tools/executable_manager.lua:190 +msgid "select" +msgstr "" + +#: ../../tools/executable_manager.lua:192 +msgid "reset" +msgstr "" + +#: ../../tools/executable_manager.lua:195 +msgid "Clear path for " +msgstr "" diff --git a/data/po/zh_TW/exportLUT.po b/data/po/zh_TW/exportLUT.po new file mode 100644 index 00000000..b73ecedf --- /dev/null +++ b/data/po/zh_TW/exportLUT.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/exportLUT.lua:56 +msgid "Identity_file_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:62 +msgid "Export_location_chooser" +msgstr "" + +#: ../../contrib/exportLUT.lua:68 +msgid "choose the identity haldclut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:72 +msgid "choose the output location" +msgstr "" + +#: ../../contrib/exportLUT.lua:76 +msgid "WARNING: files may be silently overwritten" +msgstr "" + +#: ../../contrib/exportLUT.lua:98 +msgid "Invalid identity lut file" +msgstr "" + +#: ../../contrib/exportLUT.lua:100 +msgid "Exporting styles as haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:119 +msgid "Exported: " +msgstr "" + +#: ../../contrib/exportLUT.lua:121 +msgid "Done exporting haldCLUTs" +msgstr "" + +#: ../../contrib/exportLUT.lua:130 ../../contrib/exportLUT.lua:131 +msgid "export haldclut" +msgstr "" + +#: ../../contrib/exportLUT.lua:148 +msgid "export" +msgstr "" diff --git a/data/po/zh_TW/ext_editor.po b/data/po/zh_TW/ext_editor.po new file mode 100644 index 00000000..bc510cd6 --- /dev/null +++ b/data/po/zh_TW/ext_editor.po @@ -0,0 +1,118 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/ext_editor.lua:156 +msgid " editors configured" +msgstr "" + +#: ../../contrib/ext_editor.lua:165 +msgid "not a valid choice" +msgstr "" + +#: ../../contrib/ext_editor.lua:171 +msgid "please select one image" +msgstr "" + +#: ../../contrib/ext_editor.lua:195 +msgid "file type not allowed" +msgstr "" + +#: ../../contrib/ext_editor.lua:223 +msgid "error copying file " +msgstr "" + +#: ../../contrib/ext_editor.lua:230 +msgid "launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:233 +msgid "error launching " +msgstr "" + +#: ../../contrib/ext_editor.lua:326 +msgid "error moving file " +msgstr "" + +#: ../../contrib/ext_editor.lua:335 +msgid "finished exporting" +msgstr "" + +#: ../../contrib/ext_editor.lua:344 +msgid "external editors" +msgstr "" + +#: ../../contrib/ext_editor.lua:361 +msgid "choose program" +msgstr "" + +#: ../../contrib/ext_editor.lua:362 +msgid "select the external editor from the list" +msgstr "" + +#: ../../contrib/ext_editor.lua:372 +msgid "edit" +msgstr "" + +#: ../../contrib/ext_editor.lua:373 +msgid "open the selected image in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:383 +msgid "edit a copy" +msgstr "" + +#: ../../contrib/ext_editor.lua:384 +msgid "create a copy of the selected image and open it in external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:393 +msgid "update list" +msgstr "" + +#: ../../contrib/ext_editor.lua:394 +msgid "update list of programs if lua preferences are changed" +msgstr "" + +#: ../../contrib/ext_editor.lua:437 +msgid "collection" +msgstr "" + +#: ../../contrib/ext_editor.lua:443 +msgid "executable for external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "select executable for external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:444 +msgid "(None)" +msgstr "" + +#: ../../contrib/ext_editor.lua:447 +msgid "name of external editor " +msgstr "" + +#: ../../contrib/ext_editor.lua:448 +msgid "friendly name of external editor" +msgstr "" + +#: ../../contrib/ext_editor.lua:454 +msgid "edit with program " +msgstr "" diff --git a/data/po/zh_TW/face_recognition.po b/data/po/zh_TW/face_recognition.po new file mode 100644 index 00000000..5f28f951 --- /dev/null +++ b/data/po/zh_TW/face_recognition.po @@ -0,0 +1,138 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/face_recognition.lua:124 +msgid "export images" +msgstr "" + +#: ../../contrib/face_recognition.lua:130 +#, lua-format +msgid "Exporting image %i of %i images" +msgstr "" + +#: ../../contrib/face_recognition.lua:200 +msgid "Face recognition not found" +msgstr "" + +#: ../../contrib/face_recognition.lua:252 +msgid "Starting face recognition..." +msgstr "" + +#: ../../contrib/face_recognition.lua:260 +msgid "Face recognition failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:262 +msgid "Face recognition finished" +msgstr "" + +#: ../../contrib/face_recognition.lua:267 +msgid "processing results..." +msgstr "" + +#: ../../contrib/face_recognition.lua:331 +msgid "face recognition complete" +msgstr "" + +#: ../../contrib/face_recognition.lua:333 +msgid "image export failed" +msgstr "" + +#: ../../contrib/face_recognition.lua:337 +msgid "no images selected" +msgstr "" + +#: ../../contrib/face_recognition.lua:346 +msgid "face recognition" +msgstr "" + +#: ../../contrib/face_recognition.lua:362 +msgid "tag to be used for unknown person" +msgstr "" + +#: ../../contrib/face_recognition.lua:368 +msgid "tag to be used when no persons are found" +msgstr "" + +#: ../../contrib/face_recognition.lua:374 +#: ../../contrib/face_recognition.lua:452 +msgid "tags of images to ignore" +msgstr "" + +#: ../../contrib/face_recognition.lua:380 +#: ../../contrib/face_recognition.lua:454 +msgid "tag category" +msgstr "" + +#: ../../contrib/face_recognition.lua:385 +msgid "tolerance" +msgstr "" + +#: ../../contrib/face_recognition.lua:397 +msgid "processor cores" +msgstr "" + +#: ../../contrib/face_recognition.lua:398 +msgid "number of processor cores to use, 0 for all" +msgstr "" + +#: ../../contrib/face_recognition.lua:409 +msgid "known image directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:410 +#: ../../contrib/face_recognition.lua:456 +msgid "face data directory" +msgstr "" + +#: ../../contrib/face_recognition.lua:419 +msgid "export image format" +msgstr "" + +#: ../../contrib/face_recognition.lua:420 +msgid "format for exported images" +msgstr "" + +#: ../../contrib/face_recognition.lua:430 +msgid "maximum exported image width" +msgstr "" + +#: ../../contrib/face_recognition.lua:436 +msgid "maximum exported image height" +msgstr "" + +#: ../../contrib/face_recognition.lua:448 +msgid "unknown person tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:450 +msgid "no persons found tag" +msgstr "" + +#: ../../contrib/face_recognition.lua:463 +msgid "processing options" +msgstr "" + +#: ../../contrib/face_recognition.lua:469 +msgid "width " +msgstr "" + +#: ../../contrib/face_recognition.lua:474 +msgid "height " +msgstr "" diff --git a/data/po/zh_TW/file.po b/data/po/zh_TW/file.po new file mode 100644 index 00000000..5009b594 --- /dev/null +++ b/data/po/zh_TW/file.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-26 14:15-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../lib/dtutils/file.lua:532 +msgid "select executable(s)" +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid "select " +msgstr "" + +#: ../../lib/dtutils/file.lua:534 ../../lib/dtutils/file.lua:540 +msgid " executable" +msgstr "" diff --git a/data/po/zh_TW/fujifilm_ratings.po b/data/po/zh_TW/fujifilm_ratings.po new file mode 100644 index 00000000..e96e98b9 --- /dev/null +++ b/data/po/zh_TW/fujifilm_ratings.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/fujifilm_ratings.lua:41 +msgid "exiftool not found" +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:54 +msgid "Using JPEG Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:65 +msgid "Using RAF Rating: " +msgstr "" + +#: ../../contrib/fujifilm_ratings.lua:71 +msgid "fujifilm_ratings loaded." +msgstr "" diff --git a/data/po/zh_TW/geoJSON_export.po b/data/po/zh_TW/geoJSON_export.po new file mode 100644 index 00000000..51602110 --- /dev/null +++ b/data/po/zh_TW/geoJSON_export.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoJSON_export.lua:75 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:80 +msgid "mkdir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:84 +msgid "convert not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:88 +msgid "xdg-open not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:92 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:299 +msgid "geoJSON export: Create an additional HTML file" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:300 +msgid "Creates a HTML file, that loads the geoJASON file. (Needs a MapBox key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:305 +msgid "geoJSON export: MapBox Key" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:306 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:311 +msgid "geoJSON export: Open geoJSON file after export" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:312 +msgid "" +"Opens the geoJSON file after the export with the standard program for " +"geoJSON files" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:324 +msgid "geoJSON export: Export directory" +msgstr "" + +#: ../../contrib/geoJSON_export.lua:325 +msgid "A directory that will be used to export the geoJSON files" +msgstr "" diff --git a/data/po/zh_TW/geoToolbox.po b/data/po/zh_TW/geoToolbox.po new file mode 100644 index 00000000..3cebdb1d --- /dev/null +++ b/data/po/zh_TW/geoToolbox.po @@ -0,0 +1,163 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/geoToolbox.lua:51 +msgid "Distance:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:55 +msgid "latitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:60 +msgid "longitude:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:65 +msgid "elevation:" +msgstr "" + +#: ../../contrib/geoToolbox.lua:72 ../../contrib/geoToolbox.lua:92 +msgid "GPS selection" +msgstr "" + +#: ../../contrib/geoToolbox.lua:295 +msgid "latitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:296 +msgid "longitude: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:297 +msgid "elevation: " +msgstr "" + +#: ../../contrib/geoToolbox.lua:322 +msgid "gnome-maps not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:360 +msgid "curl not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:365 +msgid "jq not found" +msgstr "" + +#: ../../contrib/geoToolbox.lua:483 +msgid "m" +msgstr "" + +#: ../../contrib/geoToolbox.lua:485 +msgid "km" +msgstr "" + +#: ../../contrib/geoToolbox.lua:488 +#, lua-format +msgid "Distance: %.2f %s" +msgstr "" + +#: ../../contrib/geoToolbox.lua:501 +msgid "export altitude CSV" +msgstr "" + +#: ../../contrib/geoToolbox.lua:511 +msgid "Name of the exported file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:516 +msgid "Start export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:577 +msgid "File created in " +msgstr "" + +#: ../../contrib/geoToolbox.lua:609 +msgid "select geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:610 ../../contrib/geoToolbox.lua:714 +msgid "Select all images with GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:615 +msgid "select non-geo images" +msgstr "" + +#: ../../contrib/geoToolbox.lua:616 ../../contrib/geoToolbox.lua:715 +msgid "Select all images without GPS information" +msgstr "" + +#: ../../contrib/geoToolbox.lua:622 +msgid "copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:623 +msgid "Copy GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:631 +msgid "paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:632 +msgid "Paste GPS data" +msgstr "" + +#: ../../contrib/geoToolbox.lua:661 +msgid "open in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:662 +msgid "Open location in Gnome Maps" +msgstr "" + +#: ../../contrib/geoToolbox.lua:668 +msgid "reverse geocode" +msgstr "" + +#: ../../contrib/geoToolbox.lua:669 +msgid "This just shows the name of the location, but doesn't add it as tag" +msgstr "" + +#: ../../contrib/geoToolbox.lua:673 +msgid "altitude CSV export" +msgstr "" + +#: ../../contrib/geoToolbox.lua:678 +msgid "export altitude CSV file" +msgstr "" + +#: ../../contrib/geoToolbox.lua:679 +msgid "Create an altitude profile using the GPS data in the metadata" +msgstr "" + +#: ../../contrib/geoToolbox.lua:706 +msgid "geoToolbox export: MapBox Key" +msgstr "" + +#: ../../contrib/geoToolbox.lua:707 +msgid "https://www.mapbox.com/studio/account/tokens" +msgstr "" + +#: ../../contrib/geoToolbox.lua:711 +msgid "Calculate the distance from latitude and longitude in km" +msgstr "" diff --git a/data/po/zh_TW/gettextExample.po b/data/po/zh_TW/gettextExample.po new file mode 100644 index 00000000..1d33e4f5 --- /dev/null +++ b/data/po/zh_TW/gettextExample.po @@ -0,0 +1,26 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/gettextExample.lua:66 +msgid "image" +msgstr "" + +#: ../../examples/gettextExample.lua:72 ../../examples/gettextExample.lua:79 +msgid "Hello World!" +msgstr "" diff --git a/data/po/zh_TW/gimp.po b/data/po/zh_TW/gimp.po new file mode 100644 index 00000000..5177c8c7 --- /dev/null +++ b/data/po/zh_TW/gimp.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gimp.lua:101 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/gimp.lua:109 +msgid "GIMP not found" +msgstr "" + +#: ../../contrib/gimp.lua:128 +msgid "Launching GIMP..." +msgstr "" + +#: ../../contrib/gimp.lua:182 +msgid "Edit with GIMP" +msgstr "" diff --git a/data/po/zh_TW/gpx_export.po b/data/po/zh_TW/gpx_export.po new file mode 100644 index 00000000..01c58f52 --- /dev/null +++ b/data/po/zh_TW/gpx_export.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/gpx_export.lua:51 +msgid "gpx file path" +msgstr "" + +#: ../../contrib/gpx_export.lua:64 +msgid "exporting gpx file..." +msgstr "" + +#: ../../contrib/gpx_export.lua:66 +msgid "gpx export" +msgstr "" + +#: ../../contrib/gpx_export.lua:85 ../../contrib/gpx_export.lua:86 +msgid " does not have date information and won't be processed" +msgstr "" + +#: ../../contrib/gpx_export.lua:126 +msgid "invalid path: " +msgstr "" + +#: ../../contrib/gpx_export.lua:130 +msgid "gpx file created: " +msgstr "" + +#: ../../contrib/gpx_export.lua:155 +msgid "export" +msgstr "" + +#: ../../contrib/gpx_export.lua:156 +msgid "export gpx file" +msgstr "" + +#: ../../contrib/gpx_export.lua:164 +msgid "file:" +msgstr "" diff --git a/data/po/zh_TW/hugin.po b/data/po/zh_TW/hugin.po new file mode 100644 index 00000000..21e752f7 --- /dev/null +++ b/data/po/zh_TW/hugin.po @@ -0,0 +1,66 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/hugin.lua:102 +msgid "hugin is not found, did you set the path?" +msgstr "" + +#: ../../contrib/hugin.lua:158 +msgid "will try to stitch now" +msgstr "" + +#: ../../contrib/hugin.lua:163 +msgid "creating pto file" +msgstr "" + +#: ../../contrib/hugin.lua:167 +msgid "running assistant" +msgstr "" + +#: ../../contrib/hugin.lua:175 +msgid "launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:177 +msgid "unable to find command line tools, launching hugin" +msgstr "" + +#: ../../contrib/hugin.lua:185 +msgid "hugin isn't available." +msgstr "" + +#: ../../contrib/hugin.lua:190 +msgid "hugin failed ..." +msgstr "" + +#: ../../contrib/hugin.lua:196 +msgid "importing file " +msgstr "" + +#: ../../contrib/hugin.lua:218 +msgid " launch hugin gui" +msgstr "" + +#: ../../contrib/hugin.lua:220 +msgid "launch hugin in gui mode" +msgstr "" + +#: ../../contrib/hugin.lua:226 +msgid "hugin panorama" +msgstr "" diff --git a/data/po/zh_TW/image_stack.po b/data/po/zh_TW/image_stack.po new file mode 100644 index 00000000..761d66c5 --- /dev/null +++ b/data/po/zh_TW/image_stack.po @@ -0,0 +1,248 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_stack.lua:88 +msgid "image align options" +msgstr "" + +#: ../../contrib/image_stack.lua:92 +msgid "image stack options" +msgstr "" + +#: ../../contrib/image_stack.lua:96 +msgid "executable locations" +msgstr "" + +#: ../../contrib/image_stack.lua:121 +msgid "perform image alignment" +msgstr "" + +#: ../../contrib/image_stack.lua:123 +msgid "align the image stack before processing" +msgstr "" + +#: ../../contrib/image_stack.lua:127 +msgid "optimize radial distortion for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:129 +msgid "" +"optimize radial distortion for all images, \n" +"except for first" +msgstr "" + +#: ../../contrib/image_stack.lua:133 +msgid "optimize field of view for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:135 +msgid "" +"optimize field of view for all images, except for first. \n" +"Useful for aligning focus stacks (DFF) with slightly \n" +"different magnification." +msgstr "" + +#: ../../contrib/image_stack.lua:139 +msgid "optimize image center shift for all images" +msgstr "" + +#: ../../contrib/image_stack.lua:141 +msgid "" +"optimize image center shift for all images, \n" +"except for first." +msgstr "" + +#: ../../contrib/image_stack.lua:145 +msgid "auto crop the image" +msgstr "" + +#: ../../contrib/image_stack.lua:147 +msgid "auto crop the image to the area covered by all images." +msgstr "" + +#: ../../contrib/image_stack.lua:151 +msgid "load distortion from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:153 +msgid "try to load distortion information from lens database" +msgstr "" + +#: ../../contrib/image_stack.lua:157 +msgid "image grid size" +msgstr "" + +#: ../../contrib/image_stack.lua:158 +msgid "" +"break image into a rectangular grid \n" +"and attempt to find num control points in each section.\n" +"default: (5x5)" +msgstr "" + +#: ../../contrib/image_stack.lua:167 +msgid "control points/grid" +msgstr "" + +#: ../../contrib/image_stack.lua:168 +msgid "" +"number of control points (per grid, see option -g) \n" +"to create between adjacent images \n" +"default: (8)." +msgstr "" + +#: ../../contrib/image_stack.lua:177 +msgid "remove control points with error" +msgstr "" + +#: ../../contrib/image_stack.lua:178 +msgid "" +"remove all control points with an error higher \n" +"than num pixels \n" +"default: (3)" +msgstr "" + +#: ../../contrib/image_stack.lua:187 +msgid "correlation threshold for control points" +msgstr "" + +#: ../../contrib/image_stack.lua:188 +msgid "" +"correlation threshold for identifying \n" +"control points \n" +"default: (0.9)." +msgstr "" + +#: ../../contrib/image_stack.lua:197 +msgid "select stack function" +msgstr "" + +#: ../../contrib/image_stack.lua:198 +msgid "" +"select function to be \n" +"applied to image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:207 +msgid "select output format" +msgstr "" + +#: ../../contrib/image_stack.lua:208 +msgid "choose the format for the resulting image" +msgstr "" + +#: ../../contrib/image_stack.lua:216 +msgid "tag source images used?" +msgstr "" + +#: ../../contrib/image_stack.lua:218 +msgid "tag the source images used to create the output file?" +msgstr "" + +#: ../../contrib/image_stack.lua:253 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/image_stack.lua:446 +msgid "Unrecognized option to copy_image_attributes: " +msgstr "" + +#: ../../contrib/image_stack.lua:485 +msgid "ERROR: at least 2 images required for image stacking, exiting..." +msgstr "" + +#: ../../contrib/image_stack.lua:486 +msgid " image(s) selected, at least 2 required" +msgstr "" + +#: ../../contrib/image_stack.lua:500 +msgid "aligning images..." +msgstr "" + +#: ../../contrib/image_stack.lua:503 +msgid "images aligned" +msgstr "" + +#: ../../contrib/image_stack.lua:509 +msgid "ERROR: image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:510 +msgid "image alignment failed" +msgstr "" + +#: ../../contrib/image_stack.lua:515 +msgid "ERROR: align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:516 +msgid "align_image_stack not found" +msgstr "" + +#: ../../contrib/image_stack.lua:530 +msgid "convert command is " +msgstr "" + +#: ../../contrib/image_stack.lua:531 +msgid "processing image stack" +msgstr "" + +#: ../../contrib/image_stack.lua:534 +msgid "image stack processed" +msgstr "" + +#: ../../contrib/image_stack.lua:539 +msgid "importing result" +msgstr "" + +#: ../../contrib/image_stack.lua:544 +msgid "Created with|image_stack" +msgstr "" + +#: ../../contrib/image_stack.lua:557 +msgid "tagging source images" +msgstr "" + +#: ../../contrib/image_stack.lua:558 +msgid "Source file|" +msgstr "" + +#: ../../contrib/image_stack.lua:565 +msgid "ERROR: image stack processing failed" +msgstr "" + +#: ../../contrib/image_stack.lua:569 +msgid "ERROR: convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:570 +msgid "convert executable not found" +msgstr "" + +#: ../../contrib/image_stack.lua:582 +msgid "align image stack: use GPU for remaping" +msgstr "" + +#: ../../contrib/image_stack.lua:583 +msgid "set the GPU remapping for image align" +msgstr "" + +#: ../../contrib/image_stack.lua:586 +msgid "image stack" +msgstr "" diff --git a/data/po/zh_TW/image_time.po b/data/po/zh_TW/image_time.po new file mode 100644 index 00000000..8871b177 --- /dev/null +++ b/data/po/zh_TW/image_time.po @@ -0,0 +1,243 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/image_time.lua:169 +msgid "Error: 2 images must be selected" +msgstr "" + +#: ../../contrib/image_time.lua:222 +msgid "unable to detect exiv2" +msgstr "" + +#: ../../contrib/image_time.lua:243 ../../contrib/image_time.lua:260 +msgid "unable to get information for " +msgstr "" + +#: ../../contrib/image_time.lua:308 +msgid "reset time: no images selected" +msgstr "" + +#: ../../contrib/image_time.lua:309 +msgid "please select the images that need their time reset" +msgstr "" + +#: ../../contrib/image_time.lua:322 ../../contrib/image_time.lua:347 +msgid "please select some images and try again" +msgstr "" + +#: ../../contrib/image_time.lua:326 ../../contrib/image_time.lua:421 +#: ../../contrib/image_time.lua:428 +msgid "subtract" +msgstr "" + +#: ../../contrib/image_time.lua:399 +msgid "image time" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years" +msgstr "" + +#: ../../contrib/image_time.lua:415 +msgid "years to adjust by, 0 - ?" +msgstr "" + +#: ../../contrib/image_time.lua:416 +msgid "months" +msgstr "" + +#: ../../contrib/image_time.lua:417 +msgid "days" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours" +msgstr "" + +#: ../../contrib/image_time.lua:418 +msgid "hours to adjust by, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes" +msgstr "" + +#: ../../contrib/image_time.lua:419 +msgid "minutes to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:420 ../../contrib/image_time.lua:427 +msgid "seconds" +msgstr "" + +#: ../../contrib/image_time.lua:420 +msgid "seconds to adjust by, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add/subtract" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add or subtract time" +msgstr "" + +#: ../../contrib/image_time.lua:421 ../../contrib/image_time.lua:428 +msgid "add" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year" +msgstr "" + +#: ../../contrib/image_time.lua:422 +msgid "year to set, 1900 - now" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month" +msgstr "" + +#: ../../contrib/image_time.lua:423 +msgid "month to set, 1-12" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day" +msgstr "" + +#: ../../contrib/image_time.lua:424 +msgid "day to set, 1-31" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour" +msgstr "" + +#: ../../contrib/image_time.lua:425 +msgid "hour to set, 0-23" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minute" +msgstr "" + +#: ../../contrib/image_time.lua:426 +msgid "minutes to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:427 +msgid "seconds to set, 0-59" +msgstr "" + +#: ../../contrib/image_time.lua:443 +msgid "Time difference between images in seconds" +msgstr "" + +#: ../../contrib/image_time.lua:444 +msgid "Select 2 images and use the calculate button" +msgstr "" + +#: ../../contrib/image_time.lua:449 +msgid "Calculate" +msgstr "" + +#: ../../contrib/image_time.lua:450 +msgid "calculate time difference between 2 images" +msgstr "" + +#: ../../contrib/image_time.lua:457 +msgid "synchronize image times" +msgstr "" + +#: ../../contrib/image_time.lua:458 +msgid "apply the time difference from selected images" +msgstr "" + +#: ../../contrib/image_time.lua:468 ../../contrib/image_time.lua:534 +msgid "adjust time" +msgstr "" + +#: ../../contrib/image_time.lua:469 +msgid "days, months, years" +msgstr "" + +#: ../../contrib/image_time.lua:473 +msgid "hours, minutes, seconds" +msgstr "" + +#: ../../contrib/image_time.lua:477 +msgid "adjustment direction" +msgstr "" + +#: ../../contrib/image_time.lua:480 +msgid "adjust" +msgstr "" + +#: ../../contrib/image_time.lua:488 ../../contrib/image_time.lua:535 +msgid "set time" +msgstr "" + +#: ../../contrib/image_time.lua:489 +msgid "date: " +msgstr "" + +#: ../../contrib/image_time.lua:493 +msgid "time:" +msgstr "" + +#: ../../contrib/image_time.lua:498 +msgid "set" +msgstr "" + +#: ../../contrib/image_time.lua:506 +msgid "synchronize image time" +msgstr "" + +#: ../../contrib/image_time.lua:507 +msgid "calculate difference between images" +msgstr "" + +#: ../../contrib/image_time.lua:510 +msgid "apply difference" +msgstr "" + +#: ../../contrib/image_time.lua:516 +msgid "reset to original time" +msgstr "" + +#: ../../contrib/image_time.lua:519 +msgid "reset" +msgstr "" + +#: ../../contrib/image_time.lua:528 +msgid "mode" +msgstr "" + +#: ../../contrib/image_time.lua:529 +msgid "select mode" +msgstr "" + +#: ../../contrib/image_time.lua:536 +msgid "synchronize time" +msgstr "" + +#: ../../contrib/image_time.lua:537 +msgid "reset time" +msgstr "" diff --git a/data/po/zh_TW/kml_export.po b/data/po/zh_TW/kml_export.po new file mode 100644 index 00000000..ca3c64b0 --- /dev/null +++ b/data/po/zh_TW/kml_export.po @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/kml_export.lua:56 +#, lua-format +msgid "Export Image %i/%i" +msgstr "" + +#: ../../contrib/kml_export.lua:83 +msgid "magick not found" +msgstr "" + +#: ../../contrib/kml_export.lua:88 +msgid "xdg-user-dir not found" +msgstr "" + +#: ../../contrib/kml_export.lua:98 +msgid "zip not found" +msgstr "" + +#: ../../contrib/kml_export.lua:309 +msgid "KML export: Open KML file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:310 ../../contrib/kml_export.lua:317 +msgid "" +"Opens the KML file after the export with the standard program for KML files" +msgstr "" + +#: ../../contrib/kml_export.lua:316 +msgid "KML export: Open KML/KMZ file after export" +msgstr "" + +#: ../../contrib/kml_export.lua:336 +msgid "KML export: Export directory" +msgstr "" + +#: ../../contrib/kml_export.lua:337 +msgid "A directory that will be used to export the KML/KMZ files" +msgstr "" + +#: ../../contrib/kml_export.lua:344 +msgid "KML export: ImageMagick binary Location" +msgstr "" + +#: ../../contrib/kml_export.lua:345 +msgid "Install location of magick[.exe]. Requires restart to take effect." +msgstr "" + +#: ../../contrib/kml_export.lua:352 +msgid "KML export: Connect images with path" +msgstr "" + +#: ../../contrib/kml_export.lua:353 +msgid "connect all images with a path" +msgstr "" + +#: ../../contrib/kml_export.lua:360 +msgid "KML export: Create KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:361 +msgid "Compress all imeges to one KMZ file" +msgstr "" + +#: ../../contrib/kml_export.lua:367 +msgid "KML Export" +msgstr "" + +#: ../../contrib/kml_export.lua:369 +msgid "KML/KMZ Export" +msgstr "" diff --git a/data/po/zh_TW/lighttable_demo.po b/data/po/zh_TW/lighttable_demo.po new file mode 100644 index 00000000..c9de64f3 --- /dev/null +++ b/data/po/zh_TW/lighttable_demo.po @@ -0,0 +1,59 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/lighttable_demo.lua:136 +msgid "lighttable layout and zoom level demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:141 +msgid "set lighttable layout to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:145 +#: ../../examples/lighttable_demo.lua:150 +msgid "Set zoom level to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:157 +msgid "lighttable sorting demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:163 +msgid "set lighttable sort to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:168 +msgid "sort order set to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:175 +msgid "lighttable filtering demonstration" +msgstr "" + +#: ../../examples/lighttable_demo.lua:179 +msgid "set filter to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:184 +msgid "set rating comparator to " +msgstr "" + +#: ../../examples/lighttable_demo.lua:191 +msgid "restoring settings" +msgstr "" diff --git a/data/po/zh_TW/moduleExample.po b/data/po/zh_TW/moduleExample.po new file mode 100644 index 00000000..6a63e5c4 --- /dev/null +++ b/data/po/zh_TW/moduleExample.po @@ -0,0 +1,54 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/moduleExample.lua:74 +msgid "MyButton" +msgstr "" + +#: ../../examples/moduleExample.lua:76 +msgid "Button clicked" +msgstr "" + +#: ../../examples/moduleExample.lua:89 +msgid "MyCheck_button" +msgstr "" + +#: ../../examples/moduleExample.lua:92 +msgid "MyCombobox" +msgstr "" + +#: ../../examples/moduleExample.lua:98 +msgid "placeholder" +msgstr "" + +#: ../../examples/moduleExample.lua:101 +msgid "Tooltip Text" +msgstr "" + +#: ../../examples/moduleExample.lua:108 +msgid "MyFile_chooser_button" +msgstr "" + +#: ../../examples/moduleExample.lua:115 +msgid "MyLabel" +msgstr "" + +#: ../../examples/moduleExample.lua:123 +msgid "MySlider" +msgstr "" diff --git a/data/po/zh_TW/multi_os.po b/data/po/zh_TW/multi_os.po new file mode 100644 index 00000000..d83f300e --- /dev/null +++ b/data/po/zh_TW/multi_os.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/multi_os.lua:209 +msgid "Select ufraw-batch[.exe] executable" +msgstr "" + +#: ../../examples/multi_os.lua:220 +msgid "multi_os: ufraw-batch location" +msgstr "" + +#: ../../examples/multi_os.lua:221 +msgid "Installed location of ufraw-batch. Requires restart to take effect." +msgstr "" + +#: ../../examples/multi_os.lua:231 +msgid "extract embedded jpeg" +msgstr "" diff --git a/data/po/zh_TW/panels_demo.po b/data/po/zh_TW/panels_demo.po new file mode 100644 index 00000000..7269980a --- /dev/null +++ b/data/po/zh_TW/panels_demo.po @@ -0,0 +1,46 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../examples/panels_demo.lua:91 +msgid "Hiding all panels, one at a tme" +msgstr "" + +#: ../../examples/panels_demo.lua:95 +msgid "Hiding " +msgstr "" + +#: ../../examples/panels_demo.lua:102 +msgid "Make panels visible, one at a time" +msgstr "" + +#: ../../examples/panels_demo.lua:106 +msgid "Showing " +msgstr "" + +#: ../../examples/panels_demo.lua:113 +msgid "Hiding all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:121 +msgid "Showing all panels" +msgstr "" + +#: ../../examples/panels_demo.lua:129 +msgid "Restoring panels to starting configuration" +msgstr "" diff --git a/data/po/zh_TW/passport_guide.po b/data/po/zh_TW/passport_guide.po new file mode 100644 index 00000000..d8fb391a --- /dev/null +++ b/data/po/zh_TW/passport_guide.po @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/passport_guide.lua:90 +msgid "ISO 19794-5/ICAO 9309 passport" +msgstr "" diff --git a/data/po/zh_TW/pdf_slideshow.po b/data/po/zh_TW/pdf_slideshow.po new file mode 100644 index 00000000..33106096 --- /dev/null +++ b/data/po/zh_TW/pdf_slideshow.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/pdf_slideshow.lua:56 +msgid "pdflatex not found" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:64 +msgid "a pdf viewer" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:65 +msgid "can be an absolute pathname or the tool may be in the PATH" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:69 ../../contrib/pdf_slideshow.lua:96 +msgid "slideshow title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:73 +msgid "transition delay (s)" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:84 +msgid "include image title" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:86 +msgid "whether to include the image title (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:90 +msgid "include image author" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:92 +msgid "whether to include the image author (if defined) into the slide" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:168 +msgid "pdf slideshow" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:221 +msgid "problem running pdflatex" +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:222 ../../contrib/pdf_slideshow.lua:232 +msgid "problem running " +msgstr "" + +#: ../../contrib/pdf_slideshow.lua:231 +msgid "problem running pdf viewer" +msgstr "" diff --git a/data/po/zh_TW/photils.po b/data/po/zh_TW/photils.po new file mode 100644 index 00000000..5ed8cbee --- /dev/null +++ b/data/po/zh_TW/photils.po @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/photils.lua:108 +msgid "get tags" +msgstr "" + +#: ../../contrib/photils.lua:139 +msgid "requires a restart to be applied" +msgstr "" + +#: ../../contrib/photils.lua:154 +msgid "min confidence value" +msgstr "" + +#: ../../contrib/photils.lua:171 +msgid "" +"The suggested tags were not generated\n" +" for the currently selected image!" +msgstr "" + +#: ../../contrib/photils.lua:177 +#, lua-format +msgid " page %s of %s " +msgstr "" + +#: ../../contrib/photils.lua:233 +msgid "Tags successfully attached to image" +msgstr "" + +#: ../../contrib/photils.lua:281 +#, lua-format +msgid "%s found %d tags for your image" +msgstr "" + +#: ../../contrib/photils.lua:297 +msgid "No image selected." +msgstr "" + +#: ../../contrib/photils.lua:301 +msgid "This plugin can only handle a single image." +msgstr "" + +#: ../../contrib/photils.lua:307 +#, lua-format +msgid "%s failed, see terminal output for details" +msgstr "" + +#: ../../contrib/photils.lua:315 +#, lua-format +msgid "no tags where found" +msgstr "" + +#: ../../contrib/photils.lua:346 +#, lua-format +msgid "attach %d tags" +msgstr "" + +#: ../../contrib/photils.lua:394 ../../contrib/photils.lua:395 +msgid "photils-cli not found" +msgstr "" + +#: ../../contrib/photils.lua:397 +msgid "" +"Select an image, click \"get tags\" and get \n" +"suggestions for tags." +msgstr "" + +#: ../../contrib/photils.lua:432 +msgid "photils: show confidence value" +msgstr "" + +#: ../../contrib/photils.lua:433 +msgid "if enabled, the confidence value for each tag is displayed" +msgstr "" diff --git a/data/po/zh_TW/quicktag.po b/data/po/zh_TW/quicktag.po new file mode 100644 index 00000000..70b727e0 --- /dev/null +++ b/data/po/zh_TW/quicktag.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/quicktag.lua:72 +msgid "max. length of button labels" +msgstr "" + +#: ../../contrib/quicktag.lua:73 +msgid "may range from 15 to 60 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:86 +msgid "number of quicktag fields" +msgstr "" + +#: ../../contrib/quicktag.lua:87 +msgid "may range from 2 to 20 - needs a restart" +msgstr "" + +#: ../../contrib/quicktag.lua:127 +#, lua-format +msgid "quicktag %i is empty, please set a tag" +msgstr "" + +#: ../../contrib/quicktag.lua:142 +msgid "no images selected" +msgstr "" + +#: ../../contrib/quicktag.lua:152 +#, lua-format +msgid "tag \"%s\" attached to %i image(s)" +msgstr "" + +#: ../../contrib/quicktag.lua:173 +msgid "old tag" +msgstr "" + +#: ../../contrib/quicktag.lua:174 +msgid "select the quicktag to replace" +msgstr "" + +#: ../../contrib/quicktag.lua:211 ../../contrib/quicktag.lua:235 +msgid "new tag" +msgstr "" + +#: ../../contrib/quicktag.lua:214 +msgid "enter your tag here" +msgstr "" + +#: ../../contrib/quicktag.lua:218 +msgid "set tag" +msgstr "" + +#: ../../contrib/quicktag.lua:222 +msgid "new quicktag is empty!" +msgstr "" + +#: ../../contrib/quicktag.lua:226 +#, lua-format +msgid "quicktag \"%s\" replaced by \"%s\"" +msgstr "" + +#: ../../contrib/quicktag.lua:274 +#, lua-format +msgid "quicktag %i" +msgstr "" diff --git a/data/po/zh_TW/script_manager.po b/data/po/zh_TW/script_manager.po new file mode 100644 index 00000000..da53e5e5 --- /dev/null +++ b/data/po/zh_TW/script_manager.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-24 23:13-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../tools/script_manager.lua:543 ../../tools/script_manager.lua:544 +#: ../../tools/script_manager.lua:629 ../../tools/script_manager.lua:641 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 ../../tools/script_manager.lua:564 +#: ../../tools/script_manager.lua:594 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 ../../tools/script_manager.lua:565 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 ../../tools/script_manager.lua:567 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 ../../tools/script_manager.lua:573 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 ../../tools/script_manager.lua:575 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 ../../tools/script_manager.lua:595 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 ../../tools/script_manager.lua:598 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +msgstr "" + +#: ../../tools/script_manager.lua:126 ../../tools/script_manager.lua:148 +msgid "" +"ERROR: git not found. Install or specify the location of the git executable." +msgstr "" + +#: ../../tools/script_manager.lua:258 +msgid "No documentation available" +msgstr "" + +#: ../../tools/script_manager.lua:267 +msgid "Loaded " +msgstr "" + +#: ../../tools/script_manager.lua:269 +msgid " failed to load" +msgstr "" + +#: ../../tools/script_manager.lua:284 +msgid " will not be active when darktable is restarted" +msgstr "" + +#: ../../tools/script_manager.lua:307 +msgid "Disable " +msgstr "" + +#: ../../tools/script_manager.lua:311 ../../tools/script_manager.lua:357 +msgid "Enable " +msgstr "" + +#: ../../tools/script_manager.lua:404 +msgid "Category" +msgstr "" + +#: ../../tools/script_manager.lua:405 +msgid "Select the script category" +msgstr "" + +#: ../../tools/script_manager.lua:423 +msgid "Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:431 +msgid "Enable/Disable Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:463 +msgid "script manager" +msgstr "" + +#: ../../tools/script_manager.lua:583 +msgid "reinstall scripts" +msgstr "" + +#: ../../tools/script_manager.lua:616 +msgid "Install/Update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:620 +msgid "Install/Update Scripts" +msgstr "" + +#: ../../tools/script_manager.lua:637 +msgid "reset" +msgstr "" + +#: ../../tools/script_manager.lua:659 +msgid "Use lua scripts distributed version" +msgstr "" + +#: ../../tools/script_manager.lua:660 +msgid "Use the standalone version (false) or the distributed version (true)" +msgstr "" + +#: ../../tools/script_manager.lua:674 +msgid "Link lua/downloads to $HOME/Downloads" +msgstr "" + +#: ../../tools/script_manager.lua:675 +msgid "" +"Linking the directories enables dropping a script in $HOME/downloads\n" +"and having it recognized the next time darktable starts" +msgstr "" + +#: ../../tools/script_manager.lua:687 +msgid "Apply" +msgstr "" + +#: ../../tools/script_manager.lua:726 +msgid "Configuration" +msgstr "" + +#: ../../tools/script_manager.lua:731 +msgid "Configure" +msgstr "" + +#: ../../tools/script_manager.lua:751 +msgid "Action" +msgstr "" + +#: ../../tools/script_manager.lua:752 +msgid "Select the action you want to perform" +msgstr "" + +#: ../../tools/script_manager.lua:753 +msgid "No actions available" +msgstr "" diff --git a/data/po/zh_TW/select_untagged.po b/data/po/zh_TW/select_untagged.po new file mode 100644 index 00000000..2b74a93a --- /dev/null +++ b/data/po/zh_TW/select_untagged.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/select_untagged.lua:39 +msgid "select untagged images" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select untagged" +msgstr "" + +#: ../../contrib/select_untagged.lua:65 +msgid "select all images containing no tags or only tags added by darktable" +msgstr "" diff --git a/data/po/zh_TW/slideshowMusic.po b/data/po/zh_TW/slideshowMusic.po new file mode 100644 index 00000000..26353e1e --- /dev/null +++ b/data/po/zh_TW/slideshowMusic.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/slideshowMusic.lua:49 +msgid "rhythmbox-client not found" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:72 +msgid "Slideshow background music file" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:76 +msgid "Play slideshow background music" +msgstr "" + +#: ../../contrib/slideshowMusic.lua:77 +msgid "Plays music with rhythmbox if a slideshow starts" +msgstr "" diff --git a/data/po/zh_TW/transfer_hierarchy.po b/data/po/zh_TW/transfer_hierarchy.po new file mode 100644 index 00000000..ecd83a16 --- /dev/null +++ b/data/po/zh_TW/transfer_hierarchy.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/transfer_hierarchy.lua:145 +msgid "Lowest directory containing all selected images" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:248 +msgid "" +"transfer hierarchy: ERROR: existing root is out of sync -- click 'calculate' " +"to update" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:252 +msgid "transfer hierarchy: ERROR: destination not specified" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:262 +msgid "transfer hierarchy: ERROR: could not create directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:267 +msgid "transfer hierarchy: ERROR: not a directory: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:272 +msgid "transfer hierarchy: ERROR: could not create film: " +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:281 +#, lua-format +msgid "transfer hierarchy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:312 +msgid "calculate" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:316 +msgid "existing root" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:321 +msgid "root of destination" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:326 +msgid "move" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:331 +msgid "copy" +msgstr "" + +#: ../../contrib/transfer_hierarchy.lua:332 +msgid "Copy all selected images" +msgstr "" diff --git a/data/po/zh_TW/video_ffmpeg.po b/data/po/zh_TW/video_ffmpeg.po new file mode 100644 index 00000000..c9749c8e --- /dev/null +++ b/data/po/zh_TW/video_ffmpeg.po @@ -0,0 +1,121 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: darktable lua-scripts\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-22 22:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../contrib/video_ffmpeg.lua:235 +msgid "framerate" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:236 +msgid "select framerate of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:243 +msgid "resolution" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:244 +msgid "select resolution of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:251 +msgid "codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:252 +msgid "select codec" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:259 +msgid "format container" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:260 +msgid "select format of output video" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:272 +msgid "output file destination" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:273 +msgid "settings of output file destination and name" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:288 +msgid "Select export path" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:290 +msgid "" +"select the target directory for the timelapse. \n" +"the filename is created automatically." +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:297 +msgid "" +"if selected, output video will be placed in the same directory as first of " +"selected images" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:312 +msgid "override output file on conflict" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:313 +msgid "if checked, in case of file name conflict, the file will be overwritten" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:321 +msgid "" +"enter output file name without extension.\n" +"\n" +"You can use some placeholders:\n" +"- {time} - time in format HH-mm-ss\n" +"- {date} - date in foramt YYYY-mm-dd\n" +"- {first_file} - name of first input file\n" +"- {last_file} - name of last last_file" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:341 +msgid " open after export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:342 +msgid "open video file after successful export" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:369 +msgid "export " +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:425 +msgid "prepare merge process" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:428 +msgid "ERROR: cannot create temp directory" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:440 +msgid "ERROR: cannot build image, see console for more info" +msgstr "" + +#: ../../contrib/video_ffmpeg.lua:442 +msgid "SUCCESS" +msgstr "" diff --git a/examples/darkroom_demo.lua b/examples/darkroom_demo.lua index e0e40526..71fdbdf4 100644 --- a/examples/darkroom_demo.lua +++ b/examples/darkroom_demo.lua @@ -53,10 +53,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" -- T R A N S L A T I O N S -- - - - - - - - - - - - - - - - - - - - - - - - local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end -- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/gettextExample.lua b/examples/gettextExample.lua index c6eda49e..df54244b 100644 --- a/examples/gettextExample.lua +++ b/examples/gettextExample.lua @@ -67,13 +67,13 @@ dt.print_error(gettext.gettext("image")) -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("gettextExample",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") -- Translate a string using the specified textdomain -dt.print_error(gettext.dgettext("gettextExample", 'Hello World!')) +dt.print_error(gettext.dgettext("scripts", 'Hello World!')) -- Define a local function called _ to make the code more readable and have it call dgettext -- with the proper domain. local function _(msgid) - return gettext.dgettext("gettextExample", msgid) + return gettext.dgettext("scripts", msgid) end dt.print_error(_('Hello World!')) diff --git a/examples/lighttable_demo.lua b/examples/lighttable_demo.lua index c3629bad..13d54168 100644 --- a/examples/lighttable_demo.lua +++ b/examples/lighttable_demo.lua @@ -54,10 +54,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" -- T R A N S L A T I O N S -- - - - - - - - - - - - - - - - - - - - - - - - local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end -- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/moduleExample.lua b/examples/moduleExample.lua index 76a992e0..288e8d53 100644 --- a/examples/moduleExample.lua +++ b/examples/moduleExample.lua @@ -40,10 +40,10 @@ du.check_min_api_version("3.0.0", "moduleExample") -- https://www.darktable.org/lua-api/index.html#darktable_gettext local gettext = dt.gettext -gettext.bindtextdomain("moduleExample", dt.configuration.config_dir .. "/lua/locale/") +gettext.bindtextdomain("scripts", dt.configuration.config_dir .. "/lua/locale/") local function _(msgid) - return gettext.dgettext("moduleExample", msgid) + return gettext.dgettext("scripts", msgid) end -- declare a local namespace and a couple of variables we'll need to install the module diff --git a/examples/multi_os.lua b/examples/multi_os.lua index 96b60c2b..12f5c295 100644 --- a/examples/multi_os.lua +++ b/examples/multi_os.lua @@ -73,10 +73,10 @@ local dtsys = require "lib/dtutils.system" -- system utilities local gettext = dt.gettext -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("multi_os",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("multi_os", msgid) + return gettext.dgettext("scripts", msgid) end --[[ diff --git a/examples/panels_demo.lua b/examples/panels_demo.lua index edab6ae5..db5fce6d 100644 --- a/examples/panels_demo.lua +++ b/examples/panels_demo.lua @@ -54,10 +54,10 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" -- T R A N S L A T I O N S -- - - - - - - - - - - - - - - - - - - - - - - - local gettext = dt.gettext -gettext.bindtextdomain(MODULE_NAME, dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) +gettext.bindtextdomain("scripts", dt.configuration.config_dir..PS.."lua"..PS.."locale"..PS) local function _(msgid) - return gettext.dgettext(MODULE_NAME, msgid) + return gettext.dgettext("scripts", msgid) end -- - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lib/dtutils.lua b/lib/dtutils.lua index e1d403e7..8f57681b 100644 --- a/lib/dtutils.lua +++ b/lib/dtutils.lua @@ -32,6 +32,16 @@ local dt = require "darktable" local log = require "lib/dtutils.log" +local gettext = dt.gettext + +-- Tell gettext where to find the .mo file translating messages for a particular domain +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") + +local function _(msgid) + return gettext.dgettext("scripts", msgid) +end + + dtutils.libdoc.functions["check_min_api_version"] = { Name = [[check_min_api_version]], Synopsis = [[check the minimum required api version against the current api version]], @@ -64,8 +74,8 @@ function dtutils.check_min_api_version(min_api, script_name) if min_api > current_api then dt.print_error("This application is written for lua api version " .. min_api .. " or later.") dt.print_error("The current lua api version is " .. current_api) - dt.print("ERROR: " .. script_name .. " failed to load. Lua API version " .. min_api .. " or later required.") - error("Minimum API " .. min_api .. " not met for " .. script_name .. ".", 0) + dt.print(_("ERROR: ") .. script_name .. _(" failed to load. Lua API version ") .. min_api .. _(" or later required.")) + error(_("Minimum API ") .. min_api .. _(" not met for ") .. script_name .. ".", 0) end end diff --git a/lib/dtutils/file.lua b/lib/dtutils/file.lua index 423e834e..5def30c1 100644 --- a/lib/dtutils/file.lua +++ b/lib/dtutils/file.lua @@ -29,10 +29,10 @@ local gettext = dt.gettext du.check_min_api_version("5.0.0", "dtutils.file") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("dtutils.file",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("dtutils.file", msgid) + return gettext.dgettext("scripts", msgid) end dtutils_file.libdoc.functions["check_if_bin_exists"] = { @@ -529,15 +529,15 @@ dtutils_file.libdoc.functions["executable_path_widget"] = { function dtutils_file.executable_path_widget(executables) local box_widgets = {} - table.insert(box_widgets, dt.new_widget("section_label"){label = "select executable(s)"}) - for _, executable in pairs(executables) do - table.insert(box_widgets, dt.new_widget("label"){label = "select " .. executable .. " executable"}) + table.insert(box_widgets, dt.new_widget("section_label"){label = _("select executable(s)")}) + for i, executable in pairs(executables) do + table.insert(box_widgets, dt.new_widget("label"){label = _("select ") .. executable .. _(" executable")}) local path = dtutils_file.get_executable_path_preference(executable) if not path then path = "" end table.insert(box_widgets, dt.new_widget("file_chooser_button"){ - title = "select " .. executable .. " executable", + title = _("select ") .. executable .. _(" executable"), value = path, is_directory = false, changed_callback = function(self) diff --git a/locale/af/LC_MESSAGES/scripts.mo b/locale/af/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..bb20a753 Binary files /dev/null and b/locale/af/LC_MESSAGES/scripts.mo differ diff --git a/locale/ca/LC_MESSAGES/scripts.mo b/locale/ca/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..081464c9 Binary files /dev/null and b/locale/ca/LC_MESSAGES/scripts.mo differ diff --git a/locale/cs/LC_MESSAGES/scripts.mo b/locale/cs/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..0cbb7645 Binary files /dev/null and b/locale/cs/LC_MESSAGES/scripts.mo differ diff --git a/locale/da/LC_MESSAGES/scripts.mo b/locale/da/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..7409f1ac Binary files /dev/null and b/locale/da/LC_MESSAGES/scripts.mo differ diff --git a/locale/de/LC_MESSAGES/scripts.mo b/locale/de/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..fd992117 Binary files /dev/null and b/locale/de/LC_MESSAGES/scripts.mo differ diff --git a/locale/de_DE/LC_MESSAGES/calcDistance.po b/locale/de_DE/LC_MESSAGES/calcDistance.po deleted file mode 100644 index b493110b..00000000 --- a/locale/de_DE/LC_MESSAGES/calcDistance.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:57+0100\n" -"PO-Revision-Date: 2016-01-31 23:02+0100\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Tobias Jakobs \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.4\n" - -#: calcDistance.lua:93 -msgid "Calculate the distance from latitude and longitude in km" -msgstr "Errechne die Entfernung mit Hilfe des Längen- und Breitengrads in km" diff --git a/locale/de_DE/LC_MESSAGES/geo_uri.po b/locale/de_DE/LC_MESSAGES/geo_uri.po deleted file mode 100644 index e778fa1a..00000000 --- a/locale/de_DE/LC_MESSAGES/geo_uri.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:58+0100\n" -"PO-Revision-Date: 2016-01-31 23:13+0100\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Tobias Jakobs \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.4\n" - -#: geo_uri.lua:55 -msgid "gnome-maps not found" -msgstr "gnome-maps wurde nicht gefunden" - -#: geo_uri.lua:81 -msgid "Command failed ..." -msgstr "Aufruf fehlgeschlagen ..." - -#: geo_uri.lua:88 -msgid "Open Location in Gnome Maps" -msgstr "Öffnet den Ort in Gnome Maps" diff --git a/locale/de_DE/LC_MESSAGES/gps_select.po b/locale/de_DE/LC_MESSAGES/gps_select.po deleted file mode 100644 index 1b343c0a..00000000 --- a/locale/de_DE/LC_MESSAGES/gps_select.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:58+0100\n" -"PO-Revision-Date: 2016-01-31 23:05+0100\n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Tobias Jakobs \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.4\n" - -#: gps_select.lua:59 -msgid "Select all images with GPS information" -msgstr "Markiert alle Bilder mit GPS-Informationen" - -#: gps_select.lua:60 -msgid "Select all images without GPS information" -msgstr "Markiert alle Bilder ohne GPS-Informationen" diff --git a/locale/el/LC_MESSAGES/scripts.mo b/locale/el/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..d4712241 Binary files /dev/null and b/locale/el/LC_MESSAGES/scripts.mo differ diff --git a/locale/es/LC_MESSAGES/scripts.mo b/locale/es/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..8fc1bf13 Binary files /dev/null and b/locale/es/LC_MESSAGES/scripts.mo differ diff --git a/locale/fi/LC_MESSAGES/scripts.mo b/locale/fi/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..4136989f Binary files /dev/null and b/locale/fi/LC_MESSAGES/scripts.mo differ diff --git a/locale/fr/LC_MESSAGES/scripts.mo b/locale/fr/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..272407b9 Binary files /dev/null and b/locale/fr/LC_MESSAGES/scripts.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/calcDistance.po b/locale/fr_FR/LC_MESSAGES/calcDistance.po deleted file mode 100644 index ccc3b125..00000000 --- a/locale/fr_FR/LC_MESSAGES/calcDistance.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:57+0100\n" -"PO-Revision-Date: 2016-10-03 14:58+0200\n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Pascal Obry \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.9\n" - -#: calcDistance.lua:93 -msgid "Calculate the distance from latitude and longitude in km" -msgstr "Calcule la distance en km entre les positions GPS de deux images" diff --git a/locale/fr_FR/LC_MESSAGES/geo_uri.po b/locale/fr_FR/LC_MESSAGES/geo_uri.po deleted file mode 100644 index e2a39d80..00000000 --- a/locale/fr_FR/LC_MESSAGES/geo_uri.po +++ /dev/null @@ -1,30 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:58+0100\n" -"PO-Revision-Date: 2016-10-03 15:05+0200\n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Pascal Obry \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.9\n" - -#: geo_uri.lua:55 -msgid "gnome-maps not found" -msgstr "gnome-maps non disponible" - -#: geo_uri.lua:81 -msgid "Command failed ..." -msgstr "La commande a échouée ..." - -#: geo_uri.lua:88 -msgid "Open Location in Gnome Maps" -msgstr "Ouvre la position dans Gnome Maps" diff --git a/locale/fr_FR/LC_MESSAGES/gps_select.po b/locale/fr_FR/LC_MESSAGES/gps_select.po deleted file mode 100644 index b94b258f..00000000 --- a/locale/fr_FR/LC_MESSAGES/gps_select.po +++ /dev/null @@ -1,26 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-31 22:58+0100\n" -"PO-Revision-Date: 2016-10-03 15:03+0200\n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Last-Translator: Pascal Obry \n" -"Language-Team: \n" -"X-Generator: Poedit 1.8.9\n" - -#: gps_select.lua:59 -msgid "Select all images with GPS information" -msgstr "Sélectionner toutes les images avec des informations GPS" - -#: gps_select.lua:60 -msgid "Select all images without GPS information" -msgstr "Sélectionner toutes les images sans information GPS" diff --git a/locale/gl/LC_MESSAGES/scripts.mo b/locale/gl/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..c706f6bc Binary files /dev/null and b/locale/gl/LC_MESSAGES/scripts.mo differ diff --git a/locale/he/LC_MESSAGES/scripts.mo b/locale/he/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..ccb4d430 Binary files /dev/null and b/locale/he/LC_MESSAGES/scripts.mo differ diff --git a/locale/hu/LC_MESSAGES/scripts.mo b/locale/hu/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..f73936a4 Binary files /dev/null and b/locale/hu/LC_MESSAGES/scripts.mo differ diff --git a/locale/it/LC_MESSAGES/scripts.mo b/locale/it/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..50d60402 Binary files /dev/null and b/locale/it/LC_MESSAGES/scripts.mo differ diff --git a/locale/ja/LC_MESSAGES/scripts.mo b/locale/ja/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..59895cad Binary files /dev/null and b/locale/ja/LC_MESSAGES/scripts.mo differ diff --git a/locale/nb/LC_MESSAGES/scripts.mo b/locale/nb/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..fc405283 Binary files /dev/null and b/locale/nb/LC_MESSAGES/scripts.mo differ diff --git a/locale/nl/LC_MESSAGES/scripts.mo b/locale/nl/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..fa7643d2 Binary files /dev/null and b/locale/nl/LC_MESSAGES/scripts.mo differ diff --git a/locale/pl/LC_MESSAGES/scripts.mo b/locale/pl/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..94c047f7 Binary files /dev/null and b/locale/pl/LC_MESSAGES/scripts.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/scripts.mo b/locale/pt_BR/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..6b54ecf8 Binary files /dev/null and b/locale/pt_BR/LC_MESSAGES/scripts.mo differ diff --git a/locale/pt_PT/LC_MESSAGES/scripts.mo b/locale/pt_PT/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..421ea037 Binary files /dev/null and b/locale/pt_PT/LC_MESSAGES/scripts.mo differ diff --git a/locale/ro/LC_MESSAGES/scripts.mo b/locale/ro/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..2fda8855 Binary files /dev/null and b/locale/ro/LC_MESSAGES/scripts.mo differ diff --git a/locale/ru/LC_MESSAGES/scripts.mo b/locale/ru/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..6ac0e7d5 Binary files /dev/null and b/locale/ru/LC_MESSAGES/scripts.mo differ diff --git a/locale/sk/LC_MESSAGES/scripts.mo b/locale/sk/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..5e064c8d Binary files /dev/null and b/locale/sk/LC_MESSAGES/scripts.mo differ diff --git a/locale/sl/LC_MESSAGES/scripts.mo b/locale/sl/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..b9366f4c Binary files /dev/null and b/locale/sl/LC_MESSAGES/scripts.mo differ diff --git a/locale/sq/LC_MESSAGES/scripts.mo b/locale/sq/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..96944bbf Binary files /dev/null and b/locale/sq/LC_MESSAGES/scripts.mo differ diff --git a/locale/sv/LC_MESSAGES/scripts.mo b/locale/sv/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..238be443 Binary files /dev/null and b/locale/sv/LC_MESSAGES/scripts.mo differ diff --git a/locale/th/LC_MESSAGES/scripts.mo b/locale/th/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..7d7f799c Binary files /dev/null and b/locale/th/LC_MESSAGES/scripts.mo differ diff --git a/locale/zh_CN/LC_MESSAGES/scripts.mo b/locale/zh_CN/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..671afbfc Binary files /dev/null and b/locale/zh_CN/LC_MESSAGES/scripts.mo differ diff --git a/locale/zh_TW/LC_MESSAGES/scripts.mo b/locale/zh_TW/LC_MESSAGES/scripts.mo new file mode 100644 index 00000000..a06bff3d Binary files /dev/null and b/locale/zh_TW/LC_MESSAGES/scripts.mo differ diff --git a/official/enfuse.lua b/official/enfuse.lua index a2ac3ec2..2b6e0067 100644 --- a/official/enfuse.lua +++ b/official/enfuse.lua @@ -44,7 +44,7 @@ local gettext = dt.gettext du.check_min_api_version("3.0.0", "enfuse") -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("enfuse",dt.configuration.config_dir..PS .. "lua" .. PS .. "locale" .. PS) +gettext.bindtextdomain("scripts",dt.configuration.config_dir..PS .. "lua" .. PS .. "locale" .. PS) local enf = {} enf.event_registered = false @@ -52,7 +52,7 @@ enf.module_installed = false enf.lib_widgets = {} local function _(msgid) - return gettext.dgettext("enfuse", msgid) + return gettext.dgettext("scripts", msgid) end local function install_module() diff --git a/tools/create_mo.sh b/tools/create_mo.sh new file mode 100644 index 00000000..0104ddf2 --- /dev/null +++ b/tools/create_mo.sh @@ -0,0 +1,2 @@ +#!/bin/bash +for i in `cat LINGUAS`; do msgcat --unique $i/*po -o ../../locale/$i/LC_MESSAGES/scripts.po ; msgfmt ../../locale/$i/LC_MESSAGES/scripts.po -o ../../locale/$i/LC_MESSAGES/scripts.mo ; rm ../../locale/$i/LC_MESSAGES/scripts.po ; done diff --git a/tools/executable_manager.lua b/tools/executable_manager.lua index db65dfa5..013c364c 100644 --- a/tools/executable_manager.lua +++ b/tools/executable_manager.lua @@ -38,7 +38,7 @@ local PS = dt.configuration.running_os == "windows" and "\\" or "/" local gettext = dt.gettext -gettext.bindtextdomain("executable_manager",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local exec_man = {} -- our own namespace exec_man.module_installed = false @@ -49,7 +49,7 @@ exec_man.event_registered = false -- - - - - - - - - - - - - - - - - - - - - - - - - - - - local function _(msg) - return gettext.dgettext("executable_manager", msg) + return gettext.dgettext("scripts", msg) end local function grep(file, pattern) diff --git a/tools/script_manager.lua b/tools/script_manager.lua index ecb4999d..9b1acd85 100644 --- a/tools/script_manager.lua +++ b/tools/script_manager.lua @@ -46,10 +46,10 @@ local gettext = dt.gettext -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("script_manager",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",dt.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("script_manager", msgid) + return gettext.dgettext("scripts", msgid) end collectgarbage("stop") @@ -123,7 +123,7 @@ local function install_scripts() local git = df.check_if_bin_exists("git") if not git then - dt.print("ERROR: git not found. Install or specify the location of the git executable.") + dt.print(_("ERROR: git not found. Install or specify the location of the git executable.")) return end @@ -145,7 +145,7 @@ local function update_scripts() local git = df.check_if_bin_exists("git") if not git then - dt.print("ERROR: git not found. Install or specify the location of the git executable.") + dt.print(_("ERROR: git not found. Install or specify the location of the git executable.")) return end @@ -255,7 +255,7 @@ local function get_script_doc(script) if description then return description else - return "No documentation available" + return _("No documentation available") end end @@ -264,9 +264,9 @@ local function activate(script, scriptname) local status, err = prequire(sm.script_paths[script]) if status then dt.preferences.write("script_manager", script, "bool", true) - dt.print("Loaded " .. scriptname) + dt.print(_("Loaded ") .. scriptname) else - dt.print(scriptname .. " failed to load") + dt.print(scriptname .. _(" failed to load")) dt.print_error("Error loading " .. scriptname) dt.print_error("Error message: " .. err) end @@ -281,7 +281,7 @@ local function deactivate(script, scriptname) dt.preferences.write("script_manager", script, "bool", false) dt.print_log("setting " .. scriptname .. " to not start") - dt.print(scriptname .. " will not be active when darktable is restarted") + dt.print(scriptname .. _(" will not be active when darktable is restarted")) end local function create_enable_disable_button(btext, sname, req) @@ -300,14 +300,15 @@ local function create_enable_disable_button(btext, sname, req) local starget = du.join({scat, target}, "/") dt.print_log("starget to activate is " .. starget) dt.print_log("target to activate is " .. target) - if action == "Enable" then +-- if action == "Enable" then + if not dt.preferences.read("script_manager", starget, "bool") then local status = activate(starget, target) if status then - self.label = "Disable " .. target + self.label = _("Disable ") .. target end else deactivate(starget, target) - self.label = "Enable " .. target + self.label = _("Enable ") .. target end end } @@ -353,7 +354,7 @@ local function load_script_stack() if sm.script_widgets[cat][index] then sm.script_widgets[cat][index] = nil end - sm.script_widgets[cat][index] = create_enable_disable_button("Enable ", sname, req) + sm.script_widgets[cat][index] = create_enable_disable_button(_("Enable "), sname, req) end end end @@ -400,8 +401,8 @@ local function build_scripts_block() -- set up the combobox for the categories sm.category_selector = dt.new_widget("combobox"){ - label = "Category", - tooltip = "Select the script category", + label = _( "Category"), + tooltip = _("Select the script category"), value = 1, "placeholder", changed_callback = function(self) local cnt = 1 @@ -419,7 +420,7 @@ local function build_scripts_block() if not sm.scripts then sm.scripts = dt.new_widget("box"){ orientation = "vertical", - dt.new_widget("label"){ label = "Scripts" }, + dt.new_widget("label"){ label = _("Scripts") }, sm.category_selector, sm.script_stack, } @@ -427,7 +428,7 @@ local function build_scripts_block() end local function insert_scripts_block() - table.insert(sm.main_menu_choices, "Enable/Disable Scripts") + table.insert(sm.main_menu_choices, _("Enable/Disable Scripts")) update_combobox_choices(sm.main_menu, sm.main_menu_choices, 1) sm.main_stack[#sm.main_stack + 1] = sm.scripts end @@ -459,7 +460,7 @@ local function install_module() if not sm.module_installed then dt.register_lib( "script_manager", -- Module name - "script manager", -- Visible name + _("script manager"), -- Visible name true, -- expandable false, -- resetable {[dt.gui.views.lighttable] = {"DT_UI_CONTAINER_PANEL_LEFT_CENTER", 0}}, -- containers @@ -561,17 +562,17 @@ sm.install_update_button = dt.new_widget("button"){ sm.git_managed = true sm.need_install = false self.label = _("update scripts") - dt.print(_("installed scripts from " .. sm.repository.text)) + dt.print(_("installed scripts from ") .. sm.repository.text) else - dt.print(_("Error installing scripts from " .. sm.repository.text)) + dt.print(_("Error installing scripts from ") .. sm.repository.text) end else local result = update_scripts() if result then --build_scripts_block() - dt.print(_("updated scripts from " .. sm.repository.text)) + dt.print(_("updated scripts from ") .. sm.repository.text) else - dt.print(_("Error updating scripts from " .. sm.repository.text)) + dt.print(_("Error updating scripts from ") .. sm.repository.text) end end end @@ -579,7 +580,7 @@ sm.install_update_button = dt.new_widget("button"){ if not sm.need_install then sm.reinstall_button = dt.new_widget("button"){ - label = "reinstall scripts", + label = _("reinstall scripts"), clicked_callback = function(self) sm.lua_repository = sm.repository.text dt.preferences.write("script_manager", "lua_repository", "string", sm.repository.text) @@ -590,12 +591,12 @@ if not sm.need_install then sm.have_scripts = true sm.git_managed = true sm.need_install = false - sm.install_update_button.label = "update scripts" - dt.print(_("reinstalled scripts from " .. sm.repository.text)) - dt.print_log(_("scripts reinstalled")) + sm.install_update_button.label = _("update scripts") + dt.print(_("reinstalled scripts from ") .. sm.repository.text) + dt.print_log("scripts reinstalled") else dt.print(_("ERROR: script reinstallation failed")) - dt.print_error(_("script reinstall failed")) + dt.print_error("script reinstall failed") end end } @@ -612,20 +613,20 @@ end sm.install_update_box = dt.new_widget("box"){ orientation = "vertical", - dt.new_widget("label"){ label = "Install/Update scripts" }, + dt.new_widget("label"){ label = _("Install/Update scripts") }, table.unpack(sm.install_update_widgets), } -table.insert(sm.main_menu_choices, "Install/Update Scripts") +table.insert(sm.main_menu_choices, _("Install/Update Scripts")) table.insert(sm.main_stack_items, sm.install_update_box) -- configuration items sm.repository_update = dt.new_widget("button"){ - label = "update", + label = _("update"), clicked_callback = function() dt.preferences.write("script_manager", "lua_repository", "string", sm.repository.text) - sm.install_update_button.label = "install" + sm.install_update_button.label = _("install") sm.install_update_button.sensitive = true sm.reinstall_button.sensitive = false sm.need_install = true @@ -633,11 +634,11 @@ sm.repository_update = dt.new_widget("button"){ } sm.repository_reset = dt.new_widget("button"){ - label = "reset", + label = _("reset"), clicked_callback = function() sm.repository.text = LUA_SCRIPT_REPO dt.preferences.write("script_manager", "lua_repository", "string", LUA_SCRIPT_REPO) - sm.install_update_button.label = "install" + sm.install_update_button.label = _("install") sm.install_update_button.sensitive = true sm.reinstall_button.sensitive = false sm.need_install = true @@ -655,8 +656,8 @@ sm.update_reset = dt.new_widget("box"){ -- this option won't be active until the repository version of this script is accepted sm.use_lua_scripts_version = dt.new_widget("check_button"){ - label = "Use lua scripts distributed version", - tooltip = "Use the standalone version (false) or the distributed version (true)", + label = _("Use lua scripts distributed version"), + tooltip = _("Use the standalone version (false) or the distributed version (true)"), value = dt.preferences.read("script_manager", "use_distro_version", "bool"), clicked_callback = function(self) if dt.preferences.read("script_manager", "use_distro_version", "bool") == self.value then @@ -670,8 +671,8 @@ sm.use_lua_scripts_version = dt.new_widget("check_button"){ -- link downloads to $HOME/downloads on linux and MacOS sm.link_downloads_directory = dt.new_widget("check_button"){ - label = "Link lua/downloads to $HOME/Downloads", - tooltip = "Linking the directories enables dropping a script in $HOME/downloads\nand having it recognized the next time darktable starts", + label = _("Link lua/downloads to $HOME/Downloads"), + tooltip = _("Linking the directories enables dropping a script in $HOME/downloads\nand having it recognized the next time darktable starts"), value = dt.preferences.read("script_manager", "link_downloads_directory", "bool"), clicked_callback = function(self) if dt.preferences.read("script_manager", "link_downloads_directory", "bool") == self.value then @@ -683,7 +684,7 @@ sm.link_downloads_directory = dt.new_widget("check_button"){ } sm.apply_configuration = dt.new_widget("button"){ - label = "Apply", + label = _("Apply"), sensitive = false, clicked_callback = function(self) dt.preferences.write("script_manager", "use_distro_version", "bool", sm.use_lua_scripts_version.value) @@ -722,12 +723,12 @@ sm.configuration_widgets[#sm.configuration_widgets + 1] = sm.apply_configuration sm.config_box = dt.new_widget("box"){ orientation = "vertical", - dt.new_widget("label") { label = "Configuration" }, + dt.new_widget("label") { label = _("Configuration") }, table.unpack(sm.configuration_widgets), } -table.insert(sm.main_menu_choices, "Configure") +table.insert(sm.main_menu_choices, _("Configure")) table.insert(sm.main_stack_items, sm.config_box) -- set up the outside stack for config, install/update, and download @@ -747,9 +748,9 @@ end -- make a combobox for the selector sm.main_menu = dt.new_widget("combobox"){ - label = "Action", - tooltip = "Select the action you want to perform", - value = 1, "No actions available", + label = _("Action"), + tooltip = _("Select the action you want to perform"), + value = 1, _("No actions available"), changed_callback = function(self) for pos,str in ipairs(sm.main_menu_choices) do if self.value == str then diff --git a/tools/update_translations.sh b/tools/update_translations.sh new file mode 100644 index 00000000..fbfb2664 --- /dev/null +++ b/tools/update_translations.sh @@ -0,0 +1,30 @@ +#!/bin/bash +find ../../ -name "*.lua" -print | xargs grep -l bindtextdomain > POTFILES.in + +for i in `cat LINGUAS` + do + if [[ ! -d $i ]] + then mkdir $i + fi + for j in `cat POTFILES.in` + do + if [[ -e $i/`basename $j .lua`.po ]] + then + po=`basename $j .lua`.po + if [[ `stat -c %Y $j` -gt `stat -c %Y $i/$po` ]] + then + xgettext -L lua --from-code=UTF-8 -j $j -o $i/`basename $j .lua`.po + fi + else + xgettext -L lua --from-code=UTF-8 $j -o $i/`basename $j .lua`.po + fi + done +done +for i in `cat LINGUAS` + do + perl -p -i -e 's/PACKAGE VERSION/darktable lua-scripts/' $i/* + perl -p -i -e "s/guage: \\\n/guage: $i\\\n/" $i/* + perl -p -i -e 's/CHARSET/UTF-8/' $i/* +done + +rm -f POTFILES.in