From d4565acf457f06e7433bdf0cad787a0999732a9b Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Mon, 17 Aug 2020 23:21:47 -0400 Subject: [PATCH 1/7] Added translation to autostyle.lua. Trying locale/de/ instead of local/de_DE/ for german translation messages --- contrib/autostyle.lua | 36 +++++++---- locale/de/LC_MESSAGES/autostyle.po | 96 ++++++++++++++++++++++++++++++ 2 files changed, 119 insertions(+), 13 deletions(-) create mode 100644 locale/de/LC_MESSAGES/autostyle.po diff --git a/contrib/autostyle.lua b/contrib/autostyle.lua index 0b3891ff..54f71128 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 = dt.gettext + + +-- Tell gettext where to find the .mo file translating messages for a particular domain +gettext.bindtextdomain("autostyle",dt.configuration.config_dir.."/lua/locale/") + +local function _(msgid) + return gettext.dgettext("autostyle", 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/locale/de/LC_MESSAGES/autostyle.po b/locale/de/LC_MESSAGES/autostyle.po new file mode 100644 index 00000000..7dece564 --- /dev/null +++ b/locale/de/LC_MESSAGES/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: PACKAGE VERSION\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: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\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 "" From b487ebf82b5472162910c33eb1e3df2625b725b3 Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Sat, 22 Aug 2020 23:36:46 -0400 Subject: [PATCH 2/7] THIS IS A WORK IN PROGRESS!! Took the LINGUAS file from darktable so that the lua-scripts translations are for the same languages as darktable. Created a data/po directory to contain the translation files. Decided to keep the one file per script instead of one huge file. That way the scripts can be translated one at a time if necessary keeping the work small and manageable. The locale directory now contains a directory for each language contained in the LINGUAS file. Underneath that is an LC_MESSAGES directory and under that a scripts.mo file. To automate maintenance of the translations I created some tools tools/create_potfiles.sh is a bash script run from the data/po directory that scans all the scripts looking for the bindtextdomain keyword and adding the script filename to the POTFILES.in file. tools/update_po_files.sh creates the translation po file for a script, in all the language directories, for a script if it doesn't have a po file. If the po file is already there, then any new changes are merged with the existing po file. tools/fix_header.sh changes the PACKAGE, CHARSET, and Language fields in the po file to darktable lua-scripts, UTF-8, and the language code. tools/create_mo.sh merges the translation po files into one file and then creates the binary mo file from that. --- contrib/AutoGrouper.lua | 4 +- contrib/CollectHelper.lua | 4 +- contrib/HDRMerge.lua | 4 +- contrib/OpenInExplorer.lua | 4 +- contrib/RL_out_sharp.lua | 6 +- contrib/autostyle.lua | 6 +- contrib/clear_GPS.lua | 4 +- contrib/copy_attach_detach_tags.lua | 4 +- contrib/enfuseAdvanced.lua | 4 +- contrib/exportLUT.lua | 4 +- contrib/ext_editor.lua | 4 +- contrib/face_recognition.lua | 4 +- contrib/fujifilm_ratings.lua | 4 +- contrib/geoJSON_export.lua | 4 +- contrib/geoToolbox.lua | 4 +- contrib/gimp.lua | 4 +- contrib/gpx_export.lua | 4 +- contrib/hugin.lua | 6 +- contrib/image_stack.lua | 4 +- contrib/image_time.lua | 4 +- contrib/kml_export.lua | 4 +- contrib/passport_guide.lua | 4 +- contrib/pdf_slideshow.lua | 4 +- contrib/photils.lua | 4 +- contrib/quicktag.lua | 4 +- contrib/select_untagged.lua | 4 +- contrib/slideshowMusic.lua | 4 +- contrib/transfer_hierarchy.lua | 4 +- contrib/video_ffmpeg.lua | 4 +- data/po/LINGUAS | 28 ++ data/po/POTFILES.in | 41 ++ data/po/af/AutoGrouper.po | 46 ++ data/po/af/CollectHelper.po | 89 ++++ data/po/af/HDRMerge.po | 154 ++++++ data/po/af/OpenInExplorer.po | 78 +++ data/po/af/RL_out_sharp.po | 74 +++ data/po/af/autostyle.po | 96 ++++ data/po/af/clear_GPS.po | 22 + data/po/af/copy_attach_detach_tags.po | 74 +++ data/po/af/darkroom_demo.po | 30 ++ data/po/af/dtutils.po | 58 +++ data/po/af/enfuse.po | 59 +++ data/po/af/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/af/executable_manager.po | 58 +++ data/po/af/exportLUT.po | 62 +++ data/po/af/ext_editor.po | 118 +++++ data/po/af/face_recognition.po | 138 ++++++ data/po/af/fujifilm_ratings.po | 34 ++ data/po/af/geoJSON_export.po | 73 +++ data/po/af/geoToolbox.po | 163 ++++++ data/po/af/gettextExample.po | 26 + data/po/af/gimp.po | 35 ++ data/po/af/gpx_export.po | 54 ++ data/po/af/hugin.po | 66 +++ data/po/af/image_stack.po | 248 ++++++++++ data/po/af/image_time.po | 243 +++++++++ data/po/af/kml_export.po | 88 ++++ data/po/af/lighttable_demo.po | 59 +++ data/po/af/moduleExample.po | 54 ++ data/po/af/multi_os.po | 34 ++ data/po/af/panels_demo.po | 46 ++ data/po/af/passport_guide.po | 22 + data/po/af/pdf_slideshow.po | 70 +++ data/po/af/photils.po | 91 ++++ data/po/af/quicktag.po | 82 ++++ data/po/af/script_manager.po | 66 +++ data/po/af/select_untagged.po | 30 ++ data/po/af/slideshowMusic.po | 34 ++ data/po/af/transfer_hierarchy.po | 73 +++ data/po/af/video_ffmpeg.po | 121 +++++ data/po/ca/AutoGrouper.po | 46 ++ data/po/ca/CollectHelper.po | 89 ++++ data/po/ca/HDRMerge.po | 154 ++++++ data/po/ca/OpenInExplorer.po | 78 +++ data/po/ca/RL_out_sharp.po | 74 +++ data/po/ca/autostyle.po | 96 ++++ data/po/ca/clear_GPS.po | 22 + data/po/ca/copy_attach_detach_tags.po | 74 +++ data/po/ca/darkroom_demo.po | 30 ++ data/po/ca/dtutils.po | 58 +++ data/po/ca/enfuse.po | 59 +++ data/po/ca/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/ca/executable_manager.po | 58 +++ data/po/ca/exportLUT.po | 62 +++ data/po/ca/ext_editor.po | 118 +++++ data/po/ca/face_recognition.po | 138 ++++++ data/po/ca/fujifilm_ratings.po | 34 ++ data/po/ca/geoJSON_export.po | 73 +++ data/po/ca/geoToolbox.po | 163 ++++++ data/po/ca/gettextExample.po | 26 + data/po/ca/gimp.po | 35 ++ data/po/ca/gpx_export.po | 54 ++ data/po/ca/hugin.po | 66 +++ data/po/ca/image_stack.po | 248 ++++++++++ data/po/ca/image_time.po | 243 +++++++++ data/po/ca/kml_export.po | 88 ++++ data/po/ca/lighttable_demo.po | 59 +++ data/po/ca/moduleExample.po | 54 ++ data/po/ca/multi_os.po | 34 ++ data/po/ca/panels_demo.po | 46 ++ data/po/ca/passport_guide.po | 22 + data/po/ca/pdf_slideshow.po | 70 +++ data/po/ca/photils.po | 91 ++++ data/po/ca/quicktag.po | 82 ++++ data/po/ca/script_manager.po | 66 +++ data/po/ca/select_untagged.po | 30 ++ data/po/ca/slideshowMusic.po | 34 ++ data/po/ca/transfer_hierarchy.po | 73 +++ data/po/ca/video_ffmpeg.po | 121 +++++ data/po/cs/AutoGrouper.po | 46 ++ data/po/cs/CollectHelper.po | 89 ++++ data/po/cs/HDRMerge.po | 154 ++++++ data/po/cs/OpenInExplorer.po | 78 +++ data/po/cs/RL_out_sharp.po | 74 +++ data/po/cs/autostyle.po | 96 ++++ data/po/cs/clear_GPS.po | 22 + data/po/cs/copy_attach_detach_tags.po | 74 +++ data/po/cs/darkroom_demo.po | 30 ++ data/po/cs/dtutils.po | 58 +++ data/po/cs/enfuse.po | 59 +++ data/po/cs/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/cs/executable_manager.po | 58 +++ data/po/cs/exportLUT.po | 62 +++ data/po/cs/ext_editor.po | 118 +++++ data/po/cs/face_recognition.po | 138 ++++++ data/po/cs/fujifilm_ratings.po | 34 ++ data/po/cs/geoJSON_export.po | 73 +++ data/po/cs/geoToolbox.po | 163 ++++++ data/po/cs/gettextExample.po | 26 + data/po/cs/gimp.po | 35 ++ data/po/cs/gpx_export.po | 54 ++ data/po/cs/hugin.po | 66 +++ data/po/cs/image_stack.po | 248 ++++++++++ data/po/cs/image_time.po | 243 +++++++++ data/po/cs/kml_export.po | 88 ++++ data/po/cs/lighttable_demo.po | 59 +++ data/po/cs/moduleExample.po | 54 ++ data/po/cs/multi_os.po | 34 ++ data/po/cs/panels_demo.po | 46 ++ data/po/cs/passport_guide.po | 22 + data/po/cs/pdf_slideshow.po | 70 +++ data/po/cs/photils.po | 91 ++++ data/po/cs/quicktag.po | 82 ++++ data/po/cs/script_manager.po | 66 +++ data/po/cs/select_untagged.po | 30 ++ data/po/cs/slideshowMusic.po | 34 ++ data/po/cs/transfer_hierarchy.po | 73 +++ data/po/cs/video_ffmpeg.po | 121 +++++ data/po/da/AutoGrouper.po | 46 ++ data/po/da/CollectHelper.po | 89 ++++ data/po/da/HDRMerge.po | 154 ++++++ data/po/da/OpenInExplorer.po | 78 +++ data/po/da/RL_out_sharp.po | 74 +++ data/po/da/autostyle.po | 96 ++++ data/po/da/clear_GPS.po | 22 + data/po/da/copy_attach_detach_tags.po | 74 +++ data/po/da/darkroom_demo.po | 30 ++ data/po/da/dtutils.po | 58 +++ data/po/da/enfuse.po | 59 +++ data/po/da/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/da/executable_manager.po | 58 +++ data/po/da/exportLUT.po | 62 +++ data/po/da/ext_editor.po | 118 +++++ data/po/da/face_recognition.po | 138 ++++++ data/po/da/fujifilm_ratings.po | 34 ++ data/po/da/geoJSON_export.po | 73 +++ data/po/da/geoToolbox.po | 163 ++++++ data/po/da/gettextExample.po | 26 + data/po/da/gimp.po | 35 ++ data/po/da/gpx_export.po | 54 ++ data/po/da/hugin.po | 66 +++ data/po/da/image_stack.po | 248 ++++++++++ data/po/da/image_time.po | 243 +++++++++ data/po/da/kml_export.po | 88 ++++ data/po/da/lighttable_demo.po | 59 +++ data/po/da/moduleExample.po | 54 ++ data/po/da/multi_os.po | 34 ++ data/po/da/panels_demo.po | 46 ++ data/po/da/passport_guide.po | 22 + data/po/da/pdf_slideshow.po | 70 +++ data/po/da/photils.po | 91 ++++ data/po/da/quicktag.po | 82 ++++ data/po/da/script_manager.po | 66 +++ data/po/da/select_untagged.po | 30 ++ data/po/da/slideshowMusic.po | 34 ++ data/po/da/transfer_hierarchy.po | 73 +++ data/po/da/video_ffmpeg.po | 121 +++++ data/po/de/AutoGrouper.po | 46 ++ data/po/de/CollectHelper.po | 89 ++++ data/po/de/HDRMerge.po | 154 ++++++ .../po/de}/OpenInExplorer.po | 2 +- data/po/de/RL_out_sharp.po | 74 +++ .../LC_MESSAGES => data/po/de}/autostyle.po | 6 +- .../LC_MESSAGES => data/po/de}/clear_GPS.po | 6 +- .../po/de}/copy_attach_detach_tags.po | 0 data/po/de/darkroom_demo.po | 30 ++ data/po/de/dtutils.po | 58 +++ data/po/de/enfuse.po | 59 +++ data/po/de/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/de/executable_manager.po | 58 +++ data/po/de/exportLUT.po | 62 +++ data/po/de/ext_editor.po | 118 +++++ data/po/de/face_recognition.po | 138 ++++++ data/po/de/fujifilm_ratings.po | 34 ++ data/po/de/geoJSON_export.po | 73 +++ data/po/de/geoToolbox.po | 163 ++++++ .../po/de}/gettextExample.po | 0 .../de_DE/LC_MESSAGES => data/po/de}/gimp.po | 28 +- data/po/de/gpx_export.po | 54 ++ .../de_DE/LC_MESSAGES => data/po/de}/hugin.po | 0 data/po/de/image_stack.po | 248 ++++++++++ data/po/de/image_time.po | 243 +++++++++ .../LC_MESSAGES => data/po/de}/kml_export.po | 0 data/po/de/lighttable_demo.po | 59 +++ data/po/de/moduleExample.po | 54 ++ data/po/de/multi_os.po | 34 ++ data/po/de/panels_demo.po | 46 ++ data/po/de/passport_guide.po | 22 + data/po/de/pdf_slideshow.po | 70 +++ .../LC_MESSAGES => data/po/de}/photils.po | 0 .../LC_MESSAGES => data/po/de}/quicktag.po | 0 data/po/de/script_manager.po | 66 +++ .../po/de}/select_untagged.po | 0 .../po/de}/slideshowMusic.po | 0 data/po/de/transfer_hierarchy.po | 73 +++ data/po/de/video_ffmpeg.po | 121 +++++ data/po/el/AutoGrouper.po | 46 ++ data/po/el/CollectHelper.po | 89 ++++ data/po/el/HDRMerge.po | 154 ++++++ data/po/el/OpenInExplorer.po | 78 +++ data/po/el/RL_out_sharp.po | 74 +++ data/po/el/autostyle.po | 96 ++++ data/po/el/clear_GPS.po | 22 + data/po/el/copy_attach_detach_tags.po | 74 +++ data/po/el/darkroom_demo.po | 30 ++ data/po/el/dtutils.po | 58 +++ data/po/el/enfuse.po | 59 +++ data/po/el/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/el/executable_manager.po | 58 +++ data/po/el/exportLUT.po | 62 +++ data/po/el/ext_editor.po | 118 +++++ data/po/el/face_recognition.po | 138 ++++++ data/po/el/fujifilm_ratings.po | 34 ++ data/po/el/geoJSON_export.po | 73 +++ data/po/el/geoToolbox.po | 163 ++++++ data/po/el/gettextExample.po | 26 + data/po/el/gimp.po | 35 ++ data/po/el/gpx_export.po | 54 ++ data/po/el/hugin.po | 66 +++ data/po/el/image_stack.po | 248 ++++++++++ data/po/el/image_time.po | 243 +++++++++ data/po/el/kml_export.po | 88 ++++ data/po/el/lighttable_demo.po | 59 +++ data/po/el/moduleExample.po | 54 ++ data/po/el/multi_os.po | 34 ++ data/po/el/panels_demo.po | 46 ++ data/po/el/passport_guide.po | 22 + data/po/el/pdf_slideshow.po | 70 +++ data/po/el/photils.po | 91 ++++ data/po/el/quicktag.po | 82 ++++ data/po/el/script_manager.po | 66 +++ data/po/el/select_untagged.po | 30 ++ data/po/el/slideshowMusic.po | 34 ++ data/po/el/transfer_hierarchy.po | 73 +++ data/po/el/video_ffmpeg.po | 121 +++++ data/po/es/AutoGrouper.po | 46 ++ data/po/es/CollectHelper.po | 89 ++++ data/po/es/HDRMerge.po | 154 ++++++ data/po/es/OpenInExplorer.po | 78 +++ data/po/es/RL_out_sharp.po | 74 +++ data/po/es/autostyle.po | 96 ++++ data/po/es/clear_GPS.po | 22 + data/po/es/copy_attach_detach_tags.po | 74 +++ data/po/es/darkroom_demo.po | 30 ++ data/po/es/dtutils.po | 58 +++ data/po/es/enfuse.po | 59 +++ data/po/es/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/es/executable_manager.po | 58 +++ data/po/es/exportLUT.po | 62 +++ data/po/es/ext_editor.po | 118 +++++ data/po/es/face_recognition.po | 138 ++++++ data/po/es/fujifilm_ratings.po | 34 ++ data/po/es/geoJSON_export.po | 73 +++ data/po/es/geoToolbox.po | 163 ++++++ data/po/es/gettextExample.po | 26 + data/po/es/gimp.po | 35 ++ data/po/es/gpx_export.po | 54 ++ data/po/es/hugin.po | 66 +++ data/po/es/image_stack.po | 248 ++++++++++ data/po/es/image_time.po | 243 +++++++++ data/po/es/kml_export.po | 88 ++++ data/po/es/lighttable_demo.po | 59 +++ data/po/es/moduleExample.po | 54 ++ data/po/es/multi_os.po | 34 ++ data/po/es/panels_demo.po | 46 ++ data/po/es/passport_guide.po | 22 + data/po/es/pdf_slideshow.po | 70 +++ data/po/es/photils.po | 91 ++++ data/po/es/quicktag.po | 82 ++++ data/po/es/script_manager.po | 66 +++ data/po/es/select_untagged.po | 30 ++ data/po/es/slideshowMusic.po | 34 ++ data/po/es/transfer_hierarchy.po | 73 +++ data/po/es/video_ffmpeg.po | 121 +++++ data/po/fi/AutoGrouper.po | 46 ++ data/po/fi/CollectHelper.po | 89 ++++ data/po/fi/HDRMerge.po | 154 ++++++ data/po/fi/OpenInExplorer.po | 78 +++ data/po/fi/RL_out_sharp.po | 74 +++ data/po/fi/autostyle.po | 96 ++++ data/po/fi/clear_GPS.po | 22 + data/po/fi/copy_attach_detach_tags.po | 74 +++ data/po/fi/darkroom_demo.po | 30 ++ data/po/fi/dtutils.po | 58 +++ data/po/fi/enfuse.po | 59 +++ data/po/fi/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/fi/executable_manager.po | 58 +++ data/po/fi/exportLUT.po | 62 +++ data/po/fi/ext_editor.po | 118 +++++ data/po/fi/face_recognition.po | 138 ++++++ data/po/fi/fujifilm_ratings.po | 34 ++ data/po/fi/geoJSON_export.po | 73 +++ data/po/fi/geoToolbox.po | 163 ++++++ data/po/fi/gettextExample.po | 26 + data/po/fi/gimp.po | 35 ++ data/po/fi/gpx_export.po | 54 ++ data/po/fi/hugin.po | 66 +++ data/po/fi/image_stack.po | 248 ++++++++++ data/po/fi/image_time.po | 243 +++++++++ data/po/fi/kml_export.po | 88 ++++ data/po/fi/lighttable_demo.po | 59 +++ data/po/fi/moduleExample.po | 54 ++ data/po/fi/multi_os.po | 34 ++ data/po/fi/panels_demo.po | 46 ++ data/po/fi/passport_guide.po | 22 + data/po/fi/pdf_slideshow.po | 70 +++ data/po/fi/photils.po | 91 ++++ data/po/fi/quicktag.po | 82 ++++ data/po/fi/script_manager.po | 66 +++ data/po/fi/select_untagged.po | 30 ++ data/po/fi/slideshowMusic.po | 34 ++ data/po/fi/transfer_hierarchy.po | 73 +++ data/po/fi/video_ffmpeg.po | 121 +++++ data/po/fr/AutoGrouper.po | 46 ++ data/po/fr/CollectHelper.po | 89 ++++ data/po/fr/HDRMerge.po | 154 ++++++ data/po/fr/OpenInExplorer.po | 78 +++ data/po/fr/RL_out_sharp.po | 74 +++ data/po/fr/autostyle.po | 96 ++++ .../LC_MESSAGES => data/po/fr}/clear_GPS.po | 0 data/po/fr/copy_attach_detach_tags.po | 74 +++ data/po/fr/darkroom_demo.po | 30 ++ data/po/fr/dtutils.po | 58 +++ data/po/fr/enfuse.po | 59 +++ data/po/fr/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/fr/executable_manager.po | 58 +++ data/po/fr/exportLUT.po | 62 +++ data/po/fr/ext_editor.po | 118 +++++ data/po/fr/face_recognition.po | 138 ++++++ data/po/fr/fujifilm_ratings.po | 34 ++ data/po/fr/geoJSON_export.po | 73 +++ data/po/fr/geoToolbox.po | 163 ++++++ data/po/fr/gettextExample.po | 26 + .../fr_FR/LC_MESSAGES => data/po/fr}/gimp.po | 0 data/po/fr/gpx_export.po | 54 ++ .../fr_FR/LC_MESSAGES => data/po/fr}/hugin.po | 0 data/po/fr/image_stack.po | 248 ++++++++++ data/po/fr/image_time.po | 243 +++++++++ .../LC_MESSAGES => data/po/fr}/kml_export.po | 0 data/po/fr/lighttable_demo.po | 59 +++ data/po/fr/moduleExample.po | 54 ++ data/po/fr/multi_os.po | 34 ++ data/po/fr/panels_demo.po | 46 ++ data/po/fr/passport_guide.po | 22 + .../po/fr}/pdf_slideshow.po | 0 data/po/fr/photils.po | 91 ++++ data/po/fr/quicktag.po | 82 ++++ data/po/fr/script_manager.po | 66 +++ .../po/fr}/select_untagged.po | 0 .../po/fr}/slideshowMusic.po | 0 data/po/fr/transfer_hierarchy.po | 73 +++ data/po/fr/video_ffmpeg.po | 121 +++++ data/po/gl/AutoGrouper.po | 46 ++ data/po/gl/CollectHelper.po | 89 ++++ data/po/gl/HDRMerge.po | 154 ++++++ data/po/gl/OpenInExplorer.po | 78 +++ data/po/gl/RL_out_sharp.po | 74 +++ data/po/gl/autostyle.po | 96 ++++ data/po/gl/clear_GPS.po | 22 + data/po/gl/copy_attach_detach_tags.po | 74 +++ data/po/gl/darkroom_demo.po | 30 ++ data/po/gl/dtutils.po | 58 +++ data/po/gl/enfuse.po | 59 +++ data/po/gl/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/gl/executable_manager.po | 58 +++ data/po/gl/exportLUT.po | 62 +++ data/po/gl/ext_editor.po | 118 +++++ data/po/gl/face_recognition.po | 138 ++++++ data/po/gl/fujifilm_ratings.po | 34 ++ data/po/gl/geoJSON_export.po | 73 +++ data/po/gl/geoToolbox.po | 163 ++++++ data/po/gl/gettextExample.po | 26 + data/po/gl/gimp.po | 35 ++ data/po/gl/gpx_export.po | 54 ++ data/po/gl/hugin.po | 66 +++ data/po/gl/image_stack.po | 248 ++++++++++ data/po/gl/image_time.po | 243 +++++++++ data/po/gl/kml_export.po | 88 ++++ data/po/gl/lighttable_demo.po | 59 +++ data/po/gl/moduleExample.po | 54 ++ data/po/gl/multi_os.po | 34 ++ data/po/gl/panels_demo.po | 46 ++ data/po/gl/passport_guide.po | 22 + data/po/gl/pdf_slideshow.po | 70 +++ data/po/gl/photils.po | 91 ++++ data/po/gl/quicktag.po | 82 ++++ data/po/gl/script_manager.po | 66 +++ data/po/gl/select_untagged.po | 30 ++ data/po/gl/slideshowMusic.po | 34 ++ data/po/gl/transfer_hierarchy.po | 73 +++ data/po/gl/video_ffmpeg.po | 121 +++++ data/po/he/AutoGrouper.po | 46 ++ data/po/he/CollectHelper.po | 89 ++++ data/po/he/HDRMerge.po | 154 ++++++ data/po/he/OpenInExplorer.po | 78 +++ data/po/he/RL_out_sharp.po | 74 +++ data/po/he/autostyle.po | 96 ++++ data/po/he/clear_GPS.po | 22 + data/po/he/copy_attach_detach_tags.po | 74 +++ data/po/he/darkroom_demo.po | 30 ++ data/po/he/dtutils.po | 58 +++ data/po/he/enfuse.po | 59 +++ data/po/he/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/he/executable_manager.po | 58 +++ data/po/he/exportLUT.po | 62 +++ data/po/he/ext_editor.po | 118 +++++ data/po/he/face_recognition.po | 138 ++++++ data/po/he/fujifilm_ratings.po | 34 ++ data/po/he/geoJSON_export.po | 73 +++ data/po/he/geoToolbox.po | 163 ++++++ data/po/he/gettextExample.po | 26 + data/po/he/gimp.po | 35 ++ data/po/he/gpx_export.po | 54 ++ data/po/he/hugin.po | 66 +++ data/po/he/image_stack.po | 248 ++++++++++ data/po/he/image_time.po | 243 +++++++++ data/po/he/kml_export.po | 88 ++++ data/po/he/lighttable_demo.po | 59 +++ data/po/he/moduleExample.po | 54 ++ data/po/he/multi_os.po | 34 ++ data/po/he/panels_demo.po | 46 ++ data/po/he/passport_guide.po | 22 + data/po/he/pdf_slideshow.po | 70 +++ data/po/he/photils.po | 91 ++++ data/po/he/quicktag.po | 82 ++++ data/po/he/script_manager.po | 66 +++ data/po/he/select_untagged.po | 30 ++ data/po/he/slideshowMusic.po | 34 ++ data/po/he/transfer_hierarchy.po | 73 +++ data/po/he/video_ffmpeg.po | 121 +++++ data/po/hu/AutoGrouper.po | 46 ++ data/po/hu/CollectHelper.po | 89 ++++ data/po/hu/HDRMerge.po | 154 ++++++ data/po/hu/OpenInExplorer.po | 78 +++ data/po/hu/RL_out_sharp.po | 74 +++ data/po/hu/autostyle.po | 96 ++++ data/po/hu/clear_GPS.po | 22 + data/po/hu/copy_attach_detach_tags.po | 74 +++ data/po/hu/darkroom_demo.po | 30 ++ data/po/hu/dtutils.po | 58 +++ data/po/hu/enfuse.po | 59 +++ data/po/hu/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/hu/executable_manager.po | 58 +++ data/po/hu/exportLUT.po | 62 +++ data/po/hu/ext_editor.po | 118 +++++ data/po/hu/face_recognition.po | 138 ++++++ data/po/hu/fujifilm_ratings.po | 34 ++ data/po/hu/geoJSON_export.po | 73 +++ data/po/hu/geoToolbox.po | 163 ++++++ data/po/hu/gettextExample.po | 26 + data/po/hu/gimp.po | 35 ++ data/po/hu/gpx_export.po | 54 ++ data/po/hu/hugin.po | 66 +++ data/po/hu/image_stack.po | 248 ++++++++++ data/po/hu/image_time.po | 243 +++++++++ data/po/hu/kml_export.po | 88 ++++ data/po/hu/lighttable_demo.po | 59 +++ data/po/hu/moduleExample.po | 54 ++ data/po/hu/multi_os.po | 34 ++ data/po/hu/panels_demo.po | 46 ++ data/po/hu/passport_guide.po | 22 + data/po/hu/pdf_slideshow.po | 70 +++ data/po/hu/photils.po | 91 ++++ data/po/hu/quicktag.po | 82 ++++ data/po/hu/script_manager.po | 66 +++ data/po/hu/select_untagged.po | 30 ++ data/po/hu/slideshowMusic.po | 34 ++ data/po/hu/transfer_hierarchy.po | 73 +++ data/po/hu/video_ffmpeg.po | 121 +++++ data/po/it/AutoGrouper.po | 46 ++ data/po/it/CollectHelper.po | 89 ++++ data/po/it/HDRMerge.po | 154 ++++++ data/po/it/OpenInExplorer.po | 78 +++ data/po/it/RL_out_sharp.po | 74 +++ data/po/it/autostyle.po | 96 ++++ data/po/it/clear_GPS.po | 22 + data/po/it/copy_attach_detach_tags.po | 74 +++ data/po/it/darkroom_demo.po | 30 ++ data/po/it/dtutils.po | 58 +++ data/po/it/enfuse.po | 59 +++ data/po/it/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/it/executable_manager.po | 58 +++ data/po/it/exportLUT.po | 62 +++ .../LC_MESSAGES => data/po/it}/ext_editor.po | 0 data/po/it/face_recognition.po | 138 ++++++ data/po/it/fujifilm_ratings.po | 34 ++ data/po/it/geoJSON_export.po | 73 +++ data/po/it/geoToolbox.po | 163 ++++++ data/po/it/gettextExample.po | 26 + data/po/it/gimp.po | 35 ++ data/po/it/gpx_export.po | 54 ++ data/po/it/hugin.po | 66 +++ data/po/it/image_stack.po | 248 ++++++++++ data/po/it/image_time.po | 243 +++++++++ data/po/it/kml_export.po | 88 ++++ data/po/it/lighttable_demo.po | 59 +++ data/po/it/moduleExample.po | 54 ++ data/po/it/multi_os.po | 34 ++ data/po/it/panels_demo.po | 46 ++ data/po/it/passport_guide.po | 22 + data/po/it/pdf_slideshow.po | 70 +++ data/po/it/photils.po | 91 ++++ data/po/it/quicktag.po | 82 ++++ data/po/it/script_manager.po | 66 +++ data/po/it/select_untagged.po | 30 ++ data/po/it/slideshowMusic.po | 34 ++ data/po/it/transfer_hierarchy.po | 73 +++ data/po/it/video_ffmpeg.po | 121 +++++ data/po/ja/AutoGrouper.po | 46 ++ data/po/ja/CollectHelper.po | 89 ++++ data/po/ja/HDRMerge.po | 154 ++++++ data/po/ja/OpenInExplorer.po | 78 +++ data/po/ja/RL_out_sharp.po | 74 +++ data/po/ja/autostyle.po | 96 ++++ data/po/ja/clear_GPS.po | 22 + data/po/ja/copy_attach_detach_tags.po | 74 +++ data/po/ja/darkroom_demo.po | 30 ++ data/po/ja/dtutils.po | 58 +++ data/po/ja/enfuse.po | 59 +++ data/po/ja/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/ja/executable_manager.po | 58 +++ data/po/ja/exportLUT.po | 62 +++ data/po/ja/ext_editor.po | 118 +++++ data/po/ja/face_recognition.po | 138 ++++++ data/po/ja/fujifilm_ratings.po | 34 ++ data/po/ja/geoJSON_export.po | 73 +++ data/po/ja/geoToolbox.po | 163 ++++++ data/po/ja/gettextExample.po | 26 + data/po/ja/gimp.po | 35 ++ data/po/ja/gpx_export.po | 54 ++ data/po/ja/hugin.po | 66 +++ data/po/ja/image_stack.po | 248 ++++++++++ data/po/ja/image_time.po | 243 +++++++++ data/po/ja/kml_export.po | 88 ++++ data/po/ja/lighttable_demo.po | 59 +++ data/po/ja/moduleExample.po | 54 ++ data/po/ja/multi_os.po | 34 ++ data/po/ja/panels_demo.po | 46 ++ data/po/ja/passport_guide.po | 22 + data/po/ja/pdf_slideshow.po | 70 +++ data/po/ja/photils.po | 91 ++++ data/po/ja/quicktag.po | 82 ++++ data/po/ja/script_manager.po | 66 +++ data/po/ja/select_untagged.po | 30 ++ data/po/ja/slideshowMusic.po | 34 ++ data/po/ja/transfer_hierarchy.po | 73 +++ data/po/ja/video_ffmpeg.po | 121 +++++ data/po/nb/AutoGrouper.po | 46 ++ data/po/nb/CollectHelper.po | 89 ++++ data/po/nb/HDRMerge.po | 154 ++++++ data/po/nb/OpenInExplorer.po | 78 +++ data/po/nb/RL_out_sharp.po | 74 +++ data/po/nb/autostyle.po | 96 ++++ data/po/nb/clear_GPS.po | 22 + data/po/nb/copy_attach_detach_tags.po | 74 +++ data/po/nb/darkroom_demo.po | 30 ++ data/po/nb/dtutils.po | 58 +++ data/po/nb/enfuse.po | 59 +++ data/po/nb/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/nb/executable_manager.po | 58 +++ data/po/nb/exportLUT.po | 62 +++ data/po/nb/ext_editor.po | 118 +++++ data/po/nb/face_recognition.po | 138 ++++++ data/po/nb/fujifilm_ratings.po | 34 ++ data/po/nb/geoJSON_export.po | 73 +++ data/po/nb/geoToolbox.po | 163 ++++++ data/po/nb/gettextExample.po | 26 + data/po/nb/gimp.po | 35 ++ data/po/nb/gpx_export.po | 54 ++ data/po/nb/hugin.po | 66 +++ data/po/nb/image_stack.po | 248 ++++++++++ data/po/nb/image_time.po | 243 +++++++++ data/po/nb/kml_export.po | 88 ++++ data/po/nb/lighttable_demo.po | 59 +++ data/po/nb/moduleExample.po | 54 ++ data/po/nb/multi_os.po | 34 ++ data/po/nb/panels_demo.po | 46 ++ data/po/nb/passport_guide.po | 22 + data/po/nb/pdf_slideshow.po | 70 +++ data/po/nb/photils.po | 91 ++++ data/po/nb/quicktag.po | 82 ++++ data/po/nb/script_manager.po | 66 +++ data/po/nb/select_untagged.po | 30 ++ data/po/nb/slideshowMusic.po | 34 ++ data/po/nb/transfer_hierarchy.po | 73 +++ data/po/nb/video_ffmpeg.po | 121 +++++ data/po/nl/AutoGrouper.po | 46 ++ data/po/nl/CollectHelper.po | 89 ++++ data/po/nl/HDRMerge.po | 154 ++++++ data/po/nl/OpenInExplorer.po | 78 +++ data/po/nl/RL_out_sharp.po | 74 +++ data/po/nl/autostyle.po | 96 ++++ data/po/nl/clear_GPS.po | 22 + data/po/nl/copy_attach_detach_tags.po | 74 +++ data/po/nl/darkroom_demo.po | 30 ++ data/po/nl/dtutils.po | 58 +++ data/po/nl/enfuse.po | 59 +++ data/po/nl/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/nl/executable_manager.po | 58 +++ data/po/nl/exportLUT.po | 62 +++ data/po/nl/ext_editor.po | 118 +++++ data/po/nl/face_recognition.po | 138 ++++++ data/po/nl/fujifilm_ratings.po | 34 ++ data/po/nl/geoJSON_export.po | 73 +++ data/po/nl/geoToolbox.po | 163 ++++++ data/po/nl/gettextExample.po | 26 + data/po/nl/gimp.po | 35 ++ data/po/nl/gpx_export.po | 54 ++ data/po/nl/hugin.po | 66 +++ data/po/nl/image_stack.po | 248 ++++++++++ data/po/nl/image_time.po | 243 +++++++++ data/po/nl/kml_export.po | 88 ++++ data/po/nl/lighttable_demo.po | 59 +++ data/po/nl/moduleExample.po | 54 ++ data/po/nl/multi_os.po | 34 ++ data/po/nl/panels_demo.po | 46 ++ data/po/nl/passport_guide.po | 22 + data/po/nl/pdf_slideshow.po | 70 +++ data/po/nl/photils.po | 91 ++++ data/po/nl/quicktag.po | 82 ++++ data/po/nl/script_manager.po | 66 +++ data/po/nl/select_untagged.po | 30 ++ data/po/nl/slideshowMusic.po | 34 ++ data/po/nl/transfer_hierarchy.po | 73 +++ data/po/nl/video_ffmpeg.po | 121 +++++ data/po/pl/AutoGrouper.po | 46 ++ data/po/pl/CollectHelper.po | 89 ++++ data/po/pl/HDRMerge.po | 154 ++++++ data/po/pl/OpenInExplorer.po | 78 +++ data/po/pl/RL_out_sharp.po | 74 +++ data/po/pl/autostyle.po | 96 ++++ data/po/pl/clear_GPS.po | 22 + data/po/pl/copy_attach_detach_tags.po | 74 +++ data/po/pl/darkroom_demo.po | 30 ++ data/po/pl/dtutils.po | 58 +++ data/po/pl/enfuse.po | 59 +++ data/po/pl/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/pl/executable_manager.po | 58 +++ data/po/pl/exportLUT.po | 62 +++ data/po/pl/ext_editor.po | 118 +++++ data/po/pl/face_recognition.po | 138 ++++++ data/po/pl/fujifilm_ratings.po | 34 ++ data/po/pl/geoJSON_export.po | 73 +++ data/po/pl/geoToolbox.po | 163 ++++++ data/po/pl/gettextExample.po | 26 + data/po/pl/gimp.po | 35 ++ data/po/pl/gpx_export.po | 54 ++ data/po/pl/hugin.po | 66 +++ data/po/pl/image_stack.po | 248 ++++++++++ data/po/pl/image_time.po | 243 +++++++++ data/po/pl/kml_export.po | 88 ++++ data/po/pl/lighttable_demo.po | 59 +++ data/po/pl/moduleExample.po | 54 ++ data/po/pl/multi_os.po | 34 ++ data/po/pl/panels_demo.po | 46 ++ data/po/pl/passport_guide.po | 22 + data/po/pl/pdf_slideshow.po | 70 +++ data/po/pl/photils.po | 91 ++++ data/po/pl/quicktag.po | 82 ++++ data/po/pl/script_manager.po | 66 +++ data/po/pl/select_untagged.po | 30 ++ data/po/pl/slideshowMusic.po | 34 ++ data/po/pl/transfer_hierarchy.po | 73 +++ data/po/pl/video_ffmpeg.po | 121 +++++ data/po/pt_BR/AutoGrouper.po | 46 ++ data/po/pt_BR/CollectHelper.po | 89 ++++ data/po/pt_BR/HDRMerge.po | 154 ++++++ data/po/pt_BR/OpenInExplorer.po | 78 +++ data/po/pt_BR/RL_out_sharp.po | 74 +++ data/po/pt_BR/autostyle.po | 96 ++++ data/po/pt_BR/clear_GPS.po | 22 + data/po/pt_BR/copy_attach_detach_tags.po | 74 +++ data/po/pt_BR/darkroom_demo.po | 30 ++ data/po/pt_BR/dtutils.po | 58 +++ data/po/pt_BR/enfuse.po | 59 +++ data/po/pt_BR/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/pt_BR/executable_manager.po | 58 +++ data/po/pt_BR/exportLUT.po | 62 +++ data/po/pt_BR/ext_editor.po | 118 +++++ data/po/pt_BR/face_recognition.po | 138 ++++++ data/po/pt_BR/fujifilm_ratings.po | 34 ++ data/po/pt_BR/geoJSON_export.po | 73 +++ data/po/pt_BR/geoToolbox.po | 163 ++++++ data/po/pt_BR/gettextExample.po | 26 + data/po/pt_BR/gimp.po | 35 ++ data/po/pt_BR/gpx_export.po | 54 ++ data/po/pt_BR/hugin.po | 66 +++ data/po/pt_BR/image_stack.po | 248 ++++++++++ data/po/pt_BR/image_time.po | 243 +++++++++ data/po/pt_BR/kml_export.po | 88 ++++ data/po/pt_BR/lighttable_demo.po | 59 +++ data/po/pt_BR/moduleExample.po | 54 ++ data/po/pt_BR/multi_os.po | 34 ++ data/po/pt_BR/panels_demo.po | 46 ++ data/po/pt_BR/passport_guide.po | 22 + data/po/pt_BR/pdf_slideshow.po | 70 +++ data/po/pt_BR/photils.po | 91 ++++ data/po/pt_BR/quicktag.po | 82 ++++ data/po/pt_BR/script_manager.po | 66 +++ data/po/pt_BR/select_untagged.po | 30 ++ data/po/pt_BR/slideshowMusic.po | 34 ++ data/po/pt_BR/transfer_hierarchy.po | 73 +++ data/po/pt_BR/video_ffmpeg.po | 121 +++++ data/po/pt_PT/AutoGrouper.po | 46 ++ data/po/pt_PT/CollectHelper.po | 89 ++++ data/po/pt_PT/HDRMerge.po | 154 ++++++ data/po/pt_PT/OpenInExplorer.po | 78 +++ data/po/pt_PT/RL_out_sharp.po | 74 +++ data/po/pt_PT/autostyle.po | 96 ++++ data/po/pt_PT/clear_GPS.po | 22 + data/po/pt_PT/copy_attach_detach_tags.po | 74 +++ data/po/pt_PT/darkroom_demo.po | 30 ++ data/po/pt_PT/dtutils.po | 58 +++ data/po/pt_PT/enfuse.po | 59 +++ data/po/pt_PT/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/pt_PT/executable_manager.po | 58 +++ data/po/pt_PT/exportLUT.po | 62 +++ data/po/pt_PT/ext_editor.po | 118 +++++ data/po/pt_PT/face_recognition.po | 138 ++++++ data/po/pt_PT/fujifilm_ratings.po | 34 ++ data/po/pt_PT/geoJSON_export.po | 73 +++ data/po/pt_PT/geoToolbox.po | 163 ++++++ data/po/pt_PT/gettextExample.po | 26 + data/po/pt_PT/gimp.po | 35 ++ data/po/pt_PT/gpx_export.po | 54 ++ data/po/pt_PT/hugin.po | 66 +++ data/po/pt_PT/image_stack.po | 248 ++++++++++ data/po/pt_PT/image_time.po | 243 +++++++++ data/po/pt_PT/kml_export.po | 88 ++++ data/po/pt_PT/lighttable_demo.po | 59 +++ data/po/pt_PT/moduleExample.po | 54 ++ data/po/pt_PT/multi_os.po | 34 ++ data/po/pt_PT/panels_demo.po | 46 ++ data/po/pt_PT/passport_guide.po | 22 + data/po/pt_PT/pdf_slideshow.po | 70 +++ data/po/pt_PT/photils.po | 91 ++++ data/po/pt_PT/quicktag.po | 82 ++++ data/po/pt_PT/script_manager.po | 66 +++ data/po/pt_PT/select_untagged.po | 30 ++ data/po/pt_PT/slideshowMusic.po | 34 ++ data/po/pt_PT/transfer_hierarchy.po | 73 +++ data/po/pt_PT/video_ffmpeg.po | 121 +++++ data/po/ro/AutoGrouper.po | 46 ++ data/po/ro/CollectHelper.po | 89 ++++ data/po/ro/HDRMerge.po | 154 ++++++ data/po/ro/OpenInExplorer.po | 78 +++ data/po/ro/RL_out_sharp.po | 74 +++ data/po/ro/autostyle.po | 96 ++++ data/po/ro/clear_GPS.po | 22 + data/po/ro/copy_attach_detach_tags.po | 74 +++ data/po/ro/darkroom_demo.po | 30 ++ data/po/ro/dtutils.po | 58 +++ data/po/ro/enfuse.po | 59 +++ data/po/ro/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/ro/executable_manager.po | 58 +++ data/po/ro/exportLUT.po | 62 +++ data/po/ro/ext_editor.po | 118 +++++ data/po/ro/face_recognition.po | 138 ++++++ data/po/ro/fujifilm_ratings.po | 34 ++ data/po/ro/geoJSON_export.po | 73 +++ data/po/ro/geoToolbox.po | 163 ++++++ data/po/ro/gettextExample.po | 26 + data/po/ro/gimp.po | 35 ++ data/po/ro/gpx_export.po | 54 ++ data/po/ro/hugin.po | 66 +++ data/po/ro/image_stack.po | 248 ++++++++++ data/po/ro/image_time.po | 243 +++++++++ data/po/ro/kml_export.po | 88 ++++ data/po/ro/lighttable_demo.po | 59 +++ data/po/ro/moduleExample.po | 54 ++ data/po/ro/multi_os.po | 34 ++ data/po/ro/panels_demo.po | 46 ++ data/po/ro/passport_guide.po | 22 + data/po/ro/pdf_slideshow.po | 70 +++ data/po/ro/photils.po | 91 ++++ data/po/ro/quicktag.po | 82 ++++ data/po/ro/script_manager.po | 66 +++ data/po/ro/select_untagged.po | 30 ++ data/po/ro/slideshowMusic.po | 34 ++ data/po/ro/transfer_hierarchy.po | 73 +++ data/po/ro/video_ffmpeg.po | 121 +++++ data/po/ru/AutoGrouper.po | 46 ++ data/po/ru/CollectHelper.po | 89 ++++ data/po/ru/HDRMerge.po | 154 ++++++ data/po/ru/OpenInExplorer.po | 78 +++ data/po/ru/RL_out_sharp.po | 74 +++ data/po/ru/autostyle.po | 96 ++++ data/po/ru/clear_GPS.po | 22 + data/po/ru/copy_attach_detach_tags.po | 74 +++ data/po/ru/darkroom_demo.po | 30 ++ data/po/ru/dtutils.po | 58 +++ data/po/ru/enfuse.po | 59 +++ data/po/ru/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/ru/executable_manager.po | 58 +++ data/po/ru/exportLUT.po | 62 +++ data/po/ru/ext_editor.po | 118 +++++ data/po/ru/face_recognition.po | 138 ++++++ data/po/ru/fujifilm_ratings.po | 34 ++ data/po/ru/geoJSON_export.po | 73 +++ data/po/ru/geoToolbox.po | 163 ++++++ data/po/ru/gettextExample.po | 26 + data/po/ru/gimp.po | 35 ++ data/po/ru/gpx_export.po | 54 ++ data/po/ru/hugin.po | 66 +++ data/po/ru/image_stack.po | 248 ++++++++++ data/po/ru/image_time.po | 243 +++++++++ data/po/ru/kml_export.po | 88 ++++ data/po/ru/lighttable_demo.po | 59 +++ data/po/ru/moduleExample.po | 54 ++ data/po/ru/multi_os.po | 34 ++ data/po/ru/panels_demo.po | 46 ++ data/po/ru/passport_guide.po | 22 + data/po/ru/pdf_slideshow.po | 70 +++ data/po/ru/photils.po | 91 ++++ data/po/ru/quicktag.po | 82 ++++ data/po/ru/script_manager.po | 66 +++ data/po/ru/select_untagged.po | 30 ++ data/po/ru/slideshowMusic.po | 34 ++ data/po/ru/transfer_hierarchy.po | 73 +++ data/po/ru/video_ffmpeg.po | 121 +++++ data/po/sk/AutoGrouper.po | 46 ++ data/po/sk/CollectHelper.po | 89 ++++ data/po/sk/HDRMerge.po | 154 ++++++ data/po/sk/OpenInExplorer.po | 78 +++ data/po/sk/RL_out_sharp.po | 74 +++ data/po/sk/autostyle.po | 96 ++++ data/po/sk/clear_GPS.po | 22 + data/po/sk/copy_attach_detach_tags.po | 74 +++ data/po/sk/darkroom_demo.po | 30 ++ data/po/sk/dtutils.po | 58 +++ data/po/sk/enfuse.po | 59 +++ data/po/sk/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/sk/executable_manager.po | 58 +++ data/po/sk/exportLUT.po | 62 +++ data/po/sk/ext_editor.po | 118 +++++ data/po/sk/face_recognition.po | 138 ++++++ data/po/sk/fujifilm_ratings.po | 34 ++ data/po/sk/geoJSON_export.po | 73 +++ data/po/sk/geoToolbox.po | 163 ++++++ data/po/sk/gettextExample.po | 26 + data/po/sk/gimp.po | 35 ++ data/po/sk/gpx_export.po | 54 ++ data/po/sk/hugin.po | 66 +++ data/po/sk/image_stack.po | 248 ++++++++++ data/po/sk/image_time.po | 243 +++++++++ data/po/sk/kml_export.po | 88 ++++ data/po/sk/lighttable_demo.po | 59 +++ data/po/sk/moduleExample.po | 54 ++ data/po/sk/multi_os.po | 34 ++ data/po/sk/panels_demo.po | 46 ++ data/po/sk/passport_guide.po | 22 + data/po/sk/pdf_slideshow.po | 70 +++ data/po/sk/photils.po | 91 ++++ data/po/sk/quicktag.po | 82 ++++ data/po/sk/script_manager.po | 66 +++ data/po/sk/select_untagged.po | 30 ++ data/po/sk/slideshowMusic.po | 34 ++ data/po/sk/transfer_hierarchy.po | 73 +++ data/po/sk/video_ffmpeg.po | 121 +++++ data/po/sl/AutoGrouper.po | 46 ++ data/po/sl/CollectHelper.po | 89 ++++ data/po/sl/HDRMerge.po | 154 ++++++ data/po/sl/OpenInExplorer.po | 78 +++ data/po/sl/RL_out_sharp.po | 74 +++ data/po/sl/autostyle.po | 96 ++++ data/po/sl/clear_GPS.po | 22 + data/po/sl/copy_attach_detach_tags.po | 74 +++ data/po/sl/darkroom_demo.po | 30 ++ data/po/sl/dtutils.po | 58 +++ data/po/sl/enfuse.po | 59 +++ data/po/sl/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/sl/executable_manager.po | 58 +++ data/po/sl/exportLUT.po | 62 +++ data/po/sl/ext_editor.po | 118 +++++ data/po/sl/face_recognition.po | 138 ++++++ data/po/sl/fujifilm_ratings.po | 34 ++ data/po/sl/geoJSON_export.po | 73 +++ data/po/sl/geoToolbox.po | 163 ++++++ data/po/sl/gettextExample.po | 26 + data/po/sl/gimp.po | 35 ++ data/po/sl/gpx_export.po | 54 ++ data/po/sl/hugin.po | 66 +++ data/po/sl/image_stack.po | 248 ++++++++++ data/po/sl/image_time.po | 243 +++++++++ data/po/sl/kml_export.po | 88 ++++ data/po/sl/lighttable_demo.po | 59 +++ data/po/sl/moduleExample.po | 54 ++ data/po/sl/multi_os.po | 34 ++ data/po/sl/panels_demo.po | 46 ++ data/po/sl/passport_guide.po | 22 + data/po/sl/pdf_slideshow.po | 70 +++ data/po/sl/photils.po | 91 ++++ data/po/sl/quicktag.po | 82 ++++ data/po/sl/script_manager.po | 66 +++ data/po/sl/select_untagged.po | 30 ++ data/po/sl/slideshowMusic.po | 34 ++ data/po/sl/transfer_hierarchy.po | 73 +++ data/po/sl/video_ffmpeg.po | 121 +++++ data/po/sq/AutoGrouper.po | 46 ++ data/po/sq/CollectHelper.po | 89 ++++ data/po/sq/HDRMerge.po | 154 ++++++ data/po/sq/OpenInExplorer.po | 78 +++ data/po/sq/RL_out_sharp.po | 74 +++ data/po/sq/autostyle.po | 96 ++++ data/po/sq/clear_GPS.po | 22 + data/po/sq/copy_attach_detach_tags.po | 74 +++ data/po/sq/darkroom_demo.po | 30 ++ data/po/sq/dtutils.po | 58 +++ data/po/sq/enfuse.po | 59 +++ data/po/sq/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/sq/executable_manager.po | 58 +++ data/po/sq/exportLUT.po | 62 +++ data/po/sq/ext_editor.po | 118 +++++ data/po/sq/face_recognition.po | 138 ++++++ data/po/sq/fujifilm_ratings.po | 34 ++ data/po/sq/geoJSON_export.po | 73 +++ data/po/sq/geoToolbox.po | 163 ++++++ data/po/sq/gettextExample.po | 26 + data/po/sq/gimp.po | 35 ++ data/po/sq/gpx_export.po | 54 ++ data/po/sq/hugin.po | 66 +++ data/po/sq/image_stack.po | 248 ++++++++++ data/po/sq/image_time.po | 243 +++++++++ data/po/sq/kml_export.po | 88 ++++ data/po/sq/lighttable_demo.po | 59 +++ data/po/sq/moduleExample.po | 54 ++ data/po/sq/multi_os.po | 34 ++ data/po/sq/panels_demo.po | 46 ++ data/po/sq/passport_guide.po | 22 + data/po/sq/pdf_slideshow.po | 70 +++ data/po/sq/photils.po | 91 ++++ data/po/sq/quicktag.po | 82 ++++ data/po/sq/script_manager.po | 66 +++ data/po/sq/select_untagged.po | 30 ++ data/po/sq/slideshowMusic.po | 34 ++ data/po/sq/transfer_hierarchy.po | 73 +++ data/po/sq/video_ffmpeg.po | 121 +++++ data/po/sv/AutoGrouper.po | 46 ++ data/po/sv/CollectHelper.po | 89 ++++ data/po/sv/HDRMerge.po | 154 ++++++ data/po/sv/OpenInExplorer.po | 78 +++ data/po/sv/RL_out_sharp.po | 74 +++ data/po/sv/autostyle.po | 96 ++++ data/po/sv/clear_GPS.po | 22 + data/po/sv/copy_attach_detach_tags.po | 74 +++ data/po/sv/darkroom_demo.po | 30 ++ data/po/sv/dtutils.po | 58 +++ data/po/sv/enfuse.po | 59 +++ data/po/sv/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/sv/executable_manager.po | 58 +++ data/po/sv/exportLUT.po | 62 +++ data/po/sv/ext_editor.po | 118 +++++ data/po/sv/face_recognition.po | 138 ++++++ data/po/sv/fujifilm_ratings.po | 34 ++ data/po/sv/geoJSON_export.po | 73 +++ data/po/sv/geoToolbox.po | 163 ++++++ data/po/sv/gettextExample.po | 26 + data/po/sv/gimp.po | 35 ++ data/po/sv/gpx_export.po | 54 ++ data/po/sv/hugin.po | 66 +++ data/po/sv/image_stack.po | 248 ++++++++++ data/po/sv/image_time.po | 243 +++++++++ data/po/sv/kml_export.po | 88 ++++ data/po/sv/lighttable_demo.po | 59 +++ data/po/sv/moduleExample.po | 54 ++ data/po/sv/multi_os.po | 34 ++ data/po/sv/panels_demo.po | 46 ++ data/po/sv/passport_guide.po | 22 + data/po/sv/pdf_slideshow.po | 70 +++ data/po/sv/photils.po | 91 ++++ data/po/sv/quicktag.po | 82 ++++ data/po/sv/script_manager.po | 66 +++ data/po/sv/select_untagged.po | 30 ++ data/po/sv/slideshowMusic.po | 34 ++ data/po/sv/transfer_hierarchy.po | 73 +++ data/po/sv/video_ffmpeg.po | 121 +++++ data/po/th/AutoGrouper.po | 46 ++ data/po/th/CollectHelper.po | 89 ++++ data/po/th/HDRMerge.po | 154 ++++++ data/po/th/OpenInExplorer.po | 78 +++ data/po/th/RL_out_sharp.po | 74 +++ data/po/th/autostyle.po | 96 ++++ data/po/th/clear_GPS.po | 22 + data/po/th/copy_attach_detach_tags.po | 74 +++ data/po/th/darkroom_demo.po | 30 ++ data/po/th/dtutils.po | 58 +++ data/po/th/enfuse.po | 59 +++ data/po/th/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/th/executable_manager.po | 58 +++ data/po/th/exportLUT.po | 62 +++ data/po/th/ext_editor.po | 118 +++++ data/po/th/face_recognition.po | 138 ++++++ data/po/th/fujifilm_ratings.po | 34 ++ data/po/th/geoJSON_export.po | 73 +++ data/po/th/geoToolbox.po | 163 ++++++ data/po/th/gettextExample.po | 26 + data/po/th/gimp.po | 35 ++ data/po/th/gpx_export.po | 54 ++ data/po/th/hugin.po | 66 +++ data/po/th/image_stack.po | 248 ++++++++++ data/po/th/image_time.po | 243 +++++++++ data/po/th/kml_export.po | 88 ++++ data/po/th/lighttable_demo.po | 59 +++ data/po/th/moduleExample.po | 54 ++ data/po/th/multi_os.po | 34 ++ data/po/th/panels_demo.po | 46 ++ data/po/th/passport_guide.po | 22 + data/po/th/pdf_slideshow.po | 70 +++ data/po/th/photils.po | 91 ++++ data/po/th/quicktag.po | 82 ++++ data/po/th/script_manager.po | 66 +++ data/po/th/select_untagged.po | 30 ++ data/po/th/slideshowMusic.po | 34 ++ data/po/th/transfer_hierarchy.po | 73 +++ data/po/th/video_ffmpeg.po | 121 +++++ data/po/zh_CN/AutoGrouper.po | 46 ++ data/po/zh_CN/CollectHelper.po | 89 ++++ data/po/zh_CN/HDRMerge.po | 154 ++++++ data/po/zh_CN/OpenInExplorer.po | 78 +++ data/po/zh_CN/RL_out_sharp.po | 74 +++ data/po/zh_CN/autostyle.po | 96 ++++ data/po/zh_CN/clear_GPS.po | 22 + data/po/zh_CN/copy_attach_detach_tags.po | 74 +++ data/po/zh_CN/darkroom_demo.po | 30 ++ data/po/zh_CN/dtutils.po | 58 +++ data/po/zh_CN/enfuse.po | 59 +++ data/po/zh_CN/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/zh_CN/executable_manager.po | 58 +++ data/po/zh_CN/exportLUT.po | 62 +++ data/po/zh_CN/ext_editor.po | 118 +++++ data/po/zh_CN/face_recognition.po | 138 ++++++ data/po/zh_CN/fujifilm_ratings.po | 34 ++ data/po/zh_CN/geoJSON_export.po | 73 +++ data/po/zh_CN/geoToolbox.po | 163 ++++++ data/po/zh_CN/gettextExample.po | 26 + data/po/zh_CN/gimp.po | 35 ++ data/po/zh_CN/gpx_export.po | 54 ++ data/po/zh_CN/hugin.po | 66 +++ data/po/zh_CN/image_stack.po | 248 ++++++++++ data/po/zh_CN/image_time.po | 243 +++++++++ data/po/zh_CN/kml_export.po | 88 ++++ data/po/zh_CN/lighttable_demo.po | 59 +++ data/po/zh_CN/moduleExample.po | 54 ++ data/po/zh_CN/multi_os.po | 34 ++ data/po/zh_CN/panels_demo.po | 46 ++ data/po/zh_CN/passport_guide.po | 22 + data/po/zh_CN/pdf_slideshow.po | 70 +++ data/po/zh_CN/photils.po | 91 ++++ data/po/zh_CN/quicktag.po | 82 ++++ data/po/zh_CN/script_manager.po | 66 +++ data/po/zh_CN/select_untagged.po | 30 ++ data/po/zh_CN/slideshowMusic.po | 34 ++ data/po/zh_CN/transfer_hierarchy.po | 73 +++ data/po/zh_CN/video_ffmpeg.po | 121 +++++ data/po/zh_TW/AutoGrouper.po | 46 ++ data/po/zh_TW/CollectHelper.po | 89 ++++ data/po/zh_TW/HDRMerge.po | 154 ++++++ data/po/zh_TW/OpenInExplorer.po | 78 +++ data/po/zh_TW/RL_out_sharp.po | 74 +++ data/po/zh_TW/autostyle.po | 96 ++++ data/po/zh_TW/clear_GPS.po | 22 + data/po/zh_TW/copy_attach_detach_tags.po | 74 +++ data/po/zh_TW/darkroom_demo.po | 30 ++ data/po/zh_TW/dtutils.po | 58 +++ data/po/zh_TW/enfuse.po | 59 +++ data/po/zh_TW/enfuseAdvanced.po | 463 ++++++++++++++++++ data/po/zh_TW/executable_manager.po | 58 +++ data/po/zh_TW/exportLUT.po | 62 +++ data/po/zh_TW/ext_editor.po | 118 +++++ data/po/zh_TW/face_recognition.po | 138 ++++++ data/po/zh_TW/fujifilm_ratings.po | 34 ++ data/po/zh_TW/geoJSON_export.po | 73 +++ data/po/zh_TW/geoToolbox.po | 163 ++++++ data/po/zh_TW/gettextExample.po | 26 + data/po/zh_TW/gimp.po | 35 ++ data/po/zh_TW/gpx_export.po | 54 ++ data/po/zh_TW/hugin.po | 66 +++ data/po/zh_TW/image_stack.po | 248 ++++++++++ data/po/zh_TW/image_time.po | 243 +++++++++ data/po/zh_TW/kml_export.po | 88 ++++ data/po/zh_TW/lighttable_demo.po | 59 +++ data/po/zh_TW/moduleExample.po | 54 ++ data/po/zh_TW/multi_os.po | 34 ++ data/po/zh_TW/panels_demo.po | 46 ++ data/po/zh_TW/passport_guide.po | 22 + data/po/zh_TW/pdf_slideshow.po | 70 +++ data/po/zh_TW/photils.po | 91 ++++ data/po/zh_TW/quicktag.po | 82 ++++ data/po/zh_TW/script_manager.po | 66 +++ data/po/zh_TW/select_untagged.po | 30 ++ data/po/zh_TW/slideshowMusic.po | 34 ++ data/po/zh_TW/transfer_hierarchy.po | 73 +++ data/po/zh_TW/video_ffmpeg.po | 121 +++++ examples/darkroom_demo.lua | 4 +- examples/gettextExample.lua | 6 +- examples/lighttable_demo.lua | 4 +- examples/moduleExample.lua | 4 +- examples/multi_os.lua | 4 +- examples/panels_demo.lua | 4 +- lib/dtutils.lua | 22 +- lib/dtutils/file.lua | 4 +- locale/af/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/ca/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/cs/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/da/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/de/LC_MESSAGES/scripts.mo | Bin 0 -> 24748 bytes locale/de_DE/LC_MESSAGES/calcDistance.po | 22 - locale/de_DE/LC_MESSAGES/geo_uri.po | 30 -- locale/de_DE/LC_MESSAGES/gps_select.po | 26 - locale/el/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/es/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/fi/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/fr/LC_MESSAGES/scripts.mo | Bin 0 -> 19678 bytes locale/fr_FR/LC_MESSAGES/calcDistance.po | 22 - locale/fr_FR/LC_MESSAGES/geo_uri.po | 30 -- locale/fr_FR/LC_MESSAGES/gps_select.po | 26 - locale/gl/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/he/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/hu/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/it/LC_MESSAGES/scripts.mo | Bin 0 -> 17041 bytes locale/ja/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/nb/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/nl/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/pl/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/pt_BR/LC_MESSAGES/scripts.mo | Bin 0 -> 348 bytes locale/pt_PT/LC_MESSAGES/scripts.mo | Bin 0 -> 348 bytes locale/ro/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/ru/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/sk/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/sl/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/sq/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/sv/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/th/LC_MESSAGES/scripts.mo | Bin 0 -> 345 bytes locale/zh_CN/LC_MESSAGES/scripts.mo | Bin 0 -> 348 bytes locale/zh_TW/LC_MESSAGES/scripts.mo | Bin 0 -> 348 bytes official/enfuse.lua | 4 +- tools/create_mo.sh | 2 + tools/create_potfiles.sh | 2 + tools/executable_manager.lua | 4 +- tools/fix_header.sh | 2 + tools/script_manager.lua | 4 +- tools/update_po_files.sh | 2 + 1172 files changed, 95078 insertions(+), 266 deletions(-) create mode 100644 data/po/LINGUAS create mode 100644 data/po/POTFILES.in create mode 100644 data/po/af/AutoGrouper.po create mode 100644 data/po/af/CollectHelper.po create mode 100644 data/po/af/HDRMerge.po create mode 100644 data/po/af/OpenInExplorer.po create mode 100644 data/po/af/RL_out_sharp.po create mode 100644 data/po/af/autostyle.po create mode 100644 data/po/af/clear_GPS.po create mode 100644 data/po/af/copy_attach_detach_tags.po create mode 100644 data/po/af/darkroom_demo.po create mode 100644 data/po/af/dtutils.po create mode 100644 data/po/af/enfuse.po create mode 100644 data/po/af/enfuseAdvanced.po create mode 100644 data/po/af/executable_manager.po create mode 100644 data/po/af/exportLUT.po create mode 100644 data/po/af/ext_editor.po create mode 100644 data/po/af/face_recognition.po create mode 100644 data/po/af/fujifilm_ratings.po create mode 100644 data/po/af/geoJSON_export.po create mode 100644 data/po/af/geoToolbox.po create mode 100644 data/po/af/gettextExample.po create mode 100644 data/po/af/gimp.po create mode 100644 data/po/af/gpx_export.po create mode 100644 data/po/af/hugin.po create mode 100644 data/po/af/image_stack.po create mode 100644 data/po/af/image_time.po create mode 100644 data/po/af/kml_export.po create mode 100644 data/po/af/lighttable_demo.po create mode 100644 data/po/af/moduleExample.po create mode 100644 data/po/af/multi_os.po create mode 100644 data/po/af/panels_demo.po create mode 100644 data/po/af/passport_guide.po create mode 100644 data/po/af/pdf_slideshow.po create mode 100644 data/po/af/photils.po create mode 100644 data/po/af/quicktag.po create mode 100644 data/po/af/script_manager.po create mode 100644 data/po/af/select_untagged.po create mode 100644 data/po/af/slideshowMusic.po create mode 100644 data/po/af/transfer_hierarchy.po create mode 100644 data/po/af/video_ffmpeg.po create mode 100644 data/po/ca/AutoGrouper.po create mode 100644 data/po/ca/CollectHelper.po create mode 100644 data/po/ca/HDRMerge.po create mode 100644 data/po/ca/OpenInExplorer.po create mode 100644 data/po/ca/RL_out_sharp.po create mode 100644 data/po/ca/autostyle.po create mode 100644 data/po/ca/clear_GPS.po create mode 100644 data/po/ca/copy_attach_detach_tags.po create mode 100644 data/po/ca/darkroom_demo.po create mode 100644 data/po/ca/dtutils.po create mode 100644 data/po/ca/enfuse.po create mode 100644 data/po/ca/enfuseAdvanced.po create mode 100644 data/po/ca/executable_manager.po create mode 100644 data/po/ca/exportLUT.po create mode 100644 data/po/ca/ext_editor.po create mode 100644 data/po/ca/face_recognition.po create mode 100644 data/po/ca/fujifilm_ratings.po create mode 100644 data/po/ca/geoJSON_export.po create mode 100644 data/po/ca/geoToolbox.po create mode 100644 data/po/ca/gettextExample.po create mode 100644 data/po/ca/gimp.po create mode 100644 data/po/ca/gpx_export.po create mode 100644 data/po/ca/hugin.po create mode 100644 data/po/ca/image_stack.po create mode 100644 data/po/ca/image_time.po create mode 100644 data/po/ca/kml_export.po create mode 100644 data/po/ca/lighttable_demo.po create mode 100644 data/po/ca/moduleExample.po create mode 100644 data/po/ca/multi_os.po create mode 100644 data/po/ca/panels_demo.po create mode 100644 data/po/ca/passport_guide.po create mode 100644 data/po/ca/pdf_slideshow.po create mode 100644 data/po/ca/photils.po create mode 100644 data/po/ca/quicktag.po create mode 100644 data/po/ca/script_manager.po create mode 100644 data/po/ca/select_untagged.po create mode 100644 data/po/ca/slideshowMusic.po create mode 100644 data/po/ca/transfer_hierarchy.po create mode 100644 data/po/ca/video_ffmpeg.po create mode 100644 data/po/cs/AutoGrouper.po create mode 100644 data/po/cs/CollectHelper.po create mode 100644 data/po/cs/HDRMerge.po create mode 100644 data/po/cs/OpenInExplorer.po create mode 100644 data/po/cs/RL_out_sharp.po create mode 100644 data/po/cs/autostyle.po create mode 100644 data/po/cs/clear_GPS.po create mode 100644 data/po/cs/copy_attach_detach_tags.po create mode 100644 data/po/cs/darkroom_demo.po create mode 100644 data/po/cs/dtutils.po create mode 100644 data/po/cs/enfuse.po create mode 100644 data/po/cs/enfuseAdvanced.po create mode 100644 data/po/cs/executable_manager.po create mode 100644 data/po/cs/exportLUT.po create mode 100644 data/po/cs/ext_editor.po create mode 100644 data/po/cs/face_recognition.po create mode 100644 data/po/cs/fujifilm_ratings.po create mode 100644 data/po/cs/geoJSON_export.po create mode 100644 data/po/cs/geoToolbox.po create mode 100644 data/po/cs/gettextExample.po create mode 100644 data/po/cs/gimp.po create mode 100644 data/po/cs/gpx_export.po create mode 100644 data/po/cs/hugin.po create mode 100644 data/po/cs/image_stack.po create mode 100644 data/po/cs/image_time.po create mode 100644 data/po/cs/kml_export.po create mode 100644 data/po/cs/lighttable_demo.po create mode 100644 data/po/cs/moduleExample.po create mode 100644 data/po/cs/multi_os.po create mode 100644 data/po/cs/panels_demo.po create mode 100644 data/po/cs/passport_guide.po create mode 100644 data/po/cs/pdf_slideshow.po create mode 100644 data/po/cs/photils.po create mode 100644 data/po/cs/quicktag.po create mode 100644 data/po/cs/script_manager.po create mode 100644 data/po/cs/select_untagged.po create mode 100644 data/po/cs/slideshowMusic.po create mode 100644 data/po/cs/transfer_hierarchy.po create mode 100644 data/po/cs/video_ffmpeg.po create mode 100644 data/po/da/AutoGrouper.po create mode 100644 data/po/da/CollectHelper.po create mode 100644 data/po/da/HDRMerge.po create mode 100644 data/po/da/OpenInExplorer.po create mode 100644 data/po/da/RL_out_sharp.po create mode 100644 data/po/da/autostyle.po create mode 100644 data/po/da/clear_GPS.po create mode 100644 data/po/da/copy_attach_detach_tags.po create mode 100644 data/po/da/darkroom_demo.po create mode 100644 data/po/da/dtutils.po create mode 100644 data/po/da/enfuse.po create mode 100644 data/po/da/enfuseAdvanced.po create mode 100644 data/po/da/executable_manager.po create mode 100644 data/po/da/exportLUT.po create mode 100644 data/po/da/ext_editor.po create mode 100644 data/po/da/face_recognition.po create mode 100644 data/po/da/fujifilm_ratings.po create mode 100644 data/po/da/geoJSON_export.po create mode 100644 data/po/da/geoToolbox.po create mode 100644 data/po/da/gettextExample.po create mode 100644 data/po/da/gimp.po create mode 100644 data/po/da/gpx_export.po create mode 100644 data/po/da/hugin.po create mode 100644 data/po/da/image_stack.po create mode 100644 data/po/da/image_time.po create mode 100644 data/po/da/kml_export.po create mode 100644 data/po/da/lighttable_demo.po create mode 100644 data/po/da/moduleExample.po create mode 100644 data/po/da/multi_os.po create mode 100644 data/po/da/panels_demo.po create mode 100644 data/po/da/passport_guide.po create mode 100644 data/po/da/pdf_slideshow.po create mode 100644 data/po/da/photils.po create mode 100644 data/po/da/quicktag.po create mode 100644 data/po/da/script_manager.po create mode 100644 data/po/da/select_untagged.po create mode 100644 data/po/da/slideshowMusic.po create mode 100644 data/po/da/transfer_hierarchy.po create mode 100644 data/po/da/video_ffmpeg.po create mode 100644 data/po/de/AutoGrouper.po create mode 100644 data/po/de/CollectHelper.po create mode 100644 data/po/de/HDRMerge.po rename {locale/de_DE/LC_MESSAGES => data/po/de}/OpenInExplorer.po (98%) create mode 100644 data/po/de/RL_out_sharp.po rename {locale/de/LC_MESSAGES => data/po/de}/autostyle.po (94%) rename {locale/de_DE/LC_MESSAGES => data/po/de}/clear_GPS.po (87%) rename {locale/de_DE/LC_MESSAGES => data/po/de}/copy_attach_detach_tags.po (100%) create mode 100644 data/po/de/darkroom_demo.po create mode 100644 data/po/de/dtutils.po create mode 100644 data/po/de/enfuse.po create mode 100644 data/po/de/enfuseAdvanced.po create mode 100644 data/po/de/executable_manager.po create mode 100644 data/po/de/exportLUT.po create mode 100644 data/po/de/ext_editor.po create mode 100644 data/po/de/face_recognition.po create mode 100644 data/po/de/fujifilm_ratings.po create mode 100644 data/po/de/geoJSON_export.po create mode 100644 data/po/de/geoToolbox.po rename {examples/de_DE/LC_MESSAGES => data/po/de}/gettextExample.po (100%) rename {locale/de_DE/LC_MESSAGES => data/po/de}/gimp.po (56%) create mode 100644 data/po/de/gpx_export.po rename {locale/de_DE/LC_MESSAGES => data/po/de}/hugin.po (100%) create mode 100644 data/po/de/image_stack.po create mode 100644 data/po/de/image_time.po rename {locale/de_DE/LC_MESSAGES => data/po/de}/kml_export.po (100%) create mode 100644 data/po/de/lighttable_demo.po create mode 100644 data/po/de/moduleExample.po create mode 100644 data/po/de/multi_os.po create mode 100644 data/po/de/panels_demo.po create mode 100644 data/po/de/passport_guide.po create mode 100644 data/po/de/pdf_slideshow.po rename {locale/de_DE/LC_MESSAGES => data/po/de}/photils.po (100%) rename {locale/de_DE/LC_MESSAGES => data/po/de}/quicktag.po (100%) create mode 100644 data/po/de/script_manager.po rename {locale/de_DE/LC_MESSAGES => data/po/de}/select_untagged.po (100%) rename {locale/de_DE/LC_MESSAGES => data/po/de}/slideshowMusic.po (100%) create mode 100644 data/po/de/transfer_hierarchy.po create mode 100644 data/po/de/video_ffmpeg.po create mode 100644 data/po/el/AutoGrouper.po create mode 100644 data/po/el/CollectHelper.po create mode 100644 data/po/el/HDRMerge.po create mode 100644 data/po/el/OpenInExplorer.po create mode 100644 data/po/el/RL_out_sharp.po create mode 100644 data/po/el/autostyle.po create mode 100644 data/po/el/clear_GPS.po create mode 100644 data/po/el/copy_attach_detach_tags.po create mode 100644 data/po/el/darkroom_demo.po create mode 100644 data/po/el/dtutils.po create mode 100644 data/po/el/enfuse.po create mode 100644 data/po/el/enfuseAdvanced.po create mode 100644 data/po/el/executable_manager.po create mode 100644 data/po/el/exportLUT.po create mode 100644 data/po/el/ext_editor.po create mode 100644 data/po/el/face_recognition.po create mode 100644 data/po/el/fujifilm_ratings.po create mode 100644 data/po/el/geoJSON_export.po create mode 100644 data/po/el/geoToolbox.po create mode 100644 data/po/el/gettextExample.po create mode 100644 data/po/el/gimp.po create mode 100644 data/po/el/gpx_export.po create mode 100644 data/po/el/hugin.po create mode 100644 data/po/el/image_stack.po create mode 100644 data/po/el/image_time.po create mode 100644 data/po/el/kml_export.po create mode 100644 data/po/el/lighttable_demo.po create mode 100644 data/po/el/moduleExample.po create mode 100644 data/po/el/multi_os.po create mode 100644 data/po/el/panels_demo.po create mode 100644 data/po/el/passport_guide.po create mode 100644 data/po/el/pdf_slideshow.po create mode 100644 data/po/el/photils.po create mode 100644 data/po/el/quicktag.po create mode 100644 data/po/el/script_manager.po create mode 100644 data/po/el/select_untagged.po create mode 100644 data/po/el/slideshowMusic.po create mode 100644 data/po/el/transfer_hierarchy.po create mode 100644 data/po/el/video_ffmpeg.po create mode 100644 data/po/es/AutoGrouper.po create mode 100644 data/po/es/CollectHelper.po create mode 100644 data/po/es/HDRMerge.po create mode 100644 data/po/es/OpenInExplorer.po create mode 100644 data/po/es/RL_out_sharp.po create mode 100644 data/po/es/autostyle.po create mode 100644 data/po/es/clear_GPS.po create mode 100644 data/po/es/copy_attach_detach_tags.po create mode 100644 data/po/es/darkroom_demo.po create mode 100644 data/po/es/dtutils.po create mode 100644 data/po/es/enfuse.po create mode 100644 data/po/es/enfuseAdvanced.po create mode 100644 data/po/es/executable_manager.po create mode 100644 data/po/es/exportLUT.po create mode 100644 data/po/es/ext_editor.po create mode 100644 data/po/es/face_recognition.po create mode 100644 data/po/es/fujifilm_ratings.po create mode 100644 data/po/es/geoJSON_export.po create mode 100644 data/po/es/geoToolbox.po create mode 100644 data/po/es/gettextExample.po create mode 100644 data/po/es/gimp.po create mode 100644 data/po/es/gpx_export.po create mode 100644 data/po/es/hugin.po create mode 100644 data/po/es/image_stack.po create mode 100644 data/po/es/image_time.po create mode 100644 data/po/es/kml_export.po create mode 100644 data/po/es/lighttable_demo.po create mode 100644 data/po/es/moduleExample.po create mode 100644 data/po/es/multi_os.po create mode 100644 data/po/es/panels_demo.po create mode 100644 data/po/es/passport_guide.po create mode 100644 data/po/es/pdf_slideshow.po create mode 100644 data/po/es/photils.po create mode 100644 data/po/es/quicktag.po create mode 100644 data/po/es/script_manager.po create mode 100644 data/po/es/select_untagged.po create mode 100644 data/po/es/slideshowMusic.po create mode 100644 data/po/es/transfer_hierarchy.po create mode 100644 data/po/es/video_ffmpeg.po create mode 100644 data/po/fi/AutoGrouper.po create mode 100644 data/po/fi/CollectHelper.po create mode 100644 data/po/fi/HDRMerge.po create mode 100644 data/po/fi/OpenInExplorer.po create mode 100644 data/po/fi/RL_out_sharp.po create mode 100644 data/po/fi/autostyle.po create mode 100644 data/po/fi/clear_GPS.po create mode 100644 data/po/fi/copy_attach_detach_tags.po create mode 100644 data/po/fi/darkroom_demo.po create mode 100644 data/po/fi/dtutils.po create mode 100644 data/po/fi/enfuse.po create mode 100644 data/po/fi/enfuseAdvanced.po create mode 100644 data/po/fi/executable_manager.po create mode 100644 data/po/fi/exportLUT.po create mode 100644 data/po/fi/ext_editor.po create mode 100644 data/po/fi/face_recognition.po create mode 100644 data/po/fi/fujifilm_ratings.po create mode 100644 data/po/fi/geoJSON_export.po create mode 100644 data/po/fi/geoToolbox.po create mode 100644 data/po/fi/gettextExample.po create mode 100644 data/po/fi/gimp.po create mode 100644 data/po/fi/gpx_export.po create mode 100644 data/po/fi/hugin.po create mode 100644 data/po/fi/image_stack.po create mode 100644 data/po/fi/image_time.po create mode 100644 data/po/fi/kml_export.po create mode 100644 data/po/fi/lighttable_demo.po create mode 100644 data/po/fi/moduleExample.po create mode 100644 data/po/fi/multi_os.po create mode 100644 data/po/fi/panels_demo.po create mode 100644 data/po/fi/passport_guide.po create mode 100644 data/po/fi/pdf_slideshow.po create mode 100644 data/po/fi/photils.po create mode 100644 data/po/fi/quicktag.po create mode 100644 data/po/fi/script_manager.po create mode 100644 data/po/fi/select_untagged.po create mode 100644 data/po/fi/slideshowMusic.po create mode 100644 data/po/fi/transfer_hierarchy.po create mode 100644 data/po/fi/video_ffmpeg.po create mode 100644 data/po/fr/AutoGrouper.po create mode 100644 data/po/fr/CollectHelper.po create mode 100644 data/po/fr/HDRMerge.po create mode 100644 data/po/fr/OpenInExplorer.po create mode 100644 data/po/fr/RL_out_sharp.po create mode 100644 data/po/fr/autostyle.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/clear_GPS.po (100%) create mode 100644 data/po/fr/copy_attach_detach_tags.po create mode 100644 data/po/fr/darkroom_demo.po create mode 100644 data/po/fr/dtutils.po create mode 100644 data/po/fr/enfuse.po create mode 100644 data/po/fr/enfuseAdvanced.po create mode 100644 data/po/fr/executable_manager.po create mode 100644 data/po/fr/exportLUT.po create mode 100644 data/po/fr/ext_editor.po create mode 100644 data/po/fr/face_recognition.po create mode 100644 data/po/fr/fujifilm_ratings.po create mode 100644 data/po/fr/geoJSON_export.po create mode 100644 data/po/fr/geoToolbox.po create mode 100644 data/po/fr/gettextExample.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/gimp.po (100%) create mode 100644 data/po/fr/gpx_export.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/hugin.po (100%) create mode 100644 data/po/fr/image_stack.po create mode 100644 data/po/fr/image_time.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/kml_export.po (100%) create mode 100644 data/po/fr/lighttable_demo.po create mode 100644 data/po/fr/moduleExample.po create mode 100644 data/po/fr/multi_os.po create mode 100644 data/po/fr/panels_demo.po create mode 100644 data/po/fr/passport_guide.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/pdf_slideshow.po (100%) create mode 100644 data/po/fr/photils.po create mode 100644 data/po/fr/quicktag.po create mode 100644 data/po/fr/script_manager.po rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/select_untagged.po (100%) rename {locale/fr_FR/LC_MESSAGES => data/po/fr}/slideshowMusic.po (100%) create mode 100644 data/po/fr/transfer_hierarchy.po create mode 100644 data/po/fr/video_ffmpeg.po create mode 100644 data/po/gl/AutoGrouper.po create mode 100644 data/po/gl/CollectHelper.po create mode 100644 data/po/gl/HDRMerge.po create mode 100644 data/po/gl/OpenInExplorer.po create mode 100644 data/po/gl/RL_out_sharp.po create mode 100644 data/po/gl/autostyle.po create mode 100644 data/po/gl/clear_GPS.po create mode 100644 data/po/gl/copy_attach_detach_tags.po create mode 100644 data/po/gl/darkroom_demo.po create mode 100644 data/po/gl/dtutils.po create mode 100644 data/po/gl/enfuse.po create mode 100644 data/po/gl/enfuseAdvanced.po create mode 100644 data/po/gl/executable_manager.po create mode 100644 data/po/gl/exportLUT.po create mode 100644 data/po/gl/ext_editor.po create mode 100644 data/po/gl/face_recognition.po create mode 100644 data/po/gl/fujifilm_ratings.po create mode 100644 data/po/gl/geoJSON_export.po create mode 100644 data/po/gl/geoToolbox.po create mode 100644 data/po/gl/gettextExample.po create mode 100644 data/po/gl/gimp.po create mode 100644 data/po/gl/gpx_export.po create mode 100644 data/po/gl/hugin.po create mode 100644 data/po/gl/image_stack.po create mode 100644 data/po/gl/image_time.po create mode 100644 data/po/gl/kml_export.po create mode 100644 data/po/gl/lighttable_demo.po create mode 100644 data/po/gl/moduleExample.po create mode 100644 data/po/gl/multi_os.po create mode 100644 data/po/gl/panels_demo.po create mode 100644 data/po/gl/passport_guide.po create mode 100644 data/po/gl/pdf_slideshow.po create mode 100644 data/po/gl/photils.po create mode 100644 data/po/gl/quicktag.po create mode 100644 data/po/gl/script_manager.po create mode 100644 data/po/gl/select_untagged.po create mode 100644 data/po/gl/slideshowMusic.po create mode 100644 data/po/gl/transfer_hierarchy.po create mode 100644 data/po/gl/video_ffmpeg.po create mode 100644 data/po/he/AutoGrouper.po create mode 100644 data/po/he/CollectHelper.po create mode 100644 data/po/he/HDRMerge.po create mode 100644 data/po/he/OpenInExplorer.po create mode 100644 data/po/he/RL_out_sharp.po create mode 100644 data/po/he/autostyle.po create mode 100644 data/po/he/clear_GPS.po create mode 100644 data/po/he/copy_attach_detach_tags.po create mode 100644 data/po/he/darkroom_demo.po create mode 100644 data/po/he/dtutils.po create mode 100644 data/po/he/enfuse.po create mode 100644 data/po/he/enfuseAdvanced.po create mode 100644 data/po/he/executable_manager.po create mode 100644 data/po/he/exportLUT.po create mode 100644 data/po/he/ext_editor.po create mode 100644 data/po/he/face_recognition.po create mode 100644 data/po/he/fujifilm_ratings.po create mode 100644 data/po/he/geoJSON_export.po create mode 100644 data/po/he/geoToolbox.po create mode 100644 data/po/he/gettextExample.po create mode 100644 data/po/he/gimp.po create mode 100644 data/po/he/gpx_export.po create mode 100644 data/po/he/hugin.po create mode 100644 data/po/he/image_stack.po create mode 100644 data/po/he/image_time.po create mode 100644 data/po/he/kml_export.po create mode 100644 data/po/he/lighttable_demo.po create mode 100644 data/po/he/moduleExample.po create mode 100644 data/po/he/multi_os.po create mode 100644 data/po/he/panels_demo.po create mode 100644 data/po/he/passport_guide.po create mode 100644 data/po/he/pdf_slideshow.po create mode 100644 data/po/he/photils.po create mode 100644 data/po/he/quicktag.po create mode 100644 data/po/he/script_manager.po create mode 100644 data/po/he/select_untagged.po create mode 100644 data/po/he/slideshowMusic.po create mode 100644 data/po/he/transfer_hierarchy.po create mode 100644 data/po/he/video_ffmpeg.po create mode 100644 data/po/hu/AutoGrouper.po create mode 100644 data/po/hu/CollectHelper.po create mode 100644 data/po/hu/HDRMerge.po create mode 100644 data/po/hu/OpenInExplorer.po create mode 100644 data/po/hu/RL_out_sharp.po create mode 100644 data/po/hu/autostyle.po create mode 100644 data/po/hu/clear_GPS.po create mode 100644 data/po/hu/copy_attach_detach_tags.po create mode 100644 data/po/hu/darkroom_demo.po create mode 100644 data/po/hu/dtutils.po create mode 100644 data/po/hu/enfuse.po create mode 100644 data/po/hu/enfuseAdvanced.po create mode 100644 data/po/hu/executable_manager.po create mode 100644 data/po/hu/exportLUT.po create mode 100644 data/po/hu/ext_editor.po create mode 100644 data/po/hu/face_recognition.po create mode 100644 data/po/hu/fujifilm_ratings.po create mode 100644 data/po/hu/geoJSON_export.po create mode 100644 data/po/hu/geoToolbox.po create mode 100644 data/po/hu/gettextExample.po create mode 100644 data/po/hu/gimp.po create mode 100644 data/po/hu/gpx_export.po create mode 100644 data/po/hu/hugin.po create mode 100644 data/po/hu/image_stack.po create mode 100644 data/po/hu/image_time.po create mode 100644 data/po/hu/kml_export.po create mode 100644 data/po/hu/lighttable_demo.po create mode 100644 data/po/hu/moduleExample.po create mode 100644 data/po/hu/multi_os.po create mode 100644 data/po/hu/panels_demo.po create mode 100644 data/po/hu/passport_guide.po create mode 100644 data/po/hu/pdf_slideshow.po create mode 100644 data/po/hu/photils.po create mode 100644 data/po/hu/quicktag.po create mode 100644 data/po/hu/script_manager.po create mode 100644 data/po/hu/select_untagged.po create mode 100644 data/po/hu/slideshowMusic.po create mode 100644 data/po/hu/transfer_hierarchy.po create mode 100644 data/po/hu/video_ffmpeg.po create mode 100644 data/po/it/AutoGrouper.po create mode 100644 data/po/it/CollectHelper.po create mode 100644 data/po/it/HDRMerge.po create mode 100644 data/po/it/OpenInExplorer.po create mode 100644 data/po/it/RL_out_sharp.po create mode 100644 data/po/it/autostyle.po create mode 100644 data/po/it/clear_GPS.po create mode 100644 data/po/it/copy_attach_detach_tags.po create mode 100644 data/po/it/darkroom_demo.po create mode 100644 data/po/it/dtutils.po create mode 100644 data/po/it/enfuse.po create mode 100644 data/po/it/enfuseAdvanced.po create mode 100644 data/po/it/executable_manager.po create mode 100644 data/po/it/exportLUT.po rename {locale/it_IT/LC_MESSAGES => data/po/it}/ext_editor.po (100%) create mode 100644 data/po/it/face_recognition.po create mode 100644 data/po/it/fujifilm_ratings.po create mode 100644 data/po/it/geoJSON_export.po create mode 100644 data/po/it/geoToolbox.po create mode 100644 data/po/it/gettextExample.po create mode 100644 data/po/it/gimp.po create mode 100644 data/po/it/gpx_export.po create mode 100644 data/po/it/hugin.po create mode 100644 data/po/it/image_stack.po create mode 100644 data/po/it/image_time.po create mode 100644 data/po/it/kml_export.po create mode 100644 data/po/it/lighttable_demo.po create mode 100644 data/po/it/moduleExample.po create mode 100644 data/po/it/multi_os.po create mode 100644 data/po/it/panels_demo.po create mode 100644 data/po/it/passport_guide.po create mode 100644 data/po/it/pdf_slideshow.po create mode 100644 data/po/it/photils.po create mode 100644 data/po/it/quicktag.po create mode 100644 data/po/it/script_manager.po create mode 100644 data/po/it/select_untagged.po create mode 100644 data/po/it/slideshowMusic.po create mode 100644 data/po/it/transfer_hierarchy.po create mode 100644 data/po/it/video_ffmpeg.po create mode 100644 data/po/ja/AutoGrouper.po create mode 100644 data/po/ja/CollectHelper.po create mode 100644 data/po/ja/HDRMerge.po create mode 100644 data/po/ja/OpenInExplorer.po create mode 100644 data/po/ja/RL_out_sharp.po create mode 100644 data/po/ja/autostyle.po create mode 100644 data/po/ja/clear_GPS.po create mode 100644 data/po/ja/copy_attach_detach_tags.po create mode 100644 data/po/ja/darkroom_demo.po create mode 100644 data/po/ja/dtutils.po create mode 100644 data/po/ja/enfuse.po create mode 100644 data/po/ja/enfuseAdvanced.po create mode 100644 data/po/ja/executable_manager.po create mode 100644 data/po/ja/exportLUT.po create mode 100644 data/po/ja/ext_editor.po create mode 100644 data/po/ja/face_recognition.po create mode 100644 data/po/ja/fujifilm_ratings.po create mode 100644 data/po/ja/geoJSON_export.po create mode 100644 data/po/ja/geoToolbox.po create mode 100644 data/po/ja/gettextExample.po create mode 100644 data/po/ja/gimp.po create mode 100644 data/po/ja/gpx_export.po create mode 100644 data/po/ja/hugin.po create mode 100644 data/po/ja/image_stack.po create mode 100644 data/po/ja/image_time.po create mode 100644 data/po/ja/kml_export.po create mode 100644 data/po/ja/lighttable_demo.po create mode 100644 data/po/ja/moduleExample.po create mode 100644 data/po/ja/multi_os.po create mode 100644 data/po/ja/panels_demo.po create mode 100644 data/po/ja/passport_guide.po create mode 100644 data/po/ja/pdf_slideshow.po create mode 100644 data/po/ja/photils.po create mode 100644 data/po/ja/quicktag.po create mode 100644 data/po/ja/script_manager.po create mode 100644 data/po/ja/select_untagged.po create mode 100644 data/po/ja/slideshowMusic.po create mode 100644 data/po/ja/transfer_hierarchy.po create mode 100644 data/po/ja/video_ffmpeg.po create mode 100644 data/po/nb/AutoGrouper.po create mode 100644 data/po/nb/CollectHelper.po create mode 100644 data/po/nb/HDRMerge.po create mode 100644 data/po/nb/OpenInExplorer.po create mode 100644 data/po/nb/RL_out_sharp.po create mode 100644 data/po/nb/autostyle.po create mode 100644 data/po/nb/clear_GPS.po create mode 100644 data/po/nb/copy_attach_detach_tags.po create mode 100644 data/po/nb/darkroom_demo.po create mode 100644 data/po/nb/dtutils.po create mode 100644 data/po/nb/enfuse.po create mode 100644 data/po/nb/enfuseAdvanced.po create mode 100644 data/po/nb/executable_manager.po create mode 100644 data/po/nb/exportLUT.po create mode 100644 data/po/nb/ext_editor.po create mode 100644 data/po/nb/face_recognition.po create mode 100644 data/po/nb/fujifilm_ratings.po create mode 100644 data/po/nb/geoJSON_export.po create mode 100644 data/po/nb/geoToolbox.po create mode 100644 data/po/nb/gettextExample.po create mode 100644 data/po/nb/gimp.po create mode 100644 data/po/nb/gpx_export.po create mode 100644 data/po/nb/hugin.po create mode 100644 data/po/nb/image_stack.po create mode 100644 data/po/nb/image_time.po create mode 100644 data/po/nb/kml_export.po create mode 100644 data/po/nb/lighttable_demo.po create mode 100644 data/po/nb/moduleExample.po create mode 100644 data/po/nb/multi_os.po create mode 100644 data/po/nb/panels_demo.po create mode 100644 data/po/nb/passport_guide.po create mode 100644 data/po/nb/pdf_slideshow.po create mode 100644 data/po/nb/photils.po create mode 100644 data/po/nb/quicktag.po create mode 100644 data/po/nb/script_manager.po create mode 100644 data/po/nb/select_untagged.po create mode 100644 data/po/nb/slideshowMusic.po create mode 100644 data/po/nb/transfer_hierarchy.po create mode 100644 data/po/nb/video_ffmpeg.po create mode 100644 data/po/nl/AutoGrouper.po create mode 100644 data/po/nl/CollectHelper.po create mode 100644 data/po/nl/HDRMerge.po create mode 100644 data/po/nl/OpenInExplorer.po create mode 100644 data/po/nl/RL_out_sharp.po create mode 100644 data/po/nl/autostyle.po create mode 100644 data/po/nl/clear_GPS.po create mode 100644 data/po/nl/copy_attach_detach_tags.po create mode 100644 data/po/nl/darkroom_demo.po create mode 100644 data/po/nl/dtutils.po create mode 100644 data/po/nl/enfuse.po create mode 100644 data/po/nl/enfuseAdvanced.po create mode 100644 data/po/nl/executable_manager.po create mode 100644 data/po/nl/exportLUT.po create mode 100644 data/po/nl/ext_editor.po create mode 100644 data/po/nl/face_recognition.po create mode 100644 data/po/nl/fujifilm_ratings.po create mode 100644 data/po/nl/geoJSON_export.po create mode 100644 data/po/nl/geoToolbox.po create mode 100644 data/po/nl/gettextExample.po create mode 100644 data/po/nl/gimp.po create mode 100644 data/po/nl/gpx_export.po create mode 100644 data/po/nl/hugin.po create mode 100644 data/po/nl/image_stack.po create mode 100644 data/po/nl/image_time.po create mode 100644 data/po/nl/kml_export.po create mode 100644 data/po/nl/lighttable_demo.po create mode 100644 data/po/nl/moduleExample.po create mode 100644 data/po/nl/multi_os.po create mode 100644 data/po/nl/panels_demo.po create mode 100644 data/po/nl/passport_guide.po create mode 100644 data/po/nl/pdf_slideshow.po create mode 100644 data/po/nl/photils.po create mode 100644 data/po/nl/quicktag.po create mode 100644 data/po/nl/script_manager.po create mode 100644 data/po/nl/select_untagged.po create mode 100644 data/po/nl/slideshowMusic.po create mode 100644 data/po/nl/transfer_hierarchy.po create mode 100644 data/po/nl/video_ffmpeg.po create mode 100644 data/po/pl/AutoGrouper.po create mode 100644 data/po/pl/CollectHelper.po create mode 100644 data/po/pl/HDRMerge.po create mode 100644 data/po/pl/OpenInExplorer.po create mode 100644 data/po/pl/RL_out_sharp.po create mode 100644 data/po/pl/autostyle.po create mode 100644 data/po/pl/clear_GPS.po create mode 100644 data/po/pl/copy_attach_detach_tags.po create mode 100644 data/po/pl/darkroom_demo.po create mode 100644 data/po/pl/dtutils.po create mode 100644 data/po/pl/enfuse.po create mode 100644 data/po/pl/enfuseAdvanced.po create mode 100644 data/po/pl/executable_manager.po create mode 100644 data/po/pl/exportLUT.po create mode 100644 data/po/pl/ext_editor.po create mode 100644 data/po/pl/face_recognition.po create mode 100644 data/po/pl/fujifilm_ratings.po create mode 100644 data/po/pl/geoJSON_export.po create mode 100644 data/po/pl/geoToolbox.po create mode 100644 data/po/pl/gettextExample.po create mode 100644 data/po/pl/gimp.po create mode 100644 data/po/pl/gpx_export.po create mode 100644 data/po/pl/hugin.po create mode 100644 data/po/pl/image_stack.po create mode 100644 data/po/pl/image_time.po create mode 100644 data/po/pl/kml_export.po create mode 100644 data/po/pl/lighttable_demo.po create mode 100644 data/po/pl/moduleExample.po create mode 100644 data/po/pl/multi_os.po create mode 100644 data/po/pl/panels_demo.po create mode 100644 data/po/pl/passport_guide.po create mode 100644 data/po/pl/pdf_slideshow.po create mode 100644 data/po/pl/photils.po create mode 100644 data/po/pl/quicktag.po create mode 100644 data/po/pl/script_manager.po create mode 100644 data/po/pl/select_untagged.po create mode 100644 data/po/pl/slideshowMusic.po create mode 100644 data/po/pl/transfer_hierarchy.po create mode 100644 data/po/pl/video_ffmpeg.po create mode 100644 data/po/pt_BR/AutoGrouper.po create mode 100644 data/po/pt_BR/CollectHelper.po create mode 100644 data/po/pt_BR/HDRMerge.po create mode 100644 data/po/pt_BR/OpenInExplorer.po create mode 100644 data/po/pt_BR/RL_out_sharp.po create mode 100644 data/po/pt_BR/autostyle.po create mode 100644 data/po/pt_BR/clear_GPS.po create mode 100644 data/po/pt_BR/copy_attach_detach_tags.po create mode 100644 data/po/pt_BR/darkroom_demo.po create mode 100644 data/po/pt_BR/dtutils.po create mode 100644 data/po/pt_BR/enfuse.po create mode 100644 data/po/pt_BR/enfuseAdvanced.po create mode 100644 data/po/pt_BR/executable_manager.po create mode 100644 data/po/pt_BR/exportLUT.po create mode 100644 data/po/pt_BR/ext_editor.po create mode 100644 data/po/pt_BR/face_recognition.po create mode 100644 data/po/pt_BR/fujifilm_ratings.po create mode 100644 data/po/pt_BR/geoJSON_export.po create mode 100644 data/po/pt_BR/geoToolbox.po create mode 100644 data/po/pt_BR/gettextExample.po create mode 100644 data/po/pt_BR/gimp.po create mode 100644 data/po/pt_BR/gpx_export.po create mode 100644 data/po/pt_BR/hugin.po create mode 100644 data/po/pt_BR/image_stack.po create mode 100644 data/po/pt_BR/image_time.po create mode 100644 data/po/pt_BR/kml_export.po create mode 100644 data/po/pt_BR/lighttable_demo.po create mode 100644 data/po/pt_BR/moduleExample.po create mode 100644 data/po/pt_BR/multi_os.po create mode 100644 data/po/pt_BR/panels_demo.po create mode 100644 data/po/pt_BR/passport_guide.po create mode 100644 data/po/pt_BR/pdf_slideshow.po create mode 100644 data/po/pt_BR/photils.po create mode 100644 data/po/pt_BR/quicktag.po create mode 100644 data/po/pt_BR/script_manager.po create mode 100644 data/po/pt_BR/select_untagged.po create mode 100644 data/po/pt_BR/slideshowMusic.po create mode 100644 data/po/pt_BR/transfer_hierarchy.po create mode 100644 data/po/pt_BR/video_ffmpeg.po create mode 100644 data/po/pt_PT/AutoGrouper.po create mode 100644 data/po/pt_PT/CollectHelper.po create mode 100644 data/po/pt_PT/HDRMerge.po create mode 100644 data/po/pt_PT/OpenInExplorer.po create mode 100644 data/po/pt_PT/RL_out_sharp.po create mode 100644 data/po/pt_PT/autostyle.po create mode 100644 data/po/pt_PT/clear_GPS.po create mode 100644 data/po/pt_PT/copy_attach_detach_tags.po create mode 100644 data/po/pt_PT/darkroom_demo.po create mode 100644 data/po/pt_PT/dtutils.po create mode 100644 data/po/pt_PT/enfuse.po create mode 100644 data/po/pt_PT/enfuseAdvanced.po create mode 100644 data/po/pt_PT/executable_manager.po create mode 100644 data/po/pt_PT/exportLUT.po create mode 100644 data/po/pt_PT/ext_editor.po create mode 100644 data/po/pt_PT/face_recognition.po create mode 100644 data/po/pt_PT/fujifilm_ratings.po create mode 100644 data/po/pt_PT/geoJSON_export.po create mode 100644 data/po/pt_PT/geoToolbox.po create mode 100644 data/po/pt_PT/gettextExample.po create mode 100644 data/po/pt_PT/gimp.po create mode 100644 data/po/pt_PT/gpx_export.po create mode 100644 data/po/pt_PT/hugin.po create mode 100644 data/po/pt_PT/image_stack.po create mode 100644 data/po/pt_PT/image_time.po create mode 100644 data/po/pt_PT/kml_export.po create mode 100644 data/po/pt_PT/lighttable_demo.po create mode 100644 data/po/pt_PT/moduleExample.po create mode 100644 data/po/pt_PT/multi_os.po create mode 100644 data/po/pt_PT/panels_demo.po create mode 100644 data/po/pt_PT/passport_guide.po create mode 100644 data/po/pt_PT/pdf_slideshow.po create mode 100644 data/po/pt_PT/photils.po create mode 100644 data/po/pt_PT/quicktag.po create mode 100644 data/po/pt_PT/script_manager.po create mode 100644 data/po/pt_PT/select_untagged.po create mode 100644 data/po/pt_PT/slideshowMusic.po create mode 100644 data/po/pt_PT/transfer_hierarchy.po create mode 100644 data/po/pt_PT/video_ffmpeg.po create mode 100644 data/po/ro/AutoGrouper.po create mode 100644 data/po/ro/CollectHelper.po create mode 100644 data/po/ro/HDRMerge.po create mode 100644 data/po/ro/OpenInExplorer.po create mode 100644 data/po/ro/RL_out_sharp.po create mode 100644 data/po/ro/autostyle.po create mode 100644 data/po/ro/clear_GPS.po create mode 100644 data/po/ro/copy_attach_detach_tags.po create mode 100644 data/po/ro/darkroom_demo.po create mode 100644 data/po/ro/dtutils.po create mode 100644 data/po/ro/enfuse.po create mode 100644 data/po/ro/enfuseAdvanced.po create mode 100644 data/po/ro/executable_manager.po create mode 100644 data/po/ro/exportLUT.po create mode 100644 data/po/ro/ext_editor.po create mode 100644 data/po/ro/face_recognition.po create mode 100644 data/po/ro/fujifilm_ratings.po create mode 100644 data/po/ro/geoJSON_export.po create mode 100644 data/po/ro/geoToolbox.po create mode 100644 data/po/ro/gettextExample.po create mode 100644 data/po/ro/gimp.po create mode 100644 data/po/ro/gpx_export.po create mode 100644 data/po/ro/hugin.po create mode 100644 data/po/ro/image_stack.po create mode 100644 data/po/ro/image_time.po create mode 100644 data/po/ro/kml_export.po create mode 100644 data/po/ro/lighttable_demo.po create mode 100644 data/po/ro/moduleExample.po create mode 100644 data/po/ro/multi_os.po create mode 100644 data/po/ro/panels_demo.po create mode 100644 data/po/ro/passport_guide.po create mode 100644 data/po/ro/pdf_slideshow.po create mode 100644 data/po/ro/photils.po create mode 100644 data/po/ro/quicktag.po create mode 100644 data/po/ro/script_manager.po create mode 100644 data/po/ro/select_untagged.po create mode 100644 data/po/ro/slideshowMusic.po create mode 100644 data/po/ro/transfer_hierarchy.po create mode 100644 data/po/ro/video_ffmpeg.po create mode 100644 data/po/ru/AutoGrouper.po create mode 100644 data/po/ru/CollectHelper.po create mode 100644 data/po/ru/HDRMerge.po create mode 100644 data/po/ru/OpenInExplorer.po create mode 100644 data/po/ru/RL_out_sharp.po create mode 100644 data/po/ru/autostyle.po create mode 100644 data/po/ru/clear_GPS.po create mode 100644 data/po/ru/copy_attach_detach_tags.po create mode 100644 data/po/ru/darkroom_demo.po create mode 100644 data/po/ru/dtutils.po create mode 100644 data/po/ru/enfuse.po create mode 100644 data/po/ru/enfuseAdvanced.po create mode 100644 data/po/ru/executable_manager.po create mode 100644 data/po/ru/exportLUT.po create mode 100644 data/po/ru/ext_editor.po create mode 100644 data/po/ru/face_recognition.po create mode 100644 data/po/ru/fujifilm_ratings.po create mode 100644 data/po/ru/geoJSON_export.po create mode 100644 data/po/ru/geoToolbox.po create mode 100644 data/po/ru/gettextExample.po create mode 100644 data/po/ru/gimp.po create mode 100644 data/po/ru/gpx_export.po create mode 100644 data/po/ru/hugin.po create mode 100644 data/po/ru/image_stack.po create mode 100644 data/po/ru/image_time.po create mode 100644 data/po/ru/kml_export.po create mode 100644 data/po/ru/lighttable_demo.po create mode 100644 data/po/ru/moduleExample.po create mode 100644 data/po/ru/multi_os.po create mode 100644 data/po/ru/panels_demo.po create mode 100644 data/po/ru/passport_guide.po create mode 100644 data/po/ru/pdf_slideshow.po create mode 100644 data/po/ru/photils.po create mode 100644 data/po/ru/quicktag.po create mode 100644 data/po/ru/script_manager.po create mode 100644 data/po/ru/select_untagged.po create mode 100644 data/po/ru/slideshowMusic.po create mode 100644 data/po/ru/transfer_hierarchy.po create mode 100644 data/po/ru/video_ffmpeg.po create mode 100644 data/po/sk/AutoGrouper.po create mode 100644 data/po/sk/CollectHelper.po create mode 100644 data/po/sk/HDRMerge.po create mode 100644 data/po/sk/OpenInExplorer.po create mode 100644 data/po/sk/RL_out_sharp.po create mode 100644 data/po/sk/autostyle.po create mode 100644 data/po/sk/clear_GPS.po create mode 100644 data/po/sk/copy_attach_detach_tags.po create mode 100644 data/po/sk/darkroom_demo.po create mode 100644 data/po/sk/dtutils.po create mode 100644 data/po/sk/enfuse.po create mode 100644 data/po/sk/enfuseAdvanced.po create mode 100644 data/po/sk/executable_manager.po create mode 100644 data/po/sk/exportLUT.po create mode 100644 data/po/sk/ext_editor.po create mode 100644 data/po/sk/face_recognition.po create mode 100644 data/po/sk/fujifilm_ratings.po create mode 100644 data/po/sk/geoJSON_export.po create mode 100644 data/po/sk/geoToolbox.po create mode 100644 data/po/sk/gettextExample.po create mode 100644 data/po/sk/gimp.po create mode 100644 data/po/sk/gpx_export.po create mode 100644 data/po/sk/hugin.po create mode 100644 data/po/sk/image_stack.po create mode 100644 data/po/sk/image_time.po create mode 100644 data/po/sk/kml_export.po create mode 100644 data/po/sk/lighttable_demo.po create mode 100644 data/po/sk/moduleExample.po create mode 100644 data/po/sk/multi_os.po create mode 100644 data/po/sk/panels_demo.po create mode 100644 data/po/sk/passport_guide.po create mode 100644 data/po/sk/pdf_slideshow.po create mode 100644 data/po/sk/photils.po create mode 100644 data/po/sk/quicktag.po create mode 100644 data/po/sk/script_manager.po create mode 100644 data/po/sk/select_untagged.po create mode 100644 data/po/sk/slideshowMusic.po create mode 100644 data/po/sk/transfer_hierarchy.po create mode 100644 data/po/sk/video_ffmpeg.po create mode 100644 data/po/sl/AutoGrouper.po create mode 100644 data/po/sl/CollectHelper.po create mode 100644 data/po/sl/HDRMerge.po create mode 100644 data/po/sl/OpenInExplorer.po create mode 100644 data/po/sl/RL_out_sharp.po create mode 100644 data/po/sl/autostyle.po create mode 100644 data/po/sl/clear_GPS.po create mode 100644 data/po/sl/copy_attach_detach_tags.po create mode 100644 data/po/sl/darkroom_demo.po create mode 100644 data/po/sl/dtutils.po create mode 100644 data/po/sl/enfuse.po create mode 100644 data/po/sl/enfuseAdvanced.po create mode 100644 data/po/sl/executable_manager.po create mode 100644 data/po/sl/exportLUT.po create mode 100644 data/po/sl/ext_editor.po create mode 100644 data/po/sl/face_recognition.po create mode 100644 data/po/sl/fujifilm_ratings.po create mode 100644 data/po/sl/geoJSON_export.po create mode 100644 data/po/sl/geoToolbox.po create mode 100644 data/po/sl/gettextExample.po create mode 100644 data/po/sl/gimp.po create mode 100644 data/po/sl/gpx_export.po create mode 100644 data/po/sl/hugin.po create mode 100644 data/po/sl/image_stack.po create mode 100644 data/po/sl/image_time.po create mode 100644 data/po/sl/kml_export.po create mode 100644 data/po/sl/lighttable_demo.po create mode 100644 data/po/sl/moduleExample.po create mode 100644 data/po/sl/multi_os.po create mode 100644 data/po/sl/panels_demo.po create mode 100644 data/po/sl/passport_guide.po create mode 100644 data/po/sl/pdf_slideshow.po create mode 100644 data/po/sl/photils.po create mode 100644 data/po/sl/quicktag.po create mode 100644 data/po/sl/script_manager.po create mode 100644 data/po/sl/select_untagged.po create mode 100644 data/po/sl/slideshowMusic.po create mode 100644 data/po/sl/transfer_hierarchy.po create mode 100644 data/po/sl/video_ffmpeg.po create mode 100644 data/po/sq/AutoGrouper.po create mode 100644 data/po/sq/CollectHelper.po create mode 100644 data/po/sq/HDRMerge.po create mode 100644 data/po/sq/OpenInExplorer.po create mode 100644 data/po/sq/RL_out_sharp.po create mode 100644 data/po/sq/autostyle.po create mode 100644 data/po/sq/clear_GPS.po create mode 100644 data/po/sq/copy_attach_detach_tags.po create mode 100644 data/po/sq/darkroom_demo.po create mode 100644 data/po/sq/dtutils.po create mode 100644 data/po/sq/enfuse.po create mode 100644 data/po/sq/enfuseAdvanced.po create mode 100644 data/po/sq/executable_manager.po create mode 100644 data/po/sq/exportLUT.po create mode 100644 data/po/sq/ext_editor.po create mode 100644 data/po/sq/face_recognition.po create mode 100644 data/po/sq/fujifilm_ratings.po create mode 100644 data/po/sq/geoJSON_export.po create mode 100644 data/po/sq/geoToolbox.po create mode 100644 data/po/sq/gettextExample.po create mode 100644 data/po/sq/gimp.po create mode 100644 data/po/sq/gpx_export.po create mode 100644 data/po/sq/hugin.po create mode 100644 data/po/sq/image_stack.po create mode 100644 data/po/sq/image_time.po create mode 100644 data/po/sq/kml_export.po create mode 100644 data/po/sq/lighttable_demo.po create mode 100644 data/po/sq/moduleExample.po create mode 100644 data/po/sq/multi_os.po create mode 100644 data/po/sq/panels_demo.po create mode 100644 data/po/sq/passport_guide.po create mode 100644 data/po/sq/pdf_slideshow.po create mode 100644 data/po/sq/photils.po create mode 100644 data/po/sq/quicktag.po create mode 100644 data/po/sq/script_manager.po create mode 100644 data/po/sq/select_untagged.po create mode 100644 data/po/sq/slideshowMusic.po create mode 100644 data/po/sq/transfer_hierarchy.po create mode 100644 data/po/sq/video_ffmpeg.po create mode 100644 data/po/sv/AutoGrouper.po create mode 100644 data/po/sv/CollectHelper.po create mode 100644 data/po/sv/HDRMerge.po create mode 100644 data/po/sv/OpenInExplorer.po create mode 100644 data/po/sv/RL_out_sharp.po create mode 100644 data/po/sv/autostyle.po create mode 100644 data/po/sv/clear_GPS.po create mode 100644 data/po/sv/copy_attach_detach_tags.po create mode 100644 data/po/sv/darkroom_demo.po create mode 100644 data/po/sv/dtutils.po create mode 100644 data/po/sv/enfuse.po create mode 100644 data/po/sv/enfuseAdvanced.po create mode 100644 data/po/sv/executable_manager.po create mode 100644 data/po/sv/exportLUT.po create mode 100644 data/po/sv/ext_editor.po create mode 100644 data/po/sv/face_recognition.po create mode 100644 data/po/sv/fujifilm_ratings.po create mode 100644 data/po/sv/geoJSON_export.po create mode 100644 data/po/sv/geoToolbox.po create mode 100644 data/po/sv/gettextExample.po create mode 100644 data/po/sv/gimp.po create mode 100644 data/po/sv/gpx_export.po create mode 100644 data/po/sv/hugin.po create mode 100644 data/po/sv/image_stack.po create mode 100644 data/po/sv/image_time.po create mode 100644 data/po/sv/kml_export.po create mode 100644 data/po/sv/lighttable_demo.po create mode 100644 data/po/sv/moduleExample.po create mode 100644 data/po/sv/multi_os.po create mode 100644 data/po/sv/panels_demo.po create mode 100644 data/po/sv/passport_guide.po create mode 100644 data/po/sv/pdf_slideshow.po create mode 100644 data/po/sv/photils.po create mode 100644 data/po/sv/quicktag.po create mode 100644 data/po/sv/script_manager.po create mode 100644 data/po/sv/select_untagged.po create mode 100644 data/po/sv/slideshowMusic.po create mode 100644 data/po/sv/transfer_hierarchy.po create mode 100644 data/po/sv/video_ffmpeg.po create mode 100644 data/po/th/AutoGrouper.po create mode 100644 data/po/th/CollectHelper.po create mode 100644 data/po/th/HDRMerge.po create mode 100644 data/po/th/OpenInExplorer.po create mode 100644 data/po/th/RL_out_sharp.po create mode 100644 data/po/th/autostyle.po create mode 100644 data/po/th/clear_GPS.po create mode 100644 data/po/th/copy_attach_detach_tags.po create mode 100644 data/po/th/darkroom_demo.po create mode 100644 data/po/th/dtutils.po create mode 100644 data/po/th/enfuse.po create mode 100644 data/po/th/enfuseAdvanced.po create mode 100644 data/po/th/executable_manager.po create mode 100644 data/po/th/exportLUT.po create mode 100644 data/po/th/ext_editor.po create mode 100644 data/po/th/face_recognition.po create mode 100644 data/po/th/fujifilm_ratings.po create mode 100644 data/po/th/geoJSON_export.po create mode 100644 data/po/th/geoToolbox.po create mode 100644 data/po/th/gettextExample.po create mode 100644 data/po/th/gimp.po create mode 100644 data/po/th/gpx_export.po create mode 100644 data/po/th/hugin.po create mode 100644 data/po/th/image_stack.po create mode 100644 data/po/th/image_time.po create mode 100644 data/po/th/kml_export.po create mode 100644 data/po/th/lighttable_demo.po create mode 100644 data/po/th/moduleExample.po create mode 100644 data/po/th/multi_os.po create mode 100644 data/po/th/panels_demo.po create mode 100644 data/po/th/passport_guide.po create mode 100644 data/po/th/pdf_slideshow.po create mode 100644 data/po/th/photils.po create mode 100644 data/po/th/quicktag.po create mode 100644 data/po/th/script_manager.po create mode 100644 data/po/th/select_untagged.po create mode 100644 data/po/th/slideshowMusic.po create mode 100644 data/po/th/transfer_hierarchy.po create mode 100644 data/po/th/video_ffmpeg.po create mode 100644 data/po/zh_CN/AutoGrouper.po create mode 100644 data/po/zh_CN/CollectHelper.po create mode 100644 data/po/zh_CN/HDRMerge.po create mode 100644 data/po/zh_CN/OpenInExplorer.po create mode 100644 data/po/zh_CN/RL_out_sharp.po create mode 100644 data/po/zh_CN/autostyle.po create mode 100644 data/po/zh_CN/clear_GPS.po create mode 100644 data/po/zh_CN/copy_attach_detach_tags.po create mode 100644 data/po/zh_CN/darkroom_demo.po create mode 100644 data/po/zh_CN/dtutils.po create mode 100644 data/po/zh_CN/enfuse.po create mode 100644 data/po/zh_CN/enfuseAdvanced.po create mode 100644 data/po/zh_CN/executable_manager.po create mode 100644 data/po/zh_CN/exportLUT.po create mode 100644 data/po/zh_CN/ext_editor.po create mode 100644 data/po/zh_CN/face_recognition.po create mode 100644 data/po/zh_CN/fujifilm_ratings.po create mode 100644 data/po/zh_CN/geoJSON_export.po create mode 100644 data/po/zh_CN/geoToolbox.po create mode 100644 data/po/zh_CN/gettextExample.po create mode 100644 data/po/zh_CN/gimp.po create mode 100644 data/po/zh_CN/gpx_export.po create mode 100644 data/po/zh_CN/hugin.po create mode 100644 data/po/zh_CN/image_stack.po create mode 100644 data/po/zh_CN/image_time.po create mode 100644 data/po/zh_CN/kml_export.po create mode 100644 data/po/zh_CN/lighttable_demo.po create mode 100644 data/po/zh_CN/moduleExample.po create mode 100644 data/po/zh_CN/multi_os.po create mode 100644 data/po/zh_CN/panels_demo.po create mode 100644 data/po/zh_CN/passport_guide.po create mode 100644 data/po/zh_CN/pdf_slideshow.po create mode 100644 data/po/zh_CN/photils.po create mode 100644 data/po/zh_CN/quicktag.po create mode 100644 data/po/zh_CN/script_manager.po create mode 100644 data/po/zh_CN/select_untagged.po create mode 100644 data/po/zh_CN/slideshowMusic.po create mode 100644 data/po/zh_CN/transfer_hierarchy.po create mode 100644 data/po/zh_CN/video_ffmpeg.po create mode 100644 data/po/zh_TW/AutoGrouper.po create mode 100644 data/po/zh_TW/CollectHelper.po create mode 100644 data/po/zh_TW/HDRMerge.po create mode 100644 data/po/zh_TW/OpenInExplorer.po create mode 100644 data/po/zh_TW/RL_out_sharp.po create mode 100644 data/po/zh_TW/autostyle.po create mode 100644 data/po/zh_TW/clear_GPS.po create mode 100644 data/po/zh_TW/copy_attach_detach_tags.po create mode 100644 data/po/zh_TW/darkroom_demo.po create mode 100644 data/po/zh_TW/dtutils.po create mode 100644 data/po/zh_TW/enfuse.po create mode 100644 data/po/zh_TW/enfuseAdvanced.po create mode 100644 data/po/zh_TW/executable_manager.po create mode 100644 data/po/zh_TW/exportLUT.po create mode 100644 data/po/zh_TW/ext_editor.po create mode 100644 data/po/zh_TW/face_recognition.po create mode 100644 data/po/zh_TW/fujifilm_ratings.po create mode 100644 data/po/zh_TW/geoJSON_export.po create mode 100644 data/po/zh_TW/geoToolbox.po create mode 100644 data/po/zh_TW/gettextExample.po create mode 100644 data/po/zh_TW/gimp.po create mode 100644 data/po/zh_TW/gpx_export.po create mode 100644 data/po/zh_TW/hugin.po create mode 100644 data/po/zh_TW/image_stack.po create mode 100644 data/po/zh_TW/image_time.po create mode 100644 data/po/zh_TW/kml_export.po create mode 100644 data/po/zh_TW/lighttable_demo.po create mode 100644 data/po/zh_TW/moduleExample.po create mode 100644 data/po/zh_TW/multi_os.po create mode 100644 data/po/zh_TW/panels_demo.po create mode 100644 data/po/zh_TW/passport_guide.po create mode 100644 data/po/zh_TW/pdf_slideshow.po create mode 100644 data/po/zh_TW/photils.po create mode 100644 data/po/zh_TW/quicktag.po create mode 100644 data/po/zh_TW/script_manager.po create mode 100644 data/po/zh_TW/select_untagged.po create mode 100644 data/po/zh_TW/slideshowMusic.po create mode 100644 data/po/zh_TW/transfer_hierarchy.po create mode 100644 data/po/zh_TW/video_ffmpeg.po create mode 100644 locale/af/LC_MESSAGES/scripts.mo create mode 100644 locale/ca/LC_MESSAGES/scripts.mo create mode 100644 locale/cs/LC_MESSAGES/scripts.mo create mode 100644 locale/da/LC_MESSAGES/scripts.mo create mode 100644 locale/de/LC_MESSAGES/scripts.mo delete mode 100644 locale/de_DE/LC_MESSAGES/calcDistance.po delete mode 100644 locale/de_DE/LC_MESSAGES/geo_uri.po delete mode 100644 locale/de_DE/LC_MESSAGES/gps_select.po create mode 100644 locale/el/LC_MESSAGES/scripts.mo create mode 100644 locale/es/LC_MESSAGES/scripts.mo create mode 100644 locale/fi/LC_MESSAGES/scripts.mo create mode 100644 locale/fr/LC_MESSAGES/scripts.mo delete mode 100644 locale/fr_FR/LC_MESSAGES/calcDistance.po delete mode 100644 locale/fr_FR/LC_MESSAGES/geo_uri.po delete mode 100644 locale/fr_FR/LC_MESSAGES/gps_select.po create mode 100644 locale/gl/LC_MESSAGES/scripts.mo create mode 100644 locale/he/LC_MESSAGES/scripts.mo create mode 100644 locale/hu/LC_MESSAGES/scripts.mo create mode 100644 locale/it/LC_MESSAGES/scripts.mo create mode 100644 locale/ja/LC_MESSAGES/scripts.mo create mode 100644 locale/nb/LC_MESSAGES/scripts.mo create mode 100644 locale/nl/LC_MESSAGES/scripts.mo create mode 100644 locale/pl/LC_MESSAGES/scripts.mo create mode 100644 locale/pt_BR/LC_MESSAGES/scripts.mo create mode 100644 locale/pt_PT/LC_MESSAGES/scripts.mo create mode 100644 locale/ro/LC_MESSAGES/scripts.mo create mode 100644 locale/ru/LC_MESSAGES/scripts.mo create mode 100644 locale/sk/LC_MESSAGES/scripts.mo create mode 100644 locale/sl/LC_MESSAGES/scripts.mo create mode 100644 locale/sq/LC_MESSAGES/scripts.mo create mode 100644 locale/sv/LC_MESSAGES/scripts.mo create mode 100644 locale/th/LC_MESSAGES/scripts.mo create mode 100644 locale/zh_CN/LC_MESSAGES/scripts.mo create mode 100644 locale/zh_TW/LC_MESSAGES/scripts.mo create mode 100644 tools/create_mo.sh create mode 100644 tools/create_potfiles.sh create mode 100644 tools/fix_header.sh create mode 100644 tools/update_po_files.sh 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 54f71128..a1379309 100644 --- a/contrib/autostyle.lua +++ b/contrib/autostyle.lua @@ -40,14 +40,14 @@ local darktable = require "darktable" local du = require "lib/dtutils" local filelib = require "lib/dtutils.file" -local gettext = dt.gettext +local gettext = darktable.gettext -- Tell gettext where to find the .mo file translating messages for a particular domain -gettext.bindtextdomain("autostyle",dt.configuration.config_dir.."/lua/locale/") +gettext.bindtextdomain("scripts",darktable.configuration.config_dir.."/lua/locale/") local function _(msgid) - return gettext.dgettext("autostyle", msgid) + return gettext.dgettext("scripts", msgid) end -- Forward declare the functions 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/POTFILES.in b/data/po/POTFILES.in new file mode 100644 index 00000000..d9c49b37 --- /dev/null +++ b/data/po/POTFILES.in @@ -0,0 +1,41 @@ +../../official/enfuse.lua +../../lib/dtutils/processor.lua +../../lib/dtutils/file.lua +../../lib/dtutils.lua +../../examples/gettextExample.lua +../../examples/lighttable_demo.lua +../../examples/darkroom_demo.lua +../../examples/multi_os.lua +../../examples/moduleExample.lua +../../examples/panels_demo.lua +../../contrib/RL_out_sharp.lua +../../contrib/select_untagged.lua +../../contrib/AutoGrouper.lua +../../contrib/quicktag.lua +../../contrib/geoJSON_export.lua +../../contrib/transfer_hierarchy.lua +../../contrib/slideshowMusic.lua +../../contrib/ext_editor.lua +../../contrib/clear_GPS.lua +../../contrib/kml_export.lua +../../contrib/photils.lua +../../contrib/copy_attach_detach_tags.lua +../../contrib/fujifilm_ratings.lua +../../contrib/OpenInExplorer.lua +../../contrib/autostyle.lua +../../contrib/gimp.lua +../../contrib/enfuseAdvanced.lua +../../contrib/image_stack.lua +../../contrib/geoToolbox.lua +../../contrib/gpx_export.lua +../../contrib/exportLUT.lua +../../contrib/image_time.lua +../../contrib/video_ffmpeg.lua +../../contrib/pdf_slideshow.lua +../../contrib/hugin.lua +../../contrib/CollectHelper.lua +../../contrib/HDRMerge.lua +../../contrib/passport_guide.lua +../../contrib/face_recognition.lua +../../tools/script_manager.lua +../../tools/executable_manager.lua 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..49ac415b --- /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-22 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" + +#: ../../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/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..804287a5 --- /dev/null +++ b/data/po/af/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..678f682f --- /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-22 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" + +#: ../../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/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..f0c9125b --- /dev/null +++ b/data/po/ca/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..71728bd8 --- /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-22 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" + +#: ../../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/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..920e71e1 --- /dev/null +++ b/data/po/cs/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..571b0d4a --- /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-22 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" + +#: ../../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/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..c0ab37fd --- /dev/null +++ b/data/po/da/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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/locale/de/LC_MESSAGES/autostyle.po b/data/po/de/autostyle.po similarity index 94% rename from locale/de/LC_MESSAGES/autostyle.po rename to data/po/de/autostyle.po index 7dece564..f8465c35 100644 --- a/locale/de/LC_MESSAGES/autostyle.po +++ b/data/po/de/autostyle.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: 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: \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" #: contrib/autostyle.lua:71 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..b7a6e1b9 --- /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-19 20:10-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 +msgid "ERROR: " +msgstr "T(ERROR: )" + +#: lib/dtutils.lua:77 +msgid " failed to load. Lua API version " +msgstr "T( failed to load. Lua API version )" + +#: lib/dtutils.lua:77 +msgid " or later required." +msgstr "T( or later required.)" + +#: lib/dtutils.lua:78 +msgid "Minimum API " +msgstr "T(Minimum API )" + +#: 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/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..f8cc46c2 --- /dev/null +++ b/data/po/de/script_manager.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: 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 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..e87e90ce --- /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-22 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" + +#: ../../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/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..58b1851f --- /dev/null +++ b/data/po/el/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..d6ea5cc6 --- /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-22 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" + +#: ../../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/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..1b345f0c --- /dev/null +++ b/data/po/es/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..62ef2225 --- /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-22 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" + +#: ../../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/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..4fc01181 --- /dev/null +++ b/data/po/fi/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..5f16eb64 --- /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-22 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" + +#: ../../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/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..c67755c4 --- /dev/null +++ b/data/po/fr/script_manager.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: 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 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..3d0674e9 --- /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-22 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" + +#: ../../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/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..5c4ecac9 --- /dev/null +++ b/data/po/gl/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..c25d03bc --- /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-22 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" + +#: ../../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/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..424b8c84 --- /dev/null +++ b/data/po/he/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..38dcce94 --- /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-22 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" + +#: ../../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/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..577f35a9 --- /dev/null +++ b/data/po/hu/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..b561cf35 --- /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-22 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" + +#: ../../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/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..e44a6a7e --- /dev/null +++ b/data/po/it/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..f2d4b333 --- /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-22 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" + +#: ../../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/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..86933614 --- /dev/null +++ b/data/po/ja/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..aacb1bf1 --- /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-22 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" + +#: ../../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/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..6a268cb0 --- /dev/null +++ b/data/po/nb/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..f7122314 --- /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-22 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" + +#: ../../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/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..e0116260 --- /dev/null +++ b/data/po/nl/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..35957e83 --- /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-22 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" + +#: ../../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/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..5fdd90ba --- /dev/null +++ b/data/po/pl/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..9adc1de4 --- /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-22 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" + +#: ../../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/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..3dff83b5 --- /dev/null +++ b/data/po/pt_BR/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..ecbbec40 --- /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-22 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" + +#: ../../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/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..c01abe38 --- /dev/null +++ b/data/po/pt_PT/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..5588eb65 --- /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-22 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" + +#: ../../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/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..213157a4 --- /dev/null +++ b/data/po/ro/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..9ab00ddf --- /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-22 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" + +#: ../../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/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..817e2b68 --- /dev/null +++ b/data/po/ru/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..86f020ca --- /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-22 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" + +#: ../../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/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..0e0bff65 --- /dev/null +++ b/data/po/sk/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..a06cf855 --- /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-22 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" + +#: ../../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/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..ba81029f --- /dev/null +++ b/data/po/sl/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..72bf49cc --- /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-22 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" + +#: ../../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/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..f592ebcd --- /dev/null +++ b/data/po/sq/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..9e1fe736 --- /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-22 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" + +#: ../../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/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..fcbdce79 --- /dev/null +++ b/data/po/sv/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..53ae78bc --- /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-22 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" + +#: ../../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/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..58a89409 --- /dev/null +++ b/data/po/th/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..b5cc7c07 --- /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-22 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" + +#: ../../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/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..d43c35c7 --- /dev/null +++ b/data/po/zh_CN/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..f982b3f1 --- /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-22 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" + +#: ../../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/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..ca6cf88f --- /dev/null +++ b/data/po/zh_TW/script_manager.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" + +#: ../../tools/script_manager.lua:543 +msgid "install" +msgstr "" + +#: ../../tools/script_manager.lua:545 +msgid "update" +msgstr "" + +#: ../../tools/script_manager.lua:551 +msgid " scripts" +msgstr "" + +#: ../../tools/script_manager.lua:563 +msgid "update scripts" +msgstr "" + +#: ../../tools/script_manager.lua:564 +msgid "installed scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:566 +msgid "Error installing scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:572 +msgid "updated scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:574 +msgid "Error updating scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:594 +msgid "reinstalled scripts from " +msgstr "" + +#: ../../tools/script_manager.lua:595 +msgid "scripts reinstalled" +msgstr "" + +#: ../../tools/script_manager.lua:597 +msgid "ERROR: script reinstallation failed" +msgstr "" + +#: ../../tools/script_manager.lua:598 +msgid "script reinstall failed" +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..678e7522 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]], @@ -62,10 +72,10 @@ dtutils.libdoc.functions["check_min_api_version"] = { function dtutils.check_min_api_version(min_api, script_name) local current_api = dt.configuration.api_version_string 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(_("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) end end @@ -182,9 +192,9 @@ dtutils.libdoc.functions["prequire"] = { function dtutils.prequire(req_name) local status, lib = pcall(require, req_name) if status then - log.msg(log.info, "Loaded " .. req_name) + log.msg(log.info, _("Loaded ") .. req_name) else - log.msg(log.info, "Error loading " .. req_name) + log.msg(log.info, _("Error loading ") .. req_name) end return status, lib end diff --git a/lib/dtutils/file.lua b/lib/dtutils/file.lua index 423e834e..23cb4a32 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"] = { diff --git a/locale/af/LC_MESSAGES/scripts.mo b/locale/af/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..19932726581ee8a9a6a6f98de6477de61508ebcc GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#RCeH&vPMz!|xs&Mg0}e`%W2qP3l+WgO0bWY6|Jj8;WhT2X1TE7~4{k Iu1!ovf8cmvl>h($ literal 0 HcmV?d00001 diff --git a/locale/ca/LC_MESSAGES/scripts.mo b/locale/ca/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..a9b497e795d6823713ab29c5a41b9540c6418449 GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} zQmaJflJDwYjxUl2XQQ_G@Vm!GQGdnrzEj3tlloQppyTbjnnJqshGH+;1GlwnjBP1N IHzp>dKi^|uk^lez literal 0 HcmV?d00001 diff --git a/locale/cs/LC_MESSAGES/scripts.mo b/locale/cs/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..f2eb2eadeca60d205dc777a5c3247b194f9ea58a GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} zQinw5lJDwYjxUl2XQQ_G@Vm!GQGdnrzEj3tlloQppyTbjnnJqshGH+;1GlwnjBP1N IHzp>dKjrOUqyPW_ literal 0 HcmV?d00001 diff --git a/locale/da/LC_MESSAGES/scripts.mo b/locale/da/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..72863fe261a32371e7945ea9f835e4a0bf84ae22 GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_F zZ4;SGzN>#ZzDORNjoRYF?;aaP{T0vqP8oYm>R081j<@S-3hB-pioIwL+}5r!wxuN9 In3#8Rjc&ZJdi!Ow$I|38CL?zh2v!8ee22D}eE04{=3?x(@0z~2BbfL{ZD0IWcq z2f&Nq6c~X*j~ieW{0jJ9@SQY5+WA3H+A#^r^B)C=!B2uG!QTSk1%3;Za=rsf{)fNM zwxbGCq%#EyT`z-@@8jS(@bjS5`wj33@O}zA4vvFoz)yhEo<9dE+WA_JFM$t}{vS|* zAD~jXe*zS~Pl2%7xdPq?`XE&}9|s|Y^BGX&>6bz2&+mi#!LNgo|LqW0@+(mCS3zmV z36THJ0)K>#ZBXui0)(Z`XF%!SFM-1EKLDkjUj|{B^Aad@{4Y?--$P^ff;CXeSpbDj z9;m<{1INK%2c?{U0_C|O8Y%605R~U?pw#y?sK5nK=$?U}JK;E=0(sQgGiUjF7=(1r zWl+jl1||O|!Kc8_fBm2S2f+UTg`SUIwEaH~R!J{`lKBp~vtKb(v zslRf`(&;ED{hI{EhFk$pf`1B1d*1r228BM4eFWNq^Pt@SV^E&^JMdoc-$CL3+b&x^J^{+}qo7=G zfFA{a96Shq9Xt%amy16HPJtpHzX>YvU%&^zcm1F(|8Y?C_yj2SX$h43KLx%Id;t{x z+yI5ne+51WzLej;hf1U$d%&l_X;A9_QBd0dhoH#KUxLDqzX#t9eiOVO{0{hj@O?jQ z?;p(Z6e#rlFevq{fP2871w|fy4-~q75tQ=32}=9_Gf%5Uo34N&50}7I@FzfN?;Ec; z&OKlSd^dmz{v7xQu>Tw31lAY76Pz965E&oic$(uw9G5xdx5OcG z_aukNt^8^nh=Eh*5LR5*4-NuX0q&^8?*fX{3V4YgW`$=BcsSNp)4ni64dJ2%}VWb*frX zOo~5&m+Dx>`eT_N>tRFoE%1O!v{vNn`k@!7C`)^pEuyJYs!UAQC<~ivAGLdJ z9;E2&Q5Gw|OCy~z)ui}F8pYRD+VN7g;s=3R(ke@Ad-b(m6sO$N>iqQ7ljo-|s}_Ap zoYP*=$fS|xUeixfFKlSlileTy-A}WoRvtA6QP{RAKUB+I=XBKV%Jojx=0Z-HN~Iz< zda+It<(L8wsy&CWWtu=OnF(@=tx(ki_+35!-t}5_1M1Tu|d}>L$iVQ60I5? z-B`Aglq#g4rDKgaC2D_wszkjMElGx*Dd-OgoM}JwyII%hkaHojeMcDr2qDVCB`W}f zii?}CvPz0FiUW_mH1%j`^MLB*t&V!AjZrHwfEOPaaExa!~1$B}te3Sv5+E85GkO_(!ogUbNP1!I9mZIhkWm$V*HOoqbT(VMOWl+*$ z6q;V#gr!j%dF~qfBf@8m$ZX)zi@EC9kpEj*Y$QW{KZ$9To zHv*O0BiNN|*V);5c#9?N8a{864Qs5n%bB<9fNBIja=-U1mVW^`+G`lsCN-2~Z7MW! zZ-^#hR_Rw&h_y4nE%6MA9VxXCTw^=Tl~{M9tHO6N*M<`Nli`ZZ9qV4;HFVRalB|Iq zCao+$;QAUMM$dnkzFyj~B2<=RC_*k2fBp59oweL&O&ZD}A0Mq@h2BfbF1fzzCrPE?$W zp|?beUI|&0#`fn*0i(IvhypP!C^f!YdsjtFa1UOBe|IkSb%VUfjn@>v-_3&5$4nr$ zMhjow@jNS@Hx)lDe#}oB9f-8zSd#bsx6?qtV@ zVf1>M!f^-I1p{;Jz(q8}j1ORy>cA;Sq*3_hw8fUWU2IwD3G2m$o7R^-|FP0dqgsIu z+jvoEvXrGMW-;)VG((dvsvmnH-pvSM?XYzGsj6~SsC5%w_dWE+oFkHPWXp`g>L_es zPh>1|)eAE17*23Gr-T#g6~&;cu}r7dB@_atyS?=K9w*GjJ1I!!gjsh9+R%;u!zh>z znu!wy&ElHV^AG_`ufeHd={k89+V?t9${5YX29#)4l)iT#=Af^OYU#R?3r=x+pI<&N z+Ftmk1h#q75Xb7ev0{dgd0Ngb={Ji-Uajp%IkEi%G>j3|fNRoc#*s#2u_d;SvMGg8 zj8Tonh1{k!jIfNBnuOOBS5LojAn*$P>=z=QrJw`Vy)I7Hx*D3D zap&|^UtT2Kam;C5ePm*6&Yhld$H&yUnfmnP6PIT$ObksSn(hKBmoPq$;<`F>acW9k z7@M9@$0w%8CZ|r0jgQYw%+Ehf*07ynP22_Tb?a(s?84cLV`s@XHFYxZD^c7Ym0RD7traJ@&1QhhCb61U=q#~AB*F+4bNap8;vtW7y|TgpEiB z*>yF#mOJ)`4xmf)O@uk;W?bAGbj<$bQwh`Iw|zXKHF zIrpp`H;D?*Mlx1WwaVejp+aj#BNxXfhMsfnZFim*{)Rqn^{%e0;uUw#>+35~+)Snz z_0}1bF{HYd9&6?&^^s%EMsbe2Hn;1w16(gsBL@x+YCFXXos2%}s#4b8({>ES%kFKp zjoWJQ$cTu~!Go_;e7@U^s0@S_?Vxf|W{Db|MRB)ApQjkWn-Q@YJ-)1$TAv*wxCO06 zRcl67tI+z1YHdqvIZ`EGt?JfBc@wK2JoE%swz}D2o$kcQsLx>jycezt9&hw7RhI1~ zwDwxXOE;uj`r@B+ovKRQPT9kKd<(Un#*bCey>$MeV*5bMrRhabgLT_Q-&yU6m=1YZnUFz z-MZGhR56=rCa(i`00U}AdA+Kmj(6ACMu#n?xyG7TWg@$I2k_x8RRqh2UHacv*Hn7V z(${n&GcVkW`7HG=FLsU>^2$GTabcGQJI8`_QC_m5+c=@K#X$P59vih-k62`#I%e&)iWU31;lh@J8e@L?f} z0@kE=d9ZUlFtd^q*Ss!ku7(dXIh9XVF0hXNiYBv4`Cs>JRzB-hV~xPhdTm;MS%{W= zR*;|ZmZPOa9ZyZN^1MmjWbS$0H1923cv&}DRm?MwGS6Jh9G7Q$U;kuPPW^3Wo{tri z%{Q5PzR4_C+wb=71O=_i+{(d2ciG%ZyLWBZQSI>Z>ACT_X_mI`gw@l#bjW5tmJuWL zGRyzluk>&6I$~E?4%TEf>+sQ=tgwvAqN%K~RO=)7B)h_5*ZKP^hPQ4Rf0Or{_q!~& zPU$w^fT`mqRk5j?`M#~3(nzINsg+k6%@WokUj#Om?*xl~cdj#9CdfCZyFA#bVexV| zD0|&oI3&iP%fju=7I@3%r`9(=8@@<-ZAPL0wbCvA5@~ze^Xdk~>E2hoetT<&#DQ!_ zuoL~eOTRn$VOuw9W`Qohz22732DcbY+|{$p=1bwlXm?I?$G-5C{WF8jE;~MO;G3kH zeCAm_V*S+}@TIMM*LUki>7`ZRo)_|!{_ZzHJNm^lTL=}l9>eHeA`(iit$ zv$a@kQ`=?3PQB0MJ7x?6jvn=x6{*mviS_mn9%D?V= z;1bj3rWV;sx|s0w{vEM^ad%E<*_~UvAH?nS9x%I)aIwFq@0D1xt@kBhikJ;Qq-rDe z8YW9-!#A6D_9c|^jWE5n<-UYxJa&#Ji@N`%;nnXoSijo3kuyQ&l_%wk;nTG2?0+SE+jhI-7V{RbcoD>GN0G%6JbFG` zS)M+;wM^Qy2=ZD#0oab)hsqRB^Bt9o9iMIX?EbiJ22Q(EONE-=zLD2eUf-g{R;%07 z?OiV1*7pbEF(sOK4uon@S6Old2urcQA9;xV<6FmM8kS7uuuSH{=EzLzE?0&f%5UjT zK=6)6CtweCNR%dDvt@lDkJIFiWl5VD2&%PqBUa;sNKI|sA{-F$EcP|s`P6T8R@PpO zB_M;zIN6C6dsUkbyTn&DcX2rqVy4MAL`}a4&t$fM`xIio3qm7qnM$F#{l z5vFW(4KpHHblE|A&JSALU2EW2FX+sKgn@~9M5kfr6no&7On*$5O|Ev7u! zO5`c->wfenley1v=Nth%2mz&oG>-t~77?I?=W0QMH7rX2D7u$NfO02H;HG+?(85Mb zX~F@~OoEFo5qty^6L6=vsN${PEiMuO{CAnpvpr~ zSz{_1Vd%i)<9vlF(WlN4>WA;6V(gwooLW}iQi8&vypD`nmyOYwD*{jzcMl+zA!MZX zeo;%Bs6zyh>T}gFb(3s4mZ#QkbT#&!?Y*p{TauH?5+j5(z^ag8ZV{eJ+QrsgV-heQ zg~64M6QRMK9E7OaE^8#-U~}GQMf9QXJY6a)#R1hss~XGst-a?WYAt)Jy+g)p=(ytr zqVZAy>M5RZ?FEVSBOb5(KxLh=FLk(2$&F0OU4#*SFYH)fHHd2^CdLSC9QO68t%J1} zX#uLtQ(~XBk(zQdxY~+>Hg*Jq#x8MVb0s#BQ9dli%Y?ZaHh$qMaZw7dFTF4O@LapC zKl73yZ#m8I6YG@C)@$VfC#PfKEupWd{?!G)GVMuFWl>Ws0ej;`TL{}nf@9T}U}mP5 zSLNNndc}(A#Zuo(Vs4CzG?a*rbk~kDuvD80VADRsE@5@q zh2x)7_cbMa)?n~dNQonY zE$@qKeY#}YCVTI_L zl<=w4Yed_Uq9o!bUt#rL=BXl|7(_dmrh1Ak_)gSKF^sr8qKC*ZJb$^cK4YC8iO3ij+n=W_%z9N@6@oSVd$qr`TY=LWZPS8?$7)6cVsjyo{4qEhC?T)lzq# z^0tL4ApngtBOXtl=RGD_=}SnTXvQC!yYu2CB%{M?z=jbM17k5X+{}Z7g-Q_|ObXer X<6%P|, 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 0000000000000000000000000000000000000000..c4dfdbde8868d5096114dd4418260a9916cd4008 GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V2iU| ztpZ;=-3OnP*jpDs`c^k^zimBKmXc&yK#8AvxP(jvq~wXS5@Z1xBlCjF{Pek4@I)vd zpmNIiP6g{InXZK(3nn?a;gaQI!m_O7tJPgpO}kYsLWSys62TU;HJe3Gh)Ji%*0no_ z66_M0OTMdrIlf39tO;o1!|y&e3iuVy`%Y| ztpZ;=-3OnP*jpDs`c^k^zimBKmXc&yK#8AvxP(jvq~wXS5@Z1xBlCjF{Pek4@I)vd zpmNIiP6g{InXZK(3nn?a;gaQI!m_O7tJPgpO}kYsLWSys62TU;HJe3Gh)Ji%*0no_ z67-48CEwM*9A6|4)&w;1;ddV!1^f!eXrnnJqshGH-1fScMj+O(9U I8y%9-ALglGrT_o{ literal 0 HcmV?d00001 diff --git a/locale/fi/LC_MESSAGES/scripts.mo b/locale/fi/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..12ae2cd3460e753f262de3587fae367bec0bbc9a GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#RCeH&vPMz!|xs&Mg0}e`%W2qP3l+WgO0bWY6|Jj8;WhT2X1TE7~4{k Iu1!ovf8%9fod5s; literal 0 HcmV?d00001 diff --git a/locale/fr/LC_MESSAGES/scripts.mo b/locale/fr/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..cebd1aecc41f808b2dee4271e2e119abde9d3aba GIT binary patch literal 19678 zcmeHPO^h5z6)r-4H-UseLP&sA5)yl3_jqP@H@0Wv;LYxOz4459**ss#RrOTWd+*(U>yH^e$8dZZ$B#b6*evj#PvZ|h58cYxN#K`&CxENK zhk&mGp8&oA{2cK2z|R8T&G7FT{u}r;T)*=+#vTD$Kq_Yu_%yHsr00GJq^=G04d!cfzJZ}0eld6^bWKII16k5mw{B?_kmvp z{xmy(6Zi$3zXiM(_}A?Gec#7_vE1HJ~N z{N4sqecsE?{{^J-Zo7-IuLB6-~16P4YKEOjb|22@xc?U>* z{1Zs|-@1^t?-3x$^l9K@z>C1AfZqj90e=o89^L^`J^luybpHj;10Oxh*jIoOcnbJE zAo1`!AnC)Ofs?>{7oi)#IUvdFJ3y-EuYh+0-vYLPe*#iDkH3)0{Wy^FTL;qfn?Sn% z10eDEMuxuyQv2Qo67TN=Dcyg7Uj*KFj3hj2WA<4zpJ z<=r@l1LBKh-2ae1RdA49uo>>Sk+fqKZSlA#Vt(26Jiab@qNT%Q#pRVyMKSJ4ey-I# zcCK}icU(_uHY+?k@kA`mJ;&9t2yDqak@7h%yK&-3E&_*pD(I$XZooHuHmiJ}uJ@8I zE_4KPb9kjvp&MZ&wdMjeUm`|x05IFMS zQYZsdd&n3UomfU$>6FxPndZToA_?pswTtRcWSHkYWuvt!;2>%tP`>0X5o&V})TAOY zEM%F}rA%O^Ido2PaYW?sFj8HR;DecnYL>}y*%Mn_d#)pOPhIBg!rtgc#2xn&?b?j) z>-2ldQPkUtd;Yq*!rcxRxkph_6l=DU1Oc^VMr$aA3}Ut_Jt8_4>yYe)V0BZSxDbeS4~nU{uQovmR0KLk>Vg7s)m9$W2+US^Q;JQhF0@E!{-kE# zBnybi9u&xPW4i}^y37O*oetl0BsZJmuBCt!m$4YtJ2e(KE z@zJH_nYFXb_N0hRiyRRPW@lQsn;aBJx@aenms961DS_of333-xLmKM58`vHhpHXZs zlDMZLHhK}wg6Uj(IhPByZlDGXXJp$~@(CgZQhgp}@?}t{kqbF~_PJ%UV|tG&fPh%I zMq>iSW6{;bpb9()fKG(tKz8d}97??6`q+##05NBqsZ-KX1yt>f=vX*+0%_l2|Rk z@aXI8A%k~KHO&n`7ui$^Xlou40T3LRT(L?5K6 zq6R;6q1oi;XIk_8+4gsby8gvubxV0vQ-{8%e^9vVd7LcylJngv^ z6?KPc8W=6cT8pjuVfAa3>KHm^>Nc#ktq?VW62`|u4=OUv?VgCVj89!yJ7b*~rlX2= zWMs_;wsK(04Sr(XjmHK=aWVp><1J6#JZ9IdbgUXsTd&ruR`rBcuk(7nF)?9PC#%&@ zjtES@*G5lHBDjVUAFQwYuv&Y@s-Co}$BEVY)IqG)t4LRa048{CvN1Jv1k$MPRqSP< zZQ=2yb@czwhUVn7!bv5N@u=dq&#c@)-F?Ygkb#U+Yg<+{g7I4AMCIhbz{q&04lh~h zZEIB}ku7Ia6KU|&Mh17!$*s#Oa&!}8a)WneOm;QxWM3NfX~!OX5BlF~M{#{{RzEs1 zEbV!rC5=!GUKvy=v-!N?&88#mS?S%>Zfzem`D7cP3b)!Kj)mQ8JJJ9Ru4Qjn)PO{T zd!&>PY51xXLt$cwli2l2J1FeMOa>jyG|V`gGL3$ux?R4=S9oo}Z@L}?L4Sp?*;hV>OJLX|QoP6lQUasG<%!*XK1 zxV4S0>xae)=*u0L*jt#{@IYPON4<<#vnFb^j5u}jNVT@_;_R+|?nJ+zOBcQS zYjQWPBipkQe|-y<{gt_c`@!5|x!L>B#%>;aqkOw6>g_5OLX2&2r3{La!G`bUN84s1 z`U~f4QpeYP)!LOFTRrxfX{Fr@HQEzWo5G%u>+5!E|KIL~erM3%s&nIet%JLr!TyB& zeu8B$iG*jJ!OlS4;6Z3k^{M)F{5VffP8|;TW2bm+e0sPe;e+gOm>z6uxXKoXRczF= zd&}75U{z_GL#~VT+-?u6>DY``F5nirvCCIZ;>q$iXuE*J{)7EECL^(> zmsd|VCaUQV@x2?`@q;~=Zt~;ugS}SEzmA4IRc>P|(!b#4#I@m^(k;81qPm)uW*eSj zZH?{k>1xPLai7`e2mL2{pLyz~RBmA_+TSU4vupP~eeA%QsocEObEDHz zqq9i61q0W<{6IcSebLWp(Q}SqM8?Je=LKp~6&M>ZqH*^SJLXId8 z@R>(g0{9kl=TH_{0E;5WHvCtz_zx1X9uPtz3;uwR2OBw-rzMrpy$Hct@gK}L~G;9#G{f9q5<593-D;o$CU?N0}*1=?m zTG&15yTNFBR0fH6RdJXjZ;Y^=lAQ56k`ZbaxzzGOlQP!12&0`}XzuNO$_NF$v@LxI z089@h zOzjwTLs*HO?JSA|JZ0g) zk0=aaW~eQu0ED%G%l;t9gwe!nKBY0A^k01jYxP;fs` zML?ZFr~)E`jYO*$xzi6>F>=wwUm)FvGLe3Pfs8@czlE?GE;TrJ%LK6)$!DlOhNfX8 z3q;|_j2@fd1`>lQ?QFyO290M2T+b;zWqCj<+{%Jn3=|U;9duqsseBb{%l3A*5#=J` zT4M3an5)rM(%oDF0h5U-r7^N$^b1nXVKSz#r!, 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 0000000000000000000000000000000000000000..e0ed6d4d8ae9bff49992d6e2dabcc8e4ef645e83 GIT binary patch literal 345 zcmYL@Jx{|h5Qaf8Wn@Oe0~=g{t(Xth5Vu6Kn<`C_U~>~=48e|U7r_tV@9|r>EcBHg z-Ehz8-rs}$pB>CDa)=xwd&ns=WQ-i)@)GCZ{AUsTn{E;mEj;QFt#_2PD!eDP?lkE( z3Stv%pJG<&-iHJ-8r#C%#zd$+CE22cN`Knn5^|L^B~P4HAWO&@c_^tYPM*s-&xDEz z>Y!ZgRPuq6=}HJPXOfd^E?FTaEYB;xT;8JU%tjdvwN@XL2sWRs*bF@(CY>GmV73k= zrpsg@`L_PW=sdgkE@_7kzk6(y^jA9TJ7wJ!XjRs5R*=it!sA< zB^yj+F8Qwh<@h3buqL3155N1^DBxE(?>nWDXwy=X Iu60O8f8woRn*aa+ literal 0 HcmV?d00001 diff --git a/locale/hu/LC_MESSAGES/scripts.mo b/locale/hu/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..0302877ba0fb5ccc5b6e6b84e16aa789eba0b0fb GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQMK1A#RCeH&vPX z+4hOdB;VD)9A6|4&PHwV;dh6PqW+5KU8{_}Ce>E?pyTbjoWW%04aHuy2W~4@8{1Ga J*_fD&{s8EGV5$eGQq&G?OZ^)a6=pb!I2B%U*N`p+&IA*4u}il!U0aXejNCtHvQ+o zo4EcJ@G0QmfFA|^9r!Hp-$1J8=?^gWN#Kh>N{@hF0&ceHueJCF@H0q%3&?@L08;zE z1%4j*dmxqnGw^G`e*!-Td;yJ<{8xdOfUg2cj<;{RT*K{0>Oze*%(xe+7OK_zv*1z~@KJ{XUR% zy$O6C_XAhE}bU+8`jP&v( zPO=~4GF9GK#}lJxDyyta8P~@1nW=QjF6|mEFSBHBjFY^yCbOboiOF-Bcx5z8tQ1~y zf%4@kH#6?%k~>MaWy)0{GThWDH>K2Ed9E~10l+ZKlE;pUHC~lgf)DvkSSdYlU8L3(DW09+rL&GYOtX9)QRQM3JmAMqK zNuz5HGc{dcZGwE?o-cAyQx`<%Gi!?4jJa~2Rb@&BzWAH^+ztoF)r{wrz_px7D|I3r z7gnNALT6Ccm!tNN^HJr^wl!5L?RshWrBvAajd@T(0Y!o;&=9j z)152d+uI$lO@#B&p%vQY0v<8sx9?3Re0MY*^Xud3XlJrH+S=M59~^uOS#?%nWJiZm z6hl54?QY*2Z6n`gvYD%OW3yGBAx8b$bZ0tViQixEt=%%(ON|CGvWDEl24638q4YJ< znsw6OxOaFv+F0cy!Jyq}tP_)Bzz+Gw5o%s4igN+oI)9qW$EVrD=ob0^O0|RDpcnNv zqQQU<2E(gYqu$HC-v5sY68NNzx9=VV6LjSTx0<=>j?5qHGbVV#`G*m`4#dKHk<8;% z*5F0vf?ssy7c^&DV+vTKFu@F+nZZ|H<-rd+drOjfRyjFJj|JXS)8GhQIYMKHp#RSF zzg!>2h0s{cJjMlCcv(9CveZN&Cif15J9Os`K5jx`wGFTyZ!iC2Fk+SU(GiG84ETQ3 z>+}9A!~Qp}^!g87Cl7l4SEBwP8f@@EfB15n?>(W4LfFLc>ou$=!dhXKR-0KNRKA{= zVik^PLl!$8Q7567k&ORwl;Un)S&>J#jV;`e>$1LdHwM>u^Yg|f&0o5~`k%!s1}=ntWs%sRqgDd zRHn1oVeh$gbMqjq+PYe`m2(qzgmt-Z{*6i{AR%PI1-f#9{Yh*pA3HD~!iR*;=7WZP z6Ly1j&EshZTydrGOagr>JeIn8EG=J-rj=7kutQgN@GbW(o-2u+ZOQyJ*rF?29Amv; z;@PYyWq4tFyi@gptG%RZV=o?YwKezF9D}n8wzhPx(&jQdNMx3)1w*$Gtfs}iiA|J} zjlk38m98nfEJX zwaVF;c-vqCQ>K=--6rMWUnsN8frtRU9u}a)nngY*5g<4ssyCQ?7X(4MI))(XF0G_z zgE2#aDhBfC~Sl>NRvU)BI4UJxA2Xfh^|wINlODFdSYdoJ4)SbjA^6b#Qv Y)h&nnO-X7aR<|?S@I(|x3gl__F5N?w9smFU literal 0 HcmV?d00001 diff --git a/locale/ja/LC_MESSAGES/scripts.mo b/locale/ja/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..b88ed3296d881cfc57f4cd78a6d8c62dc10d1f8f GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#RCeH&vP-Pcbart z1)=t)k0B{_?|cLqTGPP&whd4@N|HqZrT#R-C1fgUN}f3@K^BlP@>o!rpS~1xo(L5p zR9@N8spvc<)0Gfp&Lk%{T(VqDSeBK1xx7Qwwp-O|sI>Z^M6mg6#b)RUG3m_M`F7_} zvQdf5CEwM*9A6|4&PHwV;dhUXqW+5KeW#4QCiR>0LC4!wHHCEN4aHuy2X1TE7~4{k Iu1!ovf8q6DnE(I) literal 0 HcmV?d00001 diff --git a/locale/nb/LC_MESSAGES/scripts.mo b/locale/nb/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..5dc0666f7883a9f7fa2d490d5ba8bdf16aa7b48e GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} zVmFD*CEwM*9A6|4&PHwV;dhUXqW+5KeW#4QCiScGLC4#5HHCEN4aHux2X1TE7~4{k IZcI!@f8)wvo&W#< literal 0 HcmV?d00001 diff --git a/locale/nl/LC_MESSAGES/scripts.mo b/locale/nl/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..990f4527f744da0cd19300b1d0cc4d2deb757c4e GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} zV!K4dKj&;Z^M6ktd&1UEcG3m_M`F7_} z(szl>CEwM*9A6|4&PHwV;dhUXqW+5KeW#4QCiScGLC4#5HHCEN4aHux2X1TE7~4{k IZcI!@f9NP+ssI20 literal 0 HcmV?d00001 diff --git a/locale/pt_BR/LC_MESSAGES/scripts.mo b/locale/pt_BR/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..8c9d3493217a2f9d5f000efe057556fe10b7a324 GIT binary patch literal 348 zcmYL^zfQw25QmFk%E-)MAvU-ITQPrBm$+>tyQ$I?2^QogCK!Sp*)DzFOU(YMZTUG?ZF>P$Jl3wq`T*gc!GG=zOzt zDCy$!q)22Y`R;?u;YD)qY}6Kaes_3O)L-$uYn8Frqr!d-i{cSJW1Gkl{ Mjcq6yZA?rCe-2Y&r~m)} literal 0 HcmV?d00001 diff --git a/locale/pt_PT/LC_MESSAGES/scripts.mo b/locale/pt_PT/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..91035e8823c1a26272f50f86a56dfadca943f851 GIT binary patch literal 348 zcmYL^zfQw25QmFk%E-)MAvU-ITQPrBL);R{PO3CTf(5yW35H-twu|6Fcs-tl%R+zB zryK4&-QDm0-p>fLgB&17$S!h%44EK@*u20xIR9CA_onLzSpyH+2jeUyjq>kNtvgM+ zje<~n)5nmMx_3T;46SM4cGCu^93{!3fKq>&VG>dmH6@Rnl^_d98M!a0%#NRmoF_ts z2$fehbSgSe$!sMA$(iKjic6M>DNECmFPAr{+IFK_4V6|Oln9p3S8R@+5Yx_#oo}}e zC4GEeREf+a-+pjDK1=SLjoRYQ?;eke`YWFHoig^4)UV119j{l_3?^G|xa~!I;I?*+ Mu`MN&wTa2-4-_$BxBvhE literal 0 HcmV?d00001 diff --git a/locale/ro/LC_MESSAGES/scripts.mo b/locale/ro/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..ecb4fceec63bbfc9b5d405259149dc059d2d0238 GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} z;$0$h$#?ZH#}~7-uP|m4Ao!rpS~1xo(L5p zR9@N8spvc<)0Gfp&Lk%{T(VqDSeBK1xx7Qwwp-O|sI>Z^M6mg6#b)RUG3m_M`F7_} z5;lp0LC4!wHHCEN4aHuy2X1TE7~4{k Iu1!ovf9U04tN;K2 literal 0 HcmV?d00001 diff --git a/locale/sl/LC_MESSAGES/scripts.mo b/locale/sl/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..e03dbec6a380102507a5c6a64e79dce18c7dbc3b GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#NMVZmKjzg3V1#Fa$fYT?9XbzsGOkvd~w0 zbi+NTdw&lPenyx*Z^M6ktd&1UEcG3m_M`F7_} z61qg@lJDwYjxUl2XQQ_G@Vm!GQGdnrzEj3tlloQppyTbjnnJqshGH+;1GlwnjBP1N IHzp>dKj}hXtpET3 literal 0 HcmV?d00001 diff --git a/locale/sq/LC_MESSAGES/scripts.mo b/locale/sq/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..7daab38f33dd11e4be596a1f167518555ecbf77f GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQMK1A#RCeCsmpv!R96=7=j&a7r_tV@9|r>EcBHg z-Ehz8-rxPbpAlvUIY5q(UE~BAGC>Y;d4Y3q{)Ocbaq? z1)=t)k0B{_?|cLqTGPPorVUUzN|HqZrT#R-C8R29N**~YK^BlQa$iuH9X}O0PlO5) zDz9wlRCJz_*-8kKGs(#nmn;)gmZl|NE^kn^?MAg4Dy`lr5iFmt*c?3}rkxo(-)o!rpS~1xo(L5p zR9@N8spvc<)0Gfp&Lk%{T(VqDSeBK1xx7Qwwj0%IsI>Z|M6mg6#b)RUG3m_M`F7_} z61IuVCEwM*9A6|4&PHwV;dhUXqW+5KeW#4QCiR>0LC4!wHHCEN4aHuy2X1TE7~4{k Iu1!ovf9&L7w*UYD literal 0 HcmV?d00001 diff --git a/locale/th/LC_MESSAGES/scripts.mo b/locale/th/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..a236490b3d8e4f97c42c4d8ec90311fe392621e3 GIT binary patch literal 345 zcmYL@Jx{|h5Qd9j%E*j_2R66@TQDE0A#RCeH&vPm zLgkeWokHg+nXZH&b0#^t;gaQI!m_O7%jI2EZM#*ihDxgsN(7tFR%{kMAts#}JKydc zN^q0NT=HH0%kf3>;4EqzAAa|-5$Z2I?>lAeHK{ks2aUI@Y6|Jj8;ZSZ58T$SF}9^7 IT^meBf9Nb=ssI20 literal 0 HcmV?d00001 diff --git a/locale/zh_CN/LC_MESSAGES/scripts.mo b/locale/zh_CN/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..483c3e658993ca846f67b11d58afe8a13fcf6c33 GIT binary patch literal 348 zcmYL^zfQw25QmFk%E-)MAvU-ITQPrB)3|LUJE_tH2^QogCN%^*vRwqc2d~Go;4I`P zeY)Yk)7||Z9{h|#_5w$NlfZu9EYN2XI1bILPydf={6HQetS2Zg~XT4j*S57kdXEWE_%k&+yE1~Ea)4D;mlDNAX@ zg!52Xp7pcy;4wCB)!5i( za4`DbKF`vKC!7u+T#hfInbBVAu=A@6M|t__&%0JAeT}NEuul5hvY5kU@cP?cqy?%g OQ!CwIG}$O0js5@(hhd`t literal 0 HcmV?d00001 diff --git a/locale/zh_TW/LC_MESSAGES/scripts.mo b/locale/zh_TW/LC_MESSAGES/scripts.mo new file mode 100644 index 0000000000000000000000000000000000000000..13d4b017c839a813cd2a4d30ece70af7d01e767a GIT binary patch literal 348 zcmYL^zfQw25QmFk%E-)MAvU-ITQPrBLrjTeH&vQ~U_owTQbVvK+eN^8@OnH8mxcbM zPdD6my1U=qou2__3)w>skZt4$=`%w1v3Z8Icm6Z;?p0S2vKsES55`$aYUSUeTDF?B zYXzb5ri&pdbmx2o85&c=^|}dAI!cmR4u$?O{UoF+YDykCD?sLuGIEzwnH@gmQ=SMF zB9va)(5mP>CASM9$dpM=F1Tcw7_&4j_F^}EaW-m;JHI+SD(cU8+_lQsb5gC84?12h%3Bz1y#BTq?Sb3M N)y6iIjFu)QgFhAuVZ8tV literal 0 HcmV?d00001 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/create_potfiles.sh b/tools/create_potfiles.sh new file mode 100644 index 00000000..24e21412 --- /dev/null +++ b/tools/create_potfiles.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find ../../ -name "*.lua" -print | xargs grep -l bindtextdomain > POTFILES.in 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/fix_header.sh b/tools/fix_header.sh new file mode 100644 index 00000000..bbfe12f0 --- /dev/null +++ b/tools/fix_header.sh @@ -0,0 +1,2 @@ +#!/bin/bash +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 diff --git a/tools/script_manager.lua b/tools/script_manager.lua index ecb4999d..e4554471 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") diff --git a/tools/update_po_files.sh b/tools/update_po_files.sh new file mode 100644 index 00000000..f07048ef --- /dev/null +++ b/tools/update_po_files.sh @@ -0,0 +1,2 @@ +#!/bin/bash +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` ]] ; then xgettext -L lua --from-code=UTF-8 -j $j -o $i/`basename $j .lua`.po ; else xgettext -L lua --from-code=UTF-8 $j -o $i/`basename $j .lua`.po ; fi; done; done From b620c49f851224ba40db36ec4edb44c5da2c04f7 Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Sun, 23 Aug 2020 14:49:45 -0400 Subject: [PATCH 3/7] On further thought, there are only two scenarios, a script file is modified or a translation file is modified. For the first scenario I combined tools/create_potfiles.sh, tools/fix_header.sh, and tools/update_po_files.sh into tools/update_translations.sh. So, when a script file is updated then tools/update_translations.sh and tools/create_mo.sh need to be run. When only a transltion file is updated, then just tools/create_mo.sh need to be run. --- tools/create_potfiles.sh | 2 -- tools/fix_header.sh | 2 -- tools/{update_po_files.sh => update_translations.sh} | 3 +++ 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 tools/create_potfiles.sh delete mode 100644 tools/fix_header.sh rename tools/{update_po_files.sh => update_translations.sh} (51%) diff --git a/tools/create_potfiles.sh b/tools/create_potfiles.sh deleted file mode 100644 index 24e21412..00000000 --- a/tools/create_potfiles.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find ../../ -name "*.lua" -print | xargs grep -l bindtextdomain > POTFILES.in diff --git a/tools/fix_header.sh b/tools/fix_header.sh deleted file mode 100644 index bbfe12f0..00000000 --- a/tools/fix_header.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -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 diff --git a/tools/update_po_files.sh b/tools/update_translations.sh similarity index 51% rename from tools/update_po_files.sh rename to tools/update_translations.sh index f07048ef..29eca751 100644 --- a/tools/update_po_files.sh +++ b/tools/update_translations.sh @@ -1,2 +1,5 @@ #!/bin/bash +find ../../ -name "*.lua" -print | xargs grep -l bindtextdomain > POTFILES.in +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 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` ]] ; then xgettext -L lua --from-code=UTF-8 -j $j -o $i/`basename $j .lua`.po ; else xgettext -L lua --from-code=UTF-8 $j -o $i/`basename $j .lua`.po ; fi; done; done +rm -f POTFILES.in From e9f84ce163d99ede7545828fa13fced24a0be45c Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Mon, 24 Aug 2020 23:19:12 -0400 Subject: [PATCH 4/7] Added translation to tools/script_manager.lua. When I updated the translation files, all of them updated which wasn't what I wanted to happen. Added a check to only update files when the script file is newer than the translation file or create the translation file if it doesn't exist. Corrected a bug where the translation file header fix ran before the update. --- data/po/POTFILES.in | 41 ---------- data/po/af/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/ca/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/cs/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/da/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/de/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/el/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/es/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/fi/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/fr/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/gl/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/he/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/hu/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/it/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/ja/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/nb/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/nl/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/pl/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/pt_BR/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/pt_PT/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/ro/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/ru/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/sk/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/sl/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/sq/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/sv/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/th/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/zh_CN/script_manager.po | 132 +++++++++++++++++++++++++++++--- data/po/zh_TW/script_manager.po | 132 +++++++++++++++++++++++++++++--- tools/script_manager.lua | 81 ++++++++++---------- tools/update_translations.sh | 29 ++++++- 31 files changed, 3456 insertions(+), 391 deletions(-) delete mode 100644 data/po/POTFILES.in diff --git a/data/po/POTFILES.in b/data/po/POTFILES.in deleted file mode 100644 index d9c49b37..00000000 --- a/data/po/POTFILES.in +++ /dev/null @@ -1,41 +0,0 @@ -../../official/enfuse.lua -../../lib/dtutils/processor.lua -../../lib/dtutils/file.lua -../../lib/dtutils.lua -../../examples/gettextExample.lua -../../examples/lighttable_demo.lua -../../examples/darkroom_demo.lua -../../examples/multi_os.lua -../../examples/moduleExample.lua -../../examples/panels_demo.lua -../../contrib/RL_out_sharp.lua -../../contrib/select_untagged.lua -../../contrib/AutoGrouper.lua -../../contrib/quicktag.lua -../../contrib/geoJSON_export.lua -../../contrib/transfer_hierarchy.lua -../../contrib/slideshowMusic.lua -../../contrib/ext_editor.lua -../../contrib/clear_GPS.lua -../../contrib/kml_export.lua -../../contrib/photils.lua -../../contrib/copy_attach_detach_tags.lua -../../contrib/fujifilm_ratings.lua -../../contrib/OpenInExplorer.lua -../../contrib/autostyle.lua -../../contrib/gimp.lua -../../contrib/enfuseAdvanced.lua -../../contrib/image_stack.lua -../../contrib/geoToolbox.lua -../../contrib/gpx_export.lua -../../contrib/exportLUT.lua -../../contrib/image_time.lua -../../contrib/video_ffmpeg.lua -../../contrib/pdf_slideshow.lua -../../contrib/hugin.lua -../../contrib/CollectHelper.lua -../../contrib/HDRMerge.lua -../../contrib/passport_guide.lua -../../contrib/face_recognition.lua -../../tools/script_manager.lua -../../tools/executable_manager.lua diff --git a/data/po/af/script_manager.po b/data/po/af/script_manager.po index 804287a5..2a73d01b 100644 --- a/data/po/af/script_manager.po +++ b/data/po/af/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/ca/script_manager.po index f0c9125b..122f1038 100644 --- a/data/po/ca/script_manager.po +++ b/data/po/ca/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/cs/script_manager.po index 920e71e1..714c9865 100644 --- a/data/po/cs/script_manager.po +++ b/data/po/cs/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/da/script_manager.po index c0ab37fd..8e511f4b 100644 --- a/data/po/da/script_manager.po +++ b/data/po/da/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/de/script_manager.po b/data/po/de/script_manager.po index f8cc46c2..1a675e41 100644 --- a/data/po/de/script_manager.po +++ b/data/po/de/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/el/script_manager.po index 58b1851f..edbe491e 100644 --- a/data/po/el/script_manager.po +++ b/data/po/el/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/es/script_manager.po index 1b345f0c..c69b337d 100644 --- a/data/po/es/script_manager.po +++ b/data/po/es/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/fi/script_manager.po index 4fc01181..57dd6dfb 100644 --- a/data/po/fi/script_manager.po +++ b/data/po/fi/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/fr/script_manager.po b/data/po/fr/script_manager.po index c67755c4..26b5a4ae 100644 --- a/data/po/fr/script_manager.po +++ b/data/po/fr/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/gl/script_manager.po index 5c4ecac9..b26ee29c 100644 --- a/data/po/gl/script_manager.po +++ b/data/po/gl/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/he/script_manager.po index 424b8c84..583a18b0 100644 --- a/data/po/he/script_manager.po +++ b/data/po/he/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/hu/script_manager.po index 577f35a9..0f7f593c 100644 --- a/data/po/hu/script_manager.po +++ b/data/po/hu/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/it/script_manager.po index e44a6a7e..2c4e0a92 100644 --- a/data/po/it/script_manager.po +++ b/data/po/it/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/ja/script_manager.po index 86933614..bd80550c 100644 --- a/data/po/ja/script_manager.po +++ b/data/po/ja/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/nb/script_manager.po index 6a268cb0..f64f0a05 100644 --- a/data/po/nb/script_manager.po +++ b/data/po/nb/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/nl/script_manager.po index e0116260..963e893c 100644 --- a/data/po/nl/script_manager.po +++ b/data/po/nl/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/pl/script_manager.po index 5fdd90ba..596d55e0 100644 --- a/data/po/pl/script_manager.po +++ b/data/po/pl/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/pt_BR/script_manager.po index 3dff83b5..1791c511 100644 --- a/data/po/pt_BR/script_manager.po +++ b/data/po/pt_BR/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/pt_PT/script_manager.po index c01abe38..efdeb740 100644 --- a/data/po/pt_PT/script_manager.po +++ b/data/po/pt_PT/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/ro/script_manager.po index 213157a4..b52b6ee1 100644 --- a/data/po/ro/script_manager.po +++ b/data/po/ro/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/ru/script_manager.po index 817e2b68..5ab6debd 100644 --- a/data/po/ru/script_manager.po +++ b/data/po/ru/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/sk/script_manager.po index 0e0bff65..e241a059 100644 --- a/data/po/sk/script_manager.po +++ b/data/po/sk/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/sl/script_manager.po index ba81029f..f6b29226 100644 --- a/data/po/sl/script_manager.po +++ b/data/po/sl/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/sq/script_manager.po index f592ebcd..4f5026b5 100644 --- a/data/po/sq/script_manager.po +++ b/data/po/sq/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/sv/script_manager.po index fcbdce79..0c130726 100644 --- a/data/po/sv/script_manager.po +++ b/data/po/sv/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/th/script_manager.po index 58a89409..6daf40be 100644 --- a/data/po/th/script_manager.po +++ b/data/po/th/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/zh_CN/script_manager.po index d43c35c7..dc769160 100644 --- a/data/po/zh_CN/script_manager.po +++ b/data/po/zh_CN/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/script_manager.po b/data/po/zh_TW/script_manager.po index ca6cf88f..da53e5e5 100644 --- a/data/po/zh_TW/script_manager.po +++ b/data/po/zh_TW/script_manager.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" @@ -17,39 +17,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../tools/script_manager.lua:543 +#: ../../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:545 ../../tools/script_manager.lua:546 +#: ../../tools/script_manager.lua:626 msgid "update" msgstr "" -#: ../../tools/script_manager.lua:551 +#: ../../tools/script_manager.lua:551 ../../tools/script_manager.lua:552 msgid " scripts" msgstr "" -#: ../../tools/script_manager.lua:563 +#: ../../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:564 ../../tools/script_manager.lua:565 msgid "installed scripts from " msgstr "" -#: ../../tools/script_manager.lua:566 +#: ../../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:572 ../../tools/script_manager.lua:573 msgid "updated scripts from " msgstr "" -#: ../../tools/script_manager.lua:574 +#: ../../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:594 ../../tools/script_manager.lua:595 msgid "reinstalled scripts from " msgstr "" @@ -57,10 +60,117 @@ msgstr "" msgid "scripts reinstalled" msgstr "" -#: ../../tools/script_manager.lua:597 +#: ../../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/tools/script_manager.lua b/tools/script_manager.lua index e4554471..1e9db5b1 100644 --- a/tools/script_manager.lua +++ b/tools/script_manager.lua @@ -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 dt.preferences.read("script_manager", target, "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 index 29eca751..fbfb2664 100644 --- a/tools/update_translations.sh +++ b/tools/update_translations.sh @@ -1,5 +1,30 @@ #!/bin/bash find ../../ -name "*.lua" -print | xargs grep -l bindtextdomain > POTFILES.in -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 -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` ]] ; then xgettext -L lua --from-code=UTF-8 -j $j -o $i/`basename $j .lua`.po ; else xgettext -L lua --from-code=UTF-8 $j -o $i/`basename $j .lua`.po ; fi; done; done + +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 From 3156d14ec6d9ccc2867499da55271a4cce98e320 Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Wed, 26 Aug 2020 14:18:40 -0400 Subject: [PATCH 5/7] Updated lib/dtutils.lua and lib/dtutils/file.lua translatable strings --- data/po/af/dtutils.po | 2 +- data/po/af/file.po | 30 ++++++++++++++++++++++++++++ data/po/ca/dtutils.po | 2 +- data/po/ca/file.po | 30 ++++++++++++++++++++++++++++ data/po/cs/dtutils.po | 2 +- data/po/cs/file.po | 30 ++++++++++++++++++++++++++++ data/po/da/dtutils.po | 2 +- data/po/da/file.po | 30 ++++++++++++++++++++++++++++ data/po/de/dtutils.po | 12 +++++------ data/po/de/file.po | 30 ++++++++++++++++++++++++++++ data/po/el/dtutils.po | 2 +- data/po/el/file.po | 30 ++++++++++++++++++++++++++++ data/po/es/dtutils.po | 2 +- data/po/es/file.po | 30 ++++++++++++++++++++++++++++ data/po/fi/dtutils.po | 2 +- data/po/fi/file.po | 30 ++++++++++++++++++++++++++++ data/po/fr/dtutils.po | 2 +- data/po/fr/file.po | 30 ++++++++++++++++++++++++++++ data/po/gl/dtutils.po | 2 +- data/po/gl/file.po | 30 ++++++++++++++++++++++++++++ data/po/he/dtutils.po | 2 +- data/po/he/file.po | 30 ++++++++++++++++++++++++++++ data/po/hu/dtutils.po | 2 +- data/po/hu/file.po | 30 ++++++++++++++++++++++++++++ data/po/it/dtutils.po | 2 +- data/po/it/file.po | 30 ++++++++++++++++++++++++++++ data/po/ja/dtutils.po | 2 +- data/po/ja/file.po | 30 ++++++++++++++++++++++++++++ data/po/nb/dtutils.po | 2 +- data/po/nb/file.po | 30 ++++++++++++++++++++++++++++ data/po/nl/dtutils.po | 2 +- data/po/nl/file.po | 30 ++++++++++++++++++++++++++++ data/po/pl/dtutils.po | 2 +- data/po/pl/file.po | 30 ++++++++++++++++++++++++++++ data/po/pt_BR/dtutils.po | 2 +- data/po/pt_BR/file.po | 30 ++++++++++++++++++++++++++++ data/po/pt_PT/dtutils.po | 2 +- data/po/pt_PT/file.po | 30 ++++++++++++++++++++++++++++ data/po/ro/dtutils.po | 2 +- data/po/ro/file.po | 30 ++++++++++++++++++++++++++++ data/po/ru/dtutils.po | 2 +- data/po/ru/file.po | 30 ++++++++++++++++++++++++++++ data/po/sk/dtutils.po | 2 +- data/po/sk/file.po | 30 ++++++++++++++++++++++++++++ data/po/sl/dtutils.po | 2 +- data/po/sl/file.po | 30 ++++++++++++++++++++++++++++ data/po/sq/dtutils.po | 2 +- data/po/sq/file.po | 30 ++++++++++++++++++++++++++++ data/po/sv/dtutils.po | 2 +- data/po/sv/file.po | 30 ++++++++++++++++++++++++++++ data/po/th/dtutils.po | 2 +- data/po/th/file.po | 30 ++++++++++++++++++++++++++++ data/po/zh_CN/dtutils.po | 2 +- data/po/zh_CN/file.po | 30 ++++++++++++++++++++++++++++ data/po/zh_TW/dtutils.po | 2 +- data/po/zh_TW/file.po | 30 ++++++++++++++++++++++++++++ lib/dtutils.lua | 8 ++++---- lib/dtutils/file.lua | 6 +++--- locale/af/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/ca/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/cs/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/da/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/de/LC_MESSAGES/scripts.mo | Bin 24748 -> 25130 bytes locale/el/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/es/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/fi/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/fr/LC_MESSAGES/scripts.mo | Bin 19678 -> 20060 bytes locale/gl/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/he/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/hu/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/it/LC_MESSAGES/scripts.mo | Bin 17041 -> 17423 bytes locale/ja/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/nb/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/nl/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/pl/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/pt_BR/LC_MESSAGES/scripts.mo | Bin 348 -> 15719 bytes locale/pt_PT/LC_MESSAGES/scripts.mo | Bin 348 -> 15719 bytes locale/ro/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/ru/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/sk/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/sl/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/sq/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/sv/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/th/LC_MESSAGES/scripts.mo | Bin 345 -> 15599 bytes locale/zh_CN/LC_MESSAGES/scripts.mo | Bin 348 -> 15719 bytes locale/zh_TW/LC_MESSAGES/scripts.mo | Bin 348 -> 15719 bytes 86 files changed, 880 insertions(+), 40 deletions(-) create mode 100644 data/po/af/file.po create mode 100644 data/po/ca/file.po create mode 100644 data/po/cs/file.po create mode 100644 data/po/da/file.po create mode 100644 data/po/de/file.po create mode 100644 data/po/el/file.po create mode 100644 data/po/es/file.po create mode 100644 data/po/fi/file.po create mode 100644 data/po/fr/file.po create mode 100644 data/po/gl/file.po create mode 100644 data/po/he/file.po create mode 100644 data/po/hu/file.po create mode 100644 data/po/it/file.po create mode 100644 data/po/ja/file.po create mode 100644 data/po/nb/file.po create mode 100644 data/po/nl/file.po create mode 100644 data/po/pl/file.po create mode 100644 data/po/pt_BR/file.po create mode 100644 data/po/pt_PT/file.po create mode 100644 data/po/ro/file.po create mode 100644 data/po/ru/file.po create mode 100644 data/po/sk/file.po create mode 100644 data/po/sl/file.po create mode 100644 data/po/sq/file.po create mode 100644 data/po/sv/file.po create mode 100644 data/po/th/file.po create mode 100644 data/po/zh_CN/file.po create mode 100644 data/po/zh_TW/file.po diff --git a/data/po/af/dtutils.po b/data/po/af/dtutils.po index 49ac415b..56dcc44b 100644 --- a/data/po/af/dtutils.po +++ b/data/po/af/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/ca/dtutils.po b/data/po/ca/dtutils.po index 678f682f..7e1634af 100644 --- a/data/po/ca/dtutils.po +++ b/data/po/ca/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/cs/dtutils.po b/data/po/cs/dtutils.po index 71728bd8..a8f97d39 100644 --- a/data/po/cs/dtutils.po +++ b/data/po/cs/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/da/dtutils.po b/data/po/da/dtutils.po index 571b0d4a..c2211f37 100644 --- a/data/po/da/dtutils.po +++ b/data/po/da/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/de/dtutils.po b/data/po/de/dtutils.po index b7a6e1b9..526663bc 100644 --- a/data/po/de/dtutils.po +++ b/data/po/de/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-19 20:10-0400\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" @@ -29,23 +29,23 @@ msgstr "T( or later.)" msgid "The current lua api version is " msgstr "T(The current lua api version is )" -#: lib/dtutils.lua:77 +#: lib/dtutils.lua:77 ../../lib/dtutils.lua:77 msgid "ERROR: " msgstr "T(ERROR: )" -#: lib/dtutils.lua:77 +#: 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 ../../lib/dtutils.lua:77 msgid " or later required." msgstr "T( or later required.)" -#: lib/dtutils.lua:78 +#: lib/dtutils.lua:78 ../../lib/dtutils.lua:78 msgid "Minimum API " msgstr "T(Minimum API )" -#: lib/dtutils.lua:78 +#: lib/dtutils.lua:78 ../../lib/dtutils.lua:78 msgid " not met for " msgstr "T( not met for )" 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/el/dtutils.po b/data/po/el/dtutils.po index e87e90ce..577e6e99 100644 --- a/data/po/el/dtutils.po +++ b/data/po/el/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/es/dtutils.po b/data/po/es/dtutils.po index d6ea5cc6..413d8506 100644 --- a/data/po/es/dtutils.po +++ b/data/po/es/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/fi/dtutils.po b/data/po/fi/dtutils.po index 62ef2225..9f98694c 100644 --- a/data/po/fi/dtutils.po +++ b/data/po/fi/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/fr/dtutils.po b/data/po/fr/dtutils.po index 5f16eb64..8eecdcda 100644 --- a/data/po/fr/dtutils.po +++ b/data/po/fr/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/gl/dtutils.po b/data/po/gl/dtutils.po index 3d0674e9..52020c1e 100644 --- a/data/po/gl/dtutils.po +++ b/data/po/gl/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/he/dtutils.po b/data/po/he/dtutils.po index c25d03bc..1b78abe5 100644 --- a/data/po/he/dtutils.po +++ b/data/po/he/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/hu/dtutils.po b/data/po/hu/dtutils.po index 38dcce94..8b6502d9 100644 --- a/data/po/hu/dtutils.po +++ b/data/po/hu/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/it/dtutils.po b/data/po/it/dtutils.po index b561cf35..679a4059 100644 --- a/data/po/it/dtutils.po +++ b/data/po/it/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/ja/dtutils.po b/data/po/ja/dtutils.po index f2d4b333..43d329e5 100644 --- a/data/po/ja/dtutils.po +++ b/data/po/ja/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/nb/dtutils.po b/data/po/nb/dtutils.po index aacb1bf1..24092643 100644 --- a/data/po/nb/dtutils.po +++ b/data/po/nb/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/nl/dtutils.po b/data/po/nl/dtutils.po index f7122314..b1d8078f 100644 --- a/data/po/nl/dtutils.po +++ b/data/po/nl/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/pl/dtutils.po b/data/po/pl/dtutils.po index 35957e83..4aabdd9d 100644 --- a/data/po/pl/dtutils.po +++ b/data/po/pl/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/pt_BR/dtutils.po b/data/po/pt_BR/dtutils.po index 9adc1de4..34f8342c 100644 --- a/data/po/pt_BR/dtutils.po +++ b/data/po/pt_BR/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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_PT/dtutils.po b/data/po/pt_PT/dtutils.po index ecbbec40..8451d3f8 100644 --- a/data/po/pt_PT/dtutils.po +++ b/data/po/pt_PT/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/ro/dtutils.po b/data/po/ro/dtutils.po index 5588eb65..0af74b32 100644 --- a/data/po/ro/dtutils.po +++ b/data/po/ro/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/ru/dtutils.po b/data/po/ru/dtutils.po index 9ab00ddf..a5929f38 100644 --- a/data/po/ru/dtutils.po +++ b/data/po/ru/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/sk/dtutils.po b/data/po/sk/dtutils.po index 86f020ca..1ac3a712 100644 --- a/data/po/sk/dtutils.po +++ b/data/po/sk/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/sl/dtutils.po b/data/po/sl/dtutils.po index a06cf855..1810555b 100644 --- a/data/po/sl/dtutils.po +++ b/data/po/sl/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/sq/dtutils.po b/data/po/sq/dtutils.po index 72bf49cc..00913fb3 100644 --- a/data/po/sq/dtutils.po +++ b/data/po/sq/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/sv/dtutils.po b/data/po/sv/dtutils.po index 9e1fe736..9ee97b30 100644 --- a/data/po/sv/dtutils.po +++ b/data/po/sv/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/th/dtutils.po b/data/po/th/dtutils.po index 53ae78bc..75aaf95a 100644 --- a/data/po/th/dtutils.po +++ b/data/po/th/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/zh_CN/dtutils.po b/data/po/zh_CN/dtutils.po index b5cc7c07..7cd81680 100644 --- a/data/po/zh_CN/dtutils.po +++ b/data/po/zh_CN/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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_TW/dtutils.po b/data/po/zh_TW/dtutils.po index f982b3f1..88466945 100644 --- a/data/po/zh_TW/dtutils.po +++ b/data/po/zh_TW/dtutils.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: darktable lua-scripts\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-08-22 22:33-0400\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" 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/lib/dtutils.lua b/lib/dtutils.lua index 678e7522..8f57681b 100644 --- a/lib/dtutils.lua +++ b/lib/dtutils.lua @@ -72,8 +72,8 @@ dtutils.libdoc.functions["check_min_api_version"] = { function dtutils.check_min_api_version(min_api, script_name) local current_api = dt.configuration.api_version_string 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("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) end @@ -192,9 +192,9 @@ dtutils.libdoc.functions["prequire"] = { function dtutils.prequire(req_name) local status, lib = pcall(require, req_name) if status then - log.msg(log.info, _("Loaded ") .. req_name) + log.msg(log.info, "Loaded " .. req_name) else - log.msg(log.info, _("Error loading ") .. req_name) + log.msg(log.info, "Error loading " .. req_name) end return status, lib end diff --git a/lib/dtutils/file.lua b/lib/dtutils/file.lua index 23cb4a32..940b91db 100644 --- a/lib/dtutils/file.lua +++ b/lib/dtutils/file.lua @@ -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)"}) + 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("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 index 19932726581ee8a9a6a6f98de6477de61508ebcc..bb20a753294d4fba1be38b8d97744f7bfb699eb4 100644 GIT binary patch literal 15599 zcmeHOU2oGc6di)6KJv_iC3paVN81fF!axgawiPAo)OASkVtL6;>dmo@KSuXM_$mAy zehbbvZJNaMT&YfF<;790dvxx($JhS*^vUlv|2*>JnIA9wcEzh8|cwFIcpbe8E zLI3@#Hw7iN#f52Dg}=DQ;F(NN?`VRjaKXAS@rYVT(Dy8z;$nhFDLR-W#rXA)$zj&Z zsj+ybsW6;csS~t!lIQ3!Ei$y773nzNNk^k;c6|KVPZf=$4d5BjHbHrMxPOxF`+0f3 z!`Zsj&E1>?(YjZRi|lUsgY|xIR|*Tl|KX+bE3&Y#ZxyFZd_?7(Y6JGu$!rgA-OcM3 zR)fZwC}qV&lc23rW_!1RLWug<8hgp%;UYW3yBesy3+=E!?Bo6x9uCoPm~3p|{${_w zIuMi`s3!YI#}R^1EZCKt`+RW#{6TX}WWxPqR7!P8sI|15lM1e0mNq8xA`~w=&D2u1 z9*tH;7=poIon?F}c<>$#Hj}}-6_aQXwKI@b7gUr`MIwYE!Zi*t{=wqEfYM!AFVa%s z&CCNDvREwLFP31@IoJGT7U>X<4wgX0yz!41gu6+#Z9slKo*a^EfsXkoR6g=J%%tR}auG2Ihk@3RB#&^}uqY{Ktf@=^g zYhxY?MuhX0M>P(t#+)^C-{<#dxMFKL==rZ!R*pmTXMy?9I&K+}OVQ$AO@};DAjTqF zC@ytuYlhoBRa5{sQ5Ax!f}+NB-DT1^R>e{^SgES2ni%dOFmw4Uy0%cRP0i)9oWEO5 zasKI8>92e=kpiJ8FwKc{mKcA}BsLO)>B03~r)4^Ow~2-u$zav4>=@{-ix4M#PHN(T w;Bao?wm2%BVP%wuQ1W1JZW@v~15I@~zl>Of!s5dF1xf0Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vO4=!gMYddiZ?oIkm%@VZe|W9@iY(0STg538A5l4@+JOCZHaWmM%X#g> zrl4^qN?9>cCurxK+0I>{5TZV|#$I!HxX4cMz6NTSq3w73UEJNl{XXjVldUb>-R^eR z2ZE9V)#UKxG(r%H1^be7pD&JpKWL7LOt_znN~x|1wU(AMQo+s3(%M8`gyKc3nOe%m zqtVC+LogVuvy86<58k8RcG7#dW)clz>I|gS6%{2^kqDuPu)rb4KUnU2}DCFYr)z*g@{BjB-m=~BCThM zI&~Lp%6LPx-&zyVG>6+#twDZ09UYT}K*xL(Dj#_qCQ|ZqIgc2G!@#y}ifm3BwHoTM zo;`+|H7c?o7z@-qszKmJ=h0wXfUaYoGgzy6=4ux0S+MZ4#_!h=Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vO4BKZMYddiZ?oIkm%@VZe|W9@iY(0STg538A5l4@+JOCZHaWmM%X#g> zrl4^qN?9>cCurxK+0I>{5TZV|#$I!HxX4cMz6NTSq3w73UEJNl{XXjVldUb>-R^eR z2ZE9V)#UKxG(r%H1^be7pD&JpKWL7LOt_znN~x|1wU(AMQo+s3(%M8`gyKc3nOe%m zqtVC+LogVuvy86<58k8RcG7#dW)clz>I|gS6%{2^kqDuPu)rb4KUnU2}DCFYr)z*g@{BjB-m=~BCThM zI&~Lp%6LPx-&zyVG>6+#twDZ09UYT}K*xL(Dj#_qCQ|ZqIgc2G!@#y}ifm3BwHoTM zo;`+|H7c?o7z@-qszKmJ=h0wXfUaYoGgzy6=4ux0S+MZ4#_!h=Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR+T+DlP#v7vj)|!Z>Ioy_N4f5;h=$I@7I_9HL`N-oik&>UwdBh+b2DWWeWOLf6)li4^ z>@n1=QIQ3~SfJ)n4FWehj|SrcbRGMg!CK8TSF>o(f`y+oe!q?w-&MPeN)Sp379d#G z#5@#?2$v0yY8+UNIjd*B&+pH0#ny7r^Iwgu9Ea%70`sA9+%h6pqQ$?S4tbQdLz`Vz`IE%;c}=+CsTDHIu7y{%$?R z`KM#0zw%K>3WTD-I49CsV*EXm*hmPb2aCH-t915m8}+x6-nw1cG0En0~Nf`OPW!fpTKyNh7pch7le?mhP-vEo_$F5aE|DN)U?sL-Jx*c^#_=@nU=?O}i)3LK+p!bVa1L`Y z-Yxb)!7_;=603L-w@tyh9+9KOmoNi6Fb@auEZ)ac_yUV@1*>r#wLYuY-H3%zVn1pF z2|SK(du?}zpGn*#v4+hUx#Bi7jTeX)uoX8^cV68m;=_In;}n+S2Rx6zP#Y@jck3H4 zpZErz!6@npy|fujF!*i?8VB4zc40R8d#DpX#$)&jb%G_6-#~tHMs9cG^&{q!0D(N3nqQYMn1QB1n-Havx?`ic?^iukZ}kf0FhOx93e^FC_l-VtX!d8;5L5VZWYA%9)$ ou5Z_AwS1|bvDjYT^#A!k&YjAqCCRl`peE#xZCJa`PTTw3e|dd@eE7%2H@ktmptvFzbsMUWA-3f%) zncb-{D>t+7fLT2@V+oF85GQaK-o_Suga`2>Ch#{NM`zHi4zFVrpI|92VlRHi0<0bK z_j88K-A-sHP{W6Q?8Ix?gjp_h`>_k-IF8CsqZ)aNQ|O@z zh$YQ-V{6j&J3K+)5`h#R!w;x}@&s}SF(!bxPev1{r_iBO`!6;pU{-G6LrKVQ5)XGFg`}TiFwq~E}}NrKsE3;I}eTd z^BC$)BykGwqYBPVnFaKUVhm~sB(?)2B9&PR^_nM9mCvNSD?8V#@*7)2hvP>ZQ6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vfOm>vku8_s+w6AsrLZ9UA6_fJA`5f-R&mP2M^w(JHef%UO%CwRa$dWz zDQKLDQdUgV3EDYlwsRLKgs6|LvDX|PF0vE6uYuZSX#3rM7k77XzmNL;WNQm|x4Yf- zfuQ6-H90&vjSz%l!M^0&=ZhoY51L~l6YeLYQmSi0t)=CRRB-dMv^J3!p?J}1rk1kt zXf!gy5DW(EEaNM|gZHSno%G(VnM8w_Is<8SMMVi!Btj@6EO3bN4;KG9l|whx#nk+NQZEAummdRjeo=-6b4gT0?|;)TCjFcAtDhB3AP%$Nb6am zPTd8YGTspFx7I{7&Ed9GYmi@0N5^C#&@mr{%10iDiIn_Y&LallFtBZ#BAe4jt%f?R zXOE#~jfyM?#sW2uY7n^5c{CUopzGM@4AyF%xtc|L7A*X%@%wee_^#SzRDw`SumHib zCg!1FM7V5tRO7&E%vnA2eSUw2E4G${p8slOl^w#alj)C^N2yw#aq&gl5 w4(Ar`ilf3ARz`UUB@g!YrXiUz&{UVR>xe}tEUvs?kYqY-6vTq*VWoQGA2qKOpa1{> delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRQ6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vz;udXku8_s+w6AsrLZ9UA6_fJA`5f-R&mP2M^w(JHef%UO%CwRa$dWz zDQKLDQdUgV3EDYlwsRLKgs6|LvDX|PF0vE6uYuZSX#3rM7k77XzmNL;WNQm|x4Yf- zfuQ6-H90&vjSz%l!M^0&=ZhoY51L~l6YeLYQmSi0t)=CRRB-dMv^J3!p?J}1rk1kt zXf!gy5DW(EEaNM|gZHSno%G(VnM8w_Is<8SMMVi!Btj@6EO3bN4;KG9l|whx#nk+NQZEAummdRjeo=-6b4gT0?|;)TCjFcAtDhB3AP%$Nb6am zPTd8YGTspFx7I{7&Ed9GYmi@0N5^C#&@mr{%10iDiIn_Y&LallFtBZ#BAe4jt%f?R zXOE#~jfyM?#sW2uY7n^5c{CUopzGM@4AyF%xtc|L7A*X%@%wee_^#SzRDw`SumHib zCg!1FM7V5tRO7&E%vnA2eSUw2E4G${p8slOl^w#alj)C^N2yw#aq&gl5 w4(Ar`ilf3ARz`UUB@g!YrXiUz&{UVR>xe}tEUvs?kYqY-6vTq*VWoQG9~FBQxBvhE delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRdmo@KSuXM_$mAy zehbbvZJNaMT&YfF<;790dvxx($JhS*^vUlv|2*>JnIA9wcEzh8|cwFIcpbe8E zLI3@#Hw7iN#f52Dg}=DQ;F(NN?`VRjaKXAS@rYVT(Dy8z;$nhFDLR-W#rXA)$zj&Z zsj+ybsW6;csS~t!lIQ3!Ei$y773nzNNk^k;c6|KVPZf=$4d5BjHbHrMxPOxF`+0f3 z!`Zsj&E1>?)vQ;Hi|lUsgY|xIR|*Tl|KX+bE3&Y#ZxyFZd_?7(Y6JGu$!rgA-OcM3 zR)fZwC}qV&lc23rW_!1RLWug<8hgp%;UYW3yBesy3+=E!?Bo6x9uCoPm~3p|{${_w zIuMi`s3!YI#}R^1EZCKt`+RW#{6TX}WWxPqR7!P8sI|15lM1e0mNq8xA`~w=&D2u1 z9*tH;7=poIon?F}c<>$#Hj}}-6_aQXwKI@b7gUr`MIwYE!Zi*t{=wqEfYM!AFVa%s z&CCNDvREwLFP31@IoJGT7U>X<4wgX0yz!41gu6+#Z9slKo*a^EfsXkoR6g=J%%tR}auG2Ihk@3RB#&^}uqY{Ktf@=^g zYhxY?MuhX0M>P(t#+)^C-{<#dxMFKL==rZ!R*pmTXMy?9I&K+}OVQ$AO@};DAjTqF zC@ytuYlhoBRa5{sQ5Ax!f}+NB-DT1^R>e{^SgES2ni%dOFmw4Uy0%cRP0i)9oWEO5 zasKI8>92e=kpiJ8FwKc{mKcA}BsLO)>B03~r)4^Ow~2-u$zav4>=@{-ix4M#PHN(T w;Bao?wm2%BVP%wuQ1W1JZW@v~15I@~zl>Of!s5dF1xf0_!*o@wQ^!97}Sq^7ZP&XzftSv}`l$ o-X{Y8B%Tgw>+Wjj-hWt+eEN6E5u?UR4Gh|*dl3!%AotPm3o!ad0RR91 delta 421 zcmXZXy)Q#y6vy%3#nO0bOHpsRsZe6EkVdJHpwvquHVK2IE1OB&!Dsaa8{SN#@IuhjE`Bdq1 L@h3Q0Zg%_wsSQ1& diff --git a/locale/gl/LC_MESSAGES/scripts.mo b/locale/gl/LC_MESSAGES/scripts.mo index e0ed6d4d8ae9bff49992d6e2dabcc8e4ef645e83..c706f6bcba257912143228a402b43b049e9bfdf8 100644 GIT binary patch literal 15599 zcmeHO%We}f6fJ^PmaJJ=f&~a%lC+>QJk+6?wm~yZm8M9rvD}#($F0XUew6e>_!NGJ zZ^1)RDdRszC3GDj%1-`DipPPEJ0Asgilh0MCH787lLmgVX#V%qz=X z!8es*w{tSYM6ViG#qIJ3oBiINk`83}!z&$D=b|MhY^}*;n&WM$GEkpRCP(C2pi@4Im5%}rGo{3tS|$wQVc@zpMX{uJnIA9wcEzh8|cwFIcpbe8E zLI3@#Hw7iN#f7O^g}=Dk;F(NN?`VRjaKXAS@rYVT(Dy8z;$nhFDLR-W#rXA)$zj&Z zsj+ybsW6;csS~t!lIQ3!Ei$y773nzNNk^k;c6|KVPZhPJHQ*W0HbHrMxPOxF`+0f3 z!`Zsj_1&BVHP9=@MRvFR!Fs>9D}@E&|L{`z6R zX66A6SuB?B7fZ0{oNInEi*yJ_2TP!0-uOohLSZncB@hjztOe`#6e1GAkYLNPi?o_0 z>fD{NIpZzSerruc(;RL~wFde1cydUt1v=)VQ2EH?Fq4v>%0e{^SgES2IWgQrU>f-=y0%cRO*L{^&fl%3 zIRA94^jALWNP$oknC3(}ON_r~5*rD@^x*og(=wgC+eE{SWUy*ib_{gaMTiqVC)M#l wa5%ScTO1Y6urkU+D0#3qHw{U{KvP{dml2ClSX_9&Ajy2*Du@Ns!%FqqKW!cq00000 delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRJnIA9wcEzh8|cwFIcpbe8E zLI3@#Hw7iN#f7O^g}=Dk;F(NN?`VRjaKXAS@rYVT(Dy8z;$nhFDLR-W#rXA)$zj&Z zsj+ybsW6;csS~t!lIQ3!Ei$y773nzNNk^k;c6|KVPZhPJHQ*W0HbHrMxPOxF`+0f3 z!`Zsj_1&BVHLh2Ti|lUsgY|xIR|*Tl|KX+bE3&Y#ZxyFZd_-kKwE_F-WVVO5?&ft1 zn}f!gC}qV&ouI8#W_!1RLWug<8hgp%;UYW3yBesy3+=E!?Bo6x9uCoPm~3p|{${_w zIuMi`s3!YI#}R^1EZCKt`+RW#{6TX}WWxPqR7!P8sI|0gNCj6fOKTH(5sDX`W@;&0 zk47sa48dTq&N99fJa~@=o5|qaib*txxigSf7gUr`MIwYE!Zi*t{=wqEfYM!AFVa%s z&CCNDvREwLFP31@IoJGT7U>X<4wgX0yz!41gu-A>OCTCbSqs+fDMTcKA;Feo7il$1 z)VVujbH-bu{nna@ra9b}Y7O%1@#K(P3v|p!q4JT(VJ0O%m5Yc$I1FsprpOkwRm-6c ztJ!0yS*s!og0Vm?q8bElbRLYR1?W2VIfJ#D8&|Vv&w_=YwSK>j7~fSpk4g|q39dn~ ztc`gn7!l4}9@RLo8go`RzR&N^aK+Yg(DPrdtQ?2v&jRzIb=)!{m!ieLnhtrQK#WDU zP+aQR)(p3Ms;B^NqACPc1x1bNy33??tcs;-uu@f3b7HuMz%=q#bZwzrn`-2;oWEO5 zasKI8>92g$kpiJ8FwKc{mKcA}BsLO)>B03~r)4^Ow~2-u$zav4>=@{-ix4M#PO9U9 w;Bao?wm2%BVP%wuQ1W1JZW@w?fu_1_E+ZD9u(klqHQxq$R>AZ-n# zF9B%|AkF6l#6VgcNQ(n$H6Senr0t;Mfk0XU$WH*$azMHgNQ(jK8BqE4P7L7;(m;WI zKmjQreG5pl1L?0oS_DY{1=4~*TF9A!K^sV`0BMkc0YF*H z>66ZzPccs7VK-ASG_f)?oqT}p{pKKkGft+=oXHOjT2aK?CCU}pOcacatqdnWi_@% delta 252 zcmXBMKMMf?9LDkAl{h;8&V^2iiBig-)ESPFWTY%!g@N%VWpn;42CMA%1}qjM@4#v? zh{58kn?60y@7J?jD66^RzMQTlat?^3L?mj9XjsHBRxyDMj9?FWmm#X?Vhnef!6WK; z!he6mEZ#AXUreLf^6#~lj3h^4QtQcwP79>BH?j8W4?}<^qyPW_ diff --git a/locale/ja/LC_MESSAGES/scripts.mo b/locale/ja/LC_MESSAGES/scripts.mo index b88ed3296d881cfc57f4cd78a6d8c62dc10d1f8f..59895cada11631bea8135176e5952cbcb55d40e3 100644 GIT binary patch literal 15599 zcmeHO%We}f6fJ^PmaJJ=f&~a%lC+>Q6x5-awm~yVm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&DQdMGIM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcOQ%3@Dv4fJR9{$n#sP6hu_-lE*1SS!`AO$k%X26#9#;4pXv3sP z(0{+`Oh8F(abap!;V-T>cq$XrIUeH)T(b5{JfId5^gT-_xESL>ijKxfF?{`FJjyyb zH5N}b6^2tQb%G8~^Bj%RB15}bkq+~{bTF7?Cnul%R8c!x1D*nH5|pQ-!_)N8&&%^Y z&Nij4@8%@voOX&~k=-r7x7qFNOJPCyKfF?YMHUwJt>To4kEoneZNPpyogUzwyLs)x zW}tBcCurx4+0HUh2vHwfW3M-R^eR z2ZE9V)#UK_Btj611^be7pD&JpKWL7LOt_znN~x|0wU(B1Qo;4h(%M8`gyKc3nOe%m zqtVC+LogVuvy86<58k8RcG7#dW)clz<_x6OB^4!9kqDuPaDzjPf3Wy3pmf*Pi!@Yt zGxLCkEEY@mizQgJ&NV-sMmmI}gC$TgZ~P+$p)i=y5{QOU)`GQr3K5B5NU+t|MOx1i zb>`05jPZtOzqKZ!X%4rgT7&$0G9Hl|fsXkoR6g=JOr_*!auG2IhkMudxoM>P(t#+=o2-{<#dxMFKL==rZkR*pmTXMy?9IBpq{E79U#Plr5KAci7a zC@ytuYlhoBRa5{sQ5Ax!f}+N>-DOfcR>e{^SgES288O^LVCM2ybZwzro0`j2Ie)jF z;{4OG(qH+gBLzZHV3HH*EHVC`No*tp(}SD4POEhGZX5NtlHR&q*)h;w7a>mgoK(jH x!QtG(vN$T7VP%wuQ1W1JZyJ(015I@~zlvCd!s62V1xaSJMnNo?9#*P1{s9Q_6R-dP delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRQ6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*v#CfL}7TI$7z0GcCUkVGt|KYXrE3z=RZxyFZd_?7pY6JGu+2jE4Ea$Zg zn}WufC}qV&ouHj_W;=I*LWug<8hg#*;UYW1`x>ZShPL1BcX4+I_xq^dPqwyjce~qN z9|%egRFlJ#(+EK*7VJyTeZDvX{-8M~GU0wQDy6z6)LL53NCh`9OKTH(5sDYBW@;%L zk47US48dTq&N99dJa~_K+ez=;nn^T>sWXsPS5%ZxMIwYE!UBgF|6uW-L+Ng;7ip;Q zX66A6SuB?B7fUd2oojwJiF61@2TP!0-uOohLSZnaB@hjztOaZL6e1GAkYKB^i?p64 z>eOAZDdP>%erruc(;RL~wFde1baYG>0v+>FsC?vcm`KUbokxRl0lJQT&S0(PnX6f}XTieH8oyshjPI&lMkNTP1Pc%> zYhoS>Muf|TM>P(t#+=nN-{<#dxMFKL==rZkR*pmTXMy?9IBpq{E79U#Plr5GAci8F zD=u|xYlhoBRa5{sQ5Ax!f}+N>-DOfcR>e{^SgES2DKXqbU}o}HbZwzro0`d0Ie)jF z;{4OG(qH+gBLzZHV4M@_EHVC`No*tp(}Trbr&T(8w~hK+NpIb*>=Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*v1n(5XB3mxMx7qFNOJPCyKfG3cMHc4vt>To4kEoncZNPpyn;hVs<-B%b zQ_wgQrL35!6SQ;AZ09ae2vHwfW3M?pTx2JBUjwzv(Du9iF7EE&ejoMw$<`L`Zg;!u z13}4wYI1mT8X*Y9f_=%k&lg9)A2i2ACfrX(rBv61T1(3rso>^iX>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k%jDJL$b!Gl>Q@=Fn!|0W)*!#0j*iJfpkqD?m5)3Q6Dj$*oJS18VPM-fMK-66S`Bqr z&mKd~8WmX(j0I{Q)gW-A^Jp+GK-aO)8LZVjb2W?hELiwi5xYX#86~& z#ifpI&2YP?iVEN+szOjzP}G>VyG&}ws#vN9D^*oBC5C$l%uN1@t}T>nQ!}|L=kL~2 zoPRo2`YRuGq(CSNjB_HLCC1+~iH(F{da$_bv`T01wo!j8>8;z99Ruxk5#of;Np(CB w9L_D=6-R|Ltc>yyN*?U(O+zwcps6lr*Aa_QSX_C(Ajx#vD2N5q!%FqWKYL&n2mk;8 delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRQ6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*v6z>$nB3mxMx7qFNOJPCyKfG3cMHc4vt>To4kEoncZNPpyn;hVs<-B%b zQ_wgQrL35!6SQ;AZ09ae2vHwfW3M?pTx2JBUjwzv(Du9iF7EE&ejoMw$<`L`Zg;!u z13}4wYI1mT8X*Y9f_=%k&lg9)A2i2ACfrX(rBv61T1(3rso>^iX>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k%jDJL$b!Gl>Q@=Fn!|0W)*!#0j*iJfpkqD?m5)3Q6Dj$*oJS18VPM-fMK-66S`Bqr z&mKd~8WmX(j0I{Q)gW-A^Jp+GK-aO)8LZVjb2W?hELiwi5xYX#86~& z#ifpI&2YP?iVEN+szOjzP}G>VyG&}ws#vN9D^*oBC5C$l%uN1@t}T>nQ!}|L=kL~2 zoPRo2`YRuGq(CSNjB_HLCC1+~iH(F{da$_bv`T01wo!j8>8;z99Ruxk5#of;Np(CB w9L_D=6-R|Ltc>yyN*?U(O+zwcps6lr*Aa_QSX_C(Ajx#vD2N5q!%FqWKj1AESO5S3 delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRfgM7#@OCkDNJJf&&OV+HRl{7+SVwTT!x3U5f-4%S+y--W=QbV{|`+zsGOE z*{1C<&U2;Om6eOFCVuq1&->-S&!7F-@Z*V}FZ_Jv=Tkr5`Pq(vpLl0uI+NHI3VsQHl=3Dnl}jDZRwn7c@Cw;qY8fqZI~1Z`tPpJ z1eDYk7p7(v-gC9VQ<yBdivEb6}6)^;3?21L3w(7I7<)xx;)?IY*Xs` zeocauC3}-jF)FhAFX(M{JNr^t5dJ@}lz%A;OZ#4N%EV_>E~qwOcV^QAJh)%izS|r$ z&O|9ICh7zY&Y11oofSgVAFr`j93Jm*r+8ljwfCpn@AkX6JHY)u>i3haE!^GicGn7p zk^|M`@Z>b25ReP|l5=l3j(|U^v59=kB4Px#Lq}3%AB~+0P0qJl9MT8(E1WPF0byP+gDtw&t zh_PC9pB}hRux#Vnd^U}w2ucb|pkh8V5Mc-i!7sSvqtpStBdQA%q;{-|{%c78RaJ9hxJSV(Te~zHM|&PpuLeoobbk}j(x^K vqli0qsc?psQ7QsTg}uGlNEQq<)#c(U!VwUTOCLu_GM_gJq6_ut%DwRqi~v0e delta 37 jcmaD}b%$w!il`DJ1A`?40|SskfXR#;&J%auXJh~XgYgD$ diff --git a/locale/pt_PT/LC_MESSAGES/scripts.mo b/locale/pt_PT/LC_MESSAGES/scripts.mo index 91035e8823c1a26272f50f86a56dfadca943f851..421ea0371f76e6d9c2fc285e781f5ddf96f86a1e 100644 GIT binary patch literal 15719 zcmeHOO>fgM7%qZSkDNJJf&&OVx^AEmKD4lAT~V@DZHELG%S+y--W=QbV{|`+zsGOE z*{1C<&U2;Om6eOFCVuq1&->-SPoMnh`0>ckXMVo$^Rb_A{A|abpZIg9^T9vcHMiqA zzWE`PIxB}-It6-5N%XR!`rOh}4v0I7O{tl(<`qJ>Te=f1&!Dt;RN?QS4U-~4|J~J{ zf|Ai3hK9o*aP^)?EH zk^|LbIGIHh0&?L%a_$Ys5%32!HjxkatWqh}C85^Ra!D$;2C;Ak(&~bW5~@gtfONQqB0>-nf)$kRDk>ul6+X^+ zz*sH1Pxss>ShaC&elm}w2ucb|pkh8V5Mc-i!-AGTG?cOytW7#ZFhYXC)+5ujv3~2q zov{Vu4beUWCt^q)H2GSC{5BgOlWV<>hAE(7@=(mBk;E?apzGL0;<9_4wg01 zAcdsEdBdYPhZkqg>ZNZJ@aR1mAnrBs105?$~LMw!##BRZ>SH1SG;VC(>DB{8g4%cnGNt*O#i+sgrLP^>>o(4ZIj+puLeoobbk}j(x^K vqljB~sc?psQ7QsTg}u4hNR|vV)#dUs!VwUT3m->FvRE_Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vwCohaB3mxMx7qFNOJPCyKfG3cMHc4vt>To4kEoncZNPpyn;hVs<-B%b zQ_wgQrL35!6SQ;AZ09ae2vHwfW3M?pTx2JBUjwzv(Du9iF7EE&ejoMw$<`L`Zg;!u z13}4wYI1mT8X*Y9f_=%k&lg9)A2i2ACfrX(rBv61T1(3rso>^iX>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k%jDJL$b!Gl>Q@=Fn!|0W)*!#0j*iJfpkqD?m5)3Q6Dj$*oJS18VPM-fMK-66S`Bqr z&mKd~8WmX(j0I{Q)gW-A^Jp+GK-aO)8LZVjb2W?hELiwi5xYX#86~& z#ifpI&2YP?iVEN+szOjzP}G>VyG&}ws#vN9D^*oBC5C$l%uN1@t}T>nQ!}|L=kL~2 zoPRo2`YRuGq(CSNjB_HLCC1+~iH(F{da$_bv`T01wo!j8>8;z99Ruxk5#of;Np(CB w9L_D=6-R|Ltc>yyN*?U(O+zwcps6lr*Aa_QSX_C(Ajx#vD2N5q!%FqWKU>TfAOHXW delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRQ6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*vwCfbZB3mxMx7qFNOJPCyKfG3cMHc4vt>To4kEoncZNPpyn;hVs<-B%b zQ_wgQrL35!6SQ;AZ09ae2vHwfW3M?pTx2JBUjwzv(Du9iF7EE&ejoMw$<`L`Zg;!u z13}4wYI1mT8X*Y9f_=%k&lg9)A2i2ACfrX(rBv61T1(3rso>^iX>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k%jDJL$b!Gl>Q@=Fn!|0W)*!#0j*iJfpkqD?m5)3Q6Dj$*oJS18VPM-fMK-66S`Bqr z&mKd~8WmX(j0I{Q)gW-A^Jp+GK-aO)8LZVjb2W?hELiwi5xYX#86~& z#ifpI&2YP?iVEN+szOjzP}G>VyG&}ws#vN9D^*oBC5C$l%uN1@t}T>nQ!}|L=kL~2 zoPRo2`YRuGq(CSNjB_HLCC1+~iH(F{da$_bv`T01wo!j8>8;z99Ruxk5#of;Np(CB w9L_D=6-R|Ltc>yyN*?U(O+zwcps6lr*Aa_QSX_C(Ajx#vD2N5q!%FqWKZ#Np5C8xG delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRJnIA9wcI5C0?tPESAksiJnY20Q`UBq&dZM`!7gpO@$R zoNY>7FXtr4%sa)P$d=3B+U#}?q_80TA6_ZHA`1)qR&mP2M^w(JHef%UO%Czya$dWz zDQKLDQdUgV3EDkpwsRLKgs6|Lu~!@(F0vDRpn=+DXnWmW7k77YuZMcQWP2NTce>s6 zfuQ6-H90ytjSz%l!GYx5=ZjI|gSB^4!9kqDuPaDzjPf3Wy3pmf*Pi!@Yt zGxLCkEEY@mizQgJ&NV-qL^_0{gC$TgZ~P+$p)i=z5{QOU)`GQr3K5B5NU+t|MOx1i zb?PqIl<|gWzqKZ!X%4rgT7&$0IvSE2fsXkoR6g=JOr+%JauG2IhkM(<+_4+d;kUWNY27>=Q6x5-awm~yZm8M9rvD}%PiCd3t{3z*%@G1Nb z--4&98dYLlM~Wx1X5&$;dvxx($JhS*^vUlH|2*>JnIA9wcR*v4DS@fB3mxMx7qFNOJPCyKfG3cMHc4vt>To4kEoncZNPpyn;hVs<-B%b zQ_wgQrL35!6SQ;AZ09ae2vHwfW3M?pTx2JBUjwzv(Du9iF7EE&ejoMw$<`L`Zg;!u z13}4wYI1mT8X*Y9f_=%k&lg9)A2i2ACfrX(rBv61T1(3rso>^iX>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k%jDJL$b!Gl>Q@=Fn!|0W)*!#0j*iJfpkqD?m5)3Q6Dj$*oJS18VPM-fMK-66S`Bqr z&mKd~8WmX(j0I{Q)gW-A^Jp+GK-aO)8LZVjb2W?hELiwi5xYX#86~& z#ifpI&2YP?iVEN+szOjzP}G>VyG&}ws#vN9D^*oBC5C$l%uN1@t}T>nQ!}|L=kL~2 zoPRo2`YRuGq(CSNjB_HLCC1+~iH(F{da$_bv`T01wo!j8>8;z99Ruxk5#of;Np(CB w9L_D=6-R|Ltc>yyN*?U(O+zwcps6lr*Aa_QSX_C(Ajx#vD2N5q!%FqWKlf-B&;S4c delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohR zz6DQPHLAqAjucO1&Bmix_vqYnkFWjr>670Z{(0obGe2JV@z{?yezec7AAde=Y<%$V zcFx`N9N+#BN}ZJhEu8|rsU&(?QGIUdDF?(I#irCuS@Q~^yH7etTAo2^@vy?*K^rDT zg8uteX97xUiwje;3V(IA!Bd%_&e0f8;F7gp;y$&IpdVQ}!NnN&Q*<~^is9>@<5AYh zsj+yfsW6;csS|W?lILiY78&}K73nbFOZ)vvc6|KBPZhPJHQ*`GCP8^R8l0p9KQGVs zINOxEUd~C7x#$$bB3mwhYqQ(gm%@VZe|V+*iYzSbTg538A5l4{+JOChGCjb%%X#g> zW}tBcCusMS+0I>{5TZV|#$IuFxX4cNz6NTSq3v~hUEJNpy&mfIlI?BW-RXAM z2ZE9V)nssV93cqBf_=%k&liWlA2i2ACfrX(rBqjhT1(40so?r$X>B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k+6=PO|lG%_JJc%o#|lODamJA`wCn;Rc5o|6uW7Kdc+78RHGnerruc(;RL~wFdd^cswFE0v+>FsC?vcm`ce{ornEN0lJQT&S0(PxvN>UXTieH8oyshjPI(QMD*3X4nc7bKa@8U?XndRVF6_y=;g7nlG5 delta 37 jcmaD~d6Q{^il{sz1A`?40|SskfXNpaohRJnIA9wccp?+jIT_(G%vt*-?o$g1`ktj@T#Rr(MaQG07`*;58fKlG z8jB~I3d5s>s;C{U0Z)K73Ch#q(OG)r=jHi6 zXPZ*jcXJYC=AB|tWOvKo+U#}?q_80TA6_ZHA`1)qR&mP2M^w(JHef%UO%Czy-Mn^T zQ_wgQrL35!6SRBIY-brLgs6|Lu~!@(F0vDRpn=-E(Du5$F7EE)UJvzp$@Vtx?sU8B z13}4wYI1aP8X*Y9f&B4eLh+*2Of6;O z(P(6ZAs7tSS;kj_2k+6=PO|lG%_JJc)EP*tITa;TkqDuPaDzjPf3Wy3pmf*Pi!@Yt zGxLCkEEY@mizQgJ&NV-qL^_0{gC$TgZ~P+$p)i=z5{QOU)`GQr3K5B5NU+t|MOx1i zb?PqIl<|gWzqKZ!X%4rgT7&$0IvSE2fsXkoR6g=JOr+%JauG2IhkMuf|TM>P(t#+=nN-{<#dxMFKL==rZkR*pmTXMy?9IBpq{E79U#Plr5GAO<2^ zC@ytuYlhoBRa5{sQ5Ax!f}+N>-DOfcR>e{^SgES2DKXqbU}o}HbZwzro0`d0Ie)jF z;{4OG(qH+gBLzZHV4M@_EHVC`No*tp(}SD4POEhGZU^JnIA9wcEzh8|cwFIcpbe8E zLI3@#Hw7iN#f7O^g}=Dk;F(NN?`VRjaKXAS@rYVT(Dy8z;$nhFDLR-W#rXA)$zj&Z zsj+ybsW6;csS~t!lIQ3!Ei$y773nzNNk^k;c6|KVPZhPJHQ*W0HbHrMxPOxF`+0f3 z!`Zsj_1&BV*``;Fi|lUsgY|xIR|*Tl|KX+bE3&Y#ZxyFZd_-kKwE_F-WVVO5?&ft1 zn}f!gC}qV&ouI8#W_!1RLWug<8hgp%;UYW3yBesy3+=E!?Bo6x9uCoPm~3p|{${_w zIuMi`s3!YI#}R^1EZCKt`+RW#{6TX}WWxPqR7!P8sI|0gNCj6fOKTH(5sDX`W@;&0 zk47sa48dTq&N99fJa~@=o5|qaib*txxigSf7gUr`MIwYE!Zi*t{=wqEfYM!AFVa%s z&CCNDvREwLFP31@IoJGT7U>X<4wgX0yz!41gu-A>OCTCbSqs+fDMTcKA;Feo7il$1 z)VVujbH-bu{nna@ra9b}Y7O%1@#K(P3v|p!q4JT(VJ0O%m5Yc$I1FsprpOkwRm-6c ztJ!0yS*s!og0Vm?q8bElbRLYR1?W2VIfJ#D8&|Vv&w_=YwSK>j7~fSpk4g|q39dn~ ztc`gn7!l4}9@RLo8go`RzR&N^aK+Yg(DPrdtQ?2v&jRzIb=)!{m!ieLnhtrQK#WDU zP+aQR)(p3Ms;B^NqACPc1x1bNy33??tcs;-uu@f3b7HuMz%=q#bZwzrn`-2;oWEO5 zasKI8>92g$kpiJ8FwKc{mKcA}BsLO)>B03~r)4^Ow~2-u$zav4>=@{-ix4M#PO9U9 w;Bao?wm2%BVP%wuQ1W1JZW@w?fu_1_E+ZD9u(fgM7#@OCkDNJJf&&OVx^AEm7+P4ftte@yu0w*0+*b;vvsNK zyEO^=-H^R;uNW2C-4|@E_j`L%SP=d{FO`2O3k&;JamvI;R5nx_usbKSeY}0Qu6wsR zXq<^sR!r0h+CF8rcY9U{QGdL~UUGQ2!=2$h4bYe zD3lziCI?5y5ru$U*pr-l!*K}wL5)r1!#%51N_9!7wX|$V1y>JCYZKWKkR6?bYAIU} zNGl@}A(61oGQJdSc#k%=l8tw(r`RCo&OlmSP*Fk^=@5_(*HAk8Ymi@$Cu4H0*U>NqG)x|fnUwrgE+Py;VX$3UBU{i`Er(L9 zY)ztOt%_U-$py8D$`HOndN`aGpzBy54OymcT+L$S77_v0`m`P~z7}^LRUx1%T;pI_ z8x2xOI-IvWigS2z=B#dfn}BZzi)HE1tz@mN9ETXXg=aXq5`;y3K3c%6g8%+Oq1HND*CS>{a01ZiQygv)5u>jpbHq#sYWhKH{Z%? z^-sr2f2*X9L}!1<{3iaOGb62jj&&K>z>% delta 37 jcmaD}b%$w!il`DJ1A`?40|SskfXR#;&J%auXJh~XgYgD$ diff --git a/locale/zh_TW/LC_MESSAGES/scripts.mo b/locale/zh_TW/LC_MESSAGES/scripts.mo index 13d4b017c839a813cd2a4d30ece70af7d01e767a..a06bff3d6b4b535c8855c016b35a8a3347ace1ef 100644 GIT binary patch literal 15719 zcmeHOO>fgM7#@OCkDNJJf&&OVx^AEmKD4lATT#+ZT?c}T z;_Dwmsk3rlOQ%4uD~X<0RG(RT!U1tdu_-lE*1SOIW=ro-%Tp*V9#!}&Xv3sP(0_OJ zrl6#@xG*)V@Ml*WJd+9P9Zv8R&RMq;52=L&eb3ST_i2CC-_JYIx9qtV8YM}P^bO-%GANRNMV1NdLWOEbuxBC5+ zLZRe9HQ7HriYNr+!mi}p8;%3u_iAh+AMRMCQmP9=t)*o{D!6=DTARp@fb8fbR7=@< zKw24*2#JJsmhq)v!&|hmm2A9OJ;eqwcLvhxoQe{vNQZ!QxPl@=5E6m~l)f5PIpZzSJ_9FWNF6l!T7&#@G#QgCy^e+{pkeY*%%tQeauHz&3WM#+8rg!jYB`i* zWor^OYgObzNG_;FREF>s(u3i&0A0rdX~;5l<7yTow~z?1)~EG|@wK?Ks0sm9;R*-K z+GvnM(&4P-QJlkzGiP<<+XQ?&SS(A2ZY67FILxbj76&1iuREW?Dp{OxkWt!BERndP9>A$LKP7L=bm`47J0bRg=PBn5_y7^XC ztA9FH`dcM+Btk$UOmiZgCB|Q6iG_!d+HiHLYMDCuw$NZR*;v7gK?b@TDZ~kHoa)$T w95jl!ahD2bSQ(`vpj6oFi;bjVps6mKiwH+RIL>_>A<2B+Du^!By({ Date: Thu, 27 Aug 2020 12:41:23 -0400 Subject: [PATCH 6/7] Fixed bug where for _, in ipairs() substituted for the underscore in _() causing an error. --- lib/dtutils/file.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dtutils/file.lua b/lib/dtutils/file.lua index 940b91db..5def30c1 100644 --- a/lib/dtutils/file.lua +++ b/lib/dtutils/file.lua @@ -530,7 +530,7 @@ 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 + 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 From 303b46235198f4f5b3f1dafaba6c8dfaa341d64e Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Thu, 27 Aug 2020 13:07:18 -0400 Subject: [PATCH 7/7] Fixed test to turn off or on --- tools/script_manager.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/script_manager.lua b/tools/script_manager.lua index 1e9db5b1..9b1acd85 100644 --- a/tools/script_manager.lua +++ b/tools/script_manager.lua @@ -301,7 +301,7 @@ local function create_enable_disable_button(btext, sname, req) dt.print_log("starget to activate is " .. starget) dt.print_log("target to activate is " .. target) -- if action == "Enable" then - if dt.preferences.read("script_manager", target, "bool") then + if not dt.preferences.read("script_manager", starget, "bool") then local status = activate(starget, target) if status then self.label = _("Disable ") .. target