exiftool_vendored 10.65.0 → 11.41.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of exiftool_vendored might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/bin/Changes +818 -19
- data/bin/MANIFEST +38 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +48 -44
- data/bin/arg_files/exif2xmp.args +4 -1
- data/bin/arg_files/gps2xmp.args +4 -1
- data/bin/arg_files/iptcCore.args +8 -0
- data/bin/arg_files/xmp2exif.args +4 -1
- data/bin/arg_files/xmp2gps.args +4 -1
- data/bin/config_files/dji.config +131 -0
- data/bin/config_files/example.config +6 -2
- data/bin/config_files/gps2utm.config +256 -256
- data/bin/config_files/nksc.config +146 -0
- data/bin/config_files/picasa_faces.config +382 -382
- data/bin/exiftool +688 -408
- data/bin/fmt_files/gpx.fmt +10 -6
- data/bin/fmt_files/gpx_wpt.fmt +10 -6
- data/bin/fmt_files/kml.fmt +8 -5
- data/bin/lib/File/RandomAccess.pm +48 -8
- data/bin/lib/File/RandomAccess.pod +21 -2
- data/bin/lib/Image/ExifTool.pm +645 -256
- data/bin/lib/Image/ExifTool.pod +219 -164
- data/bin/lib/Image/ExifTool/AES.pm +1 -1
- data/bin/lib/Image/ExifTool/AFCP.pm +3 -8
- data/bin/lib/Image/ExifTool/AIFF.pm +12 -4
- data/bin/lib/Image/ExifTool/APE.pm +1 -1
- data/bin/lib/Image/ExifTool/APP12.pm +1 -1
- data/bin/lib/Image/ExifTool/ASF.pm +19 -6
- data/bin/lib/Image/ExifTool/Apple.pm +13 -5
- data/bin/lib/Image/ExifTool/Audible.pm +1 -1
- data/bin/lib/Image/ExifTool/BMP.pm +1 -1
- data/bin/lib/Image/ExifTool/BPG.pm +17 -15
- data/bin/lib/Image/ExifTool/BZZ.pm +1 -1
- data/bin/lib/Image/ExifTool/BigTIFF.pm +30 -15
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +103 -52
- data/bin/lib/Image/ExifTool/Canon.pm +684 -112
- data/bin/lib/Image/ExifTool/CanonCustom.pm +119 -9
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/CanonVRD.pm +13 -26
- data/bin/lib/Image/ExifTool/CaptureOne.pm +1 -1
- data/bin/lib/Image/ExifTool/Casio.pm +1 -1
- data/bin/lib/Image/ExifTool/Charset.pm +1 -1
- data/bin/lib/Image/ExifTool/DICOM.pm +12 -5
- data/bin/lib/Image/ExifTool/DJI.pm +51 -3
- data/bin/lib/Image/ExifTool/DNG.pm +15 -8
- data/bin/lib/Image/ExifTool/DPX.pm +1 -1
- data/bin/lib/Image/ExifTool/DV.pm +1 -1
- data/bin/lib/Image/ExifTool/DarwinCore.pm +63 -23
- data/bin/lib/Image/ExifTool/DjVu.pm +4 -2
- data/bin/lib/Image/ExifTool/EXE.pm +30 -6
- data/bin/lib/Image/ExifTool/Exif.pm +351 -109
- data/bin/lib/Image/ExifTool/FITS.pm +148 -0
- data/bin/lib/Image/ExifTool/FLAC.pm +2 -2
- data/bin/lib/Image/ExifTool/FLIF.pm +1 -1
- data/bin/lib/Image/ExifTool/FLIR.pm +109 -13
- data/bin/lib/Image/ExifTool/Fixup.pm +1 -1
- data/bin/lib/Image/ExifTool/Flash.pm +3 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +433 -9
- data/bin/lib/Image/ExifTool/Font.pm +2 -2
- data/bin/lib/Image/ExifTool/FotoStation.pm +1 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +336 -16
- data/bin/lib/Image/ExifTool/GE.pm +1 -1
- data/bin/lib/Image/ExifTool/GIF.pm +5 -7
- data/bin/lib/Image/ExifTool/GIMP.pm +39 -3
- data/bin/lib/Image/ExifTool/GPS.pm +48 -22
- data/bin/lib/Image/ExifTool/GeoTiff.pm +23 -23
- data/bin/lib/Image/ExifTool/Geotag.pm +80 -45
- data/bin/lib/Image/ExifTool/GoPro.pm +709 -0
- data/bin/lib/Image/ExifTool/H264.pm +40 -18
- data/bin/lib/Image/ExifTool/HP.pm +1 -1
- data/bin/lib/Image/ExifTool/HTML.pm +19 -12
- data/bin/lib/Image/ExifTool/HtmlDump.pm +37 -26
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +297 -23
- data/bin/lib/Image/ExifTool/ID3.pm +12 -7
- data/bin/lib/Image/ExifTool/IPTC.pm +48 -19
- data/bin/lib/Image/ExifTool/ISO.pm +1 -1
- data/bin/lib/Image/ExifTool/ITC.pm +1 -1
- data/bin/lib/Image/ExifTool/Import.pm +13 -9
- data/bin/lib/Image/ExifTool/InDesign.pm +3 -5
- data/bin/lib/Image/ExifTool/JPEG.pm +22 -11
- data/bin/lib/Image/ExifTool/JPEGDigest.pm +1 -1
- data/bin/lib/Image/ExifTool/JSON.pm +3 -3
- data/bin/lib/Image/ExifTool/JVC.pm +1 -1
- data/bin/lib/Image/ExifTool/Jpeg2000.pm +2 -2
- data/bin/lib/Image/ExifTool/Kodak.pm +1233 -58
- data/bin/lib/Image/ExifTool/KyoceraRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/LNK.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +33 -24
- data/bin/lib/Image/ExifTool/Lang/en_ca.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/en_gb.pm +64 -2
- data/bin/lib/Image/ExifTool/Lang/es.pm +8 -4
- data/bin/lib/Image/ExifTool/Lang/fi.pm +46 -4
- data/bin/lib/Image/ExifTool/Lang/fr.pm +5 -3
- data/bin/lib/Image/ExifTool/Lang/it.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/ja.pm +15 -3
- data/bin/lib/Image/ExifTool/Lang/ko.pm +5 -2
- data/bin/lib/Image/ExifTool/Lang/nl.pm +6 -3
- data/bin/lib/Image/ExifTool/Lang/pl.pm +2 -2
- data/bin/lib/Image/ExifTool/Lang/ru.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/sv.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/tr.pm +4 -2
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +1 -1
- data/bin/lib/Image/ExifTool/Lang/zh_tw.pm +1 -1
- data/bin/lib/Image/ExifTool/Leaf.pm +1 -1
- data/bin/lib/Image/ExifTool/Lytro.pm +4 -8
- data/bin/lib/Image/ExifTool/M2TS.pm +10 -9
- data/bin/lib/Image/ExifTool/MIE.pm +12 -8
- data/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
- data/bin/lib/Image/ExifTool/MIFF.pm +1 -1
- data/bin/lib/Image/ExifTool/MNG.pm +1 -1
- data/bin/lib/Image/ExifTool/MOI.pm +1 -1
- data/bin/lib/Image/ExifTool/MPC.pm +1 -1
- data/bin/lib/Image/ExifTool/MPEG.pm +2 -3
- data/bin/lib/Image/ExifTool/MPF.pm +6 -6
- data/bin/lib/Image/ExifTool/MWG.pm +4 -4
- data/bin/lib/Image/ExifTool/MXF.pm +2 -2
- data/bin/lib/Image/ExifTool/MacOS.pm +184 -34
- data/bin/lib/Image/ExifTool/MakerNotes.pm +101 -18
- data/bin/lib/Image/ExifTool/Matroska.pm +1 -1
- data/bin/lib/Image/ExifTool/Microsoft.pm +5 -3
- data/bin/lib/Image/ExifTool/Minolta.pm +89 -62
- data/bin/lib/Image/ExifTool/MinoltaRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/Motorola.pm +1 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +1511 -380
- data/bin/lib/Image/ExifTool/NikonCapture.pm +1 -1
- data/bin/lib/Image/ExifTool/NikonCustom.pm +2758 -2935
- data/bin/lib/Image/ExifTool/Nintendo.pm +1 -1
- data/bin/lib/Image/ExifTool/OOXML.pm +1 -1
- data/bin/lib/Image/ExifTool/Ogg.pm +1 -1
- data/bin/lib/Image/ExifTool/Olympus.pm +47 -8
- data/bin/lib/Image/ExifTool/OpenEXR.pm +1 -1
- data/bin/lib/Image/ExifTool/Opus.pm +1 -1
- data/bin/lib/Image/ExifTool/PCX.pm +138 -0
- data/bin/lib/Image/ExifTool/PDF.pm +58 -42
- data/bin/lib/Image/ExifTool/PGF.pm +1 -1
- data/bin/lib/Image/ExifTool/PICT.pm +1 -1
- data/bin/lib/Image/ExifTool/PLIST.pm +12 -5
- data/bin/lib/Image/ExifTool/PLUS.pm +1 -1
- data/bin/lib/Image/ExifTool/PNG.pm +108 -10
- data/bin/lib/Image/ExifTool/PPM.pm +3 -3
- data/bin/lib/Image/ExifTool/PSP.pm +1 -1
- data/bin/lib/Image/ExifTool/Palm.pm +1 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +299 -31
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +201 -19
- data/bin/lib/Image/ExifTool/Pentax.pm +164 -143
- data/bin/lib/Image/ExifTool/PhaseOne.pm +12 -5
- data/bin/lib/Image/ExifTool/PhotoCD.pm +9 -10
- data/bin/lib/Image/ExifTool/PhotoMechanic.pm +1 -1
- data/bin/lib/Image/ExifTool/Photoshop.pm +230 -60
- data/bin/lib/Image/ExifTool/PostScript.pm +29 -4
- data/bin/lib/Image/ExifTool/PrintIM.pm +1 -1
- data/bin/lib/Image/ExifTool/Qualcomm.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +1539 -279
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1857 -0
- data/bin/lib/Image/ExifTool/README +84 -46
- data/bin/lib/Image/ExifTool/RIFF.pm +116 -23
- data/bin/lib/Image/ExifTool/RSRC.pm +1 -1
- data/bin/lib/Image/ExifTool/RTF.pm +6 -4
- data/bin/lib/Image/ExifTool/Radiance.pm +1 -1
- data/bin/lib/Image/ExifTool/Rawzor.pm +3 -2
- data/bin/lib/Image/ExifTool/Real.pm +1 -1
- data/bin/lib/Image/ExifTool/Reconyx.pm +261 -7
- data/bin/lib/Image/ExifTool/Red.pm +325 -0
- data/bin/lib/Image/ExifTool/Ricoh.pm +3 -7
- data/bin/lib/Image/ExifTool/Samsung.pm +95 -25
- data/bin/lib/Image/ExifTool/Sanyo.pm +1 -1
- data/bin/lib/Image/ExifTool/Scalado.pm +1 -1
- data/bin/lib/Image/ExifTool/Shift.pl +26 -12
- data/bin/lib/Image/ExifTool/Shortcuts.pm +9 -2
- data/bin/lib/Image/ExifTool/Sigma.pm +36 -30
- data/bin/lib/Image/ExifTool/SigmaRaw.pm +3 -8
- data/bin/lib/Image/ExifTool/Sony.pm +531 -177
- data/bin/lib/Image/ExifTool/SonyIDC.pm +63 -3
- data/bin/lib/Image/ExifTool/Stim.pm +2 -2
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +23 -23
- data/bin/lib/Image/ExifTool/TagLookup.pm +6352 -5062
- data/bin/lib/Image/ExifTool/TagNames.pod +3024 -565
- data/bin/lib/Image/ExifTool/Theora.pm +1 -1
- data/bin/lib/Image/ExifTool/Torrent.pm +2 -2
- data/bin/lib/Image/ExifTool/Unknown.pm +1 -1
- data/bin/lib/Image/ExifTool/VCard.pm +47 -9
- data/bin/lib/Image/ExifTool/Validate.pm +391 -99
- data/bin/lib/Image/ExifTool/Vorbis.pm +1 -1
- data/bin/lib/Image/ExifTool/WTV.pm +319 -0
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteExif.pl +91 -18
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +6 -6
- data/bin/lib/Image/ExifTool/WritePDF.pl +13 -12
- data/bin/lib/Image/ExifTool/WritePNG.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePhotoshop.pl +1 -1
- data/bin/lib/Image/ExifTool/WritePostScript.pl +2 -2
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +764 -121
- data/bin/lib/Image/ExifTool/WriteXMP.pl +176 -67
- data/bin/lib/Image/ExifTool/Writer.pl +490 -246
- data/bin/lib/Image/ExifTool/XMP.pm +216 -76
- data/bin/lib/Image/ExifTool/XMP2.pl +54 -10
- data/bin/lib/Image/ExifTool/XMPStruct.pl +14 -11
- data/bin/lib/Image/ExifTool/ZIP.pm +60 -15
- data/bin/lib/Image/ExifTool/iWork.pm +12 -5
- data/bin/perl-Image-ExifTool.spec +46 -44
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +14 -4
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::en_gb;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.13';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::en_gb::Translate = (
|
17
17
|
'AboveColor' => 'Above Colour',
|
@@ -34,6 +34,13 @@ $VERSION = '1.12';
|
|
34
34
|
'AllColorFlatField1' => 'All Colour Flat Field 1',
|
35
35
|
'AllColorFlatField2' => 'All Colour Flat Field 2',
|
36
36
|
'AllColorFlatField3' => 'All Colour Flat Field 3',
|
37
|
+
'Alpha' => {
|
38
|
+
PrintConv => {
|
39
|
+
'Alpha Exists (W color component)' => 'Alpha Exists (W colour component)',
|
40
|
+
'Alpha Exists (color not premultiplied)' => 'Alpha Exists (colour not premultiplied)',
|
41
|
+
'Alpha Exists (color premultiplied)' => 'Alpha Exists (colour premultiplied)',
|
42
|
+
},
|
43
|
+
},
|
37
44
|
'AlternateDuotoneColors' => 'Alternate Duotone Colours',
|
38
45
|
'AlternateSpotColors' => 'Alternate Spot Colours',
|
39
46
|
'ArtFilter' => {
|
@@ -50,17 +57,23 @@ $VERSION = '1.12';
|
|
50
57
|
},
|
51
58
|
'ArtFilterEffect' => {
|
52
59
|
PrintConv => {
|
60
|
+
'Green Color Filter' => 'Green Colour Filter',
|
61
|
+
'No Color Filter' => 'No Colour Filter',
|
62
|
+
'Orange Color Filter' => 'Orange Colour Filter',
|
53
63
|
'Pale & Light Color' => 'Pale & Light Colour',
|
54
64
|
'Pale & Light Color II' => 'Pale & Light Colour II',
|
55
65
|
'Partial Color' => 'Partial Colour',
|
56
66
|
'Partial Color II' => 'Partial Colour II',
|
57
67
|
'Partial Color III' => 'Partial Colour III',
|
68
|
+
'Red Color Filter' => 'Red Colour Filter',
|
58
69
|
'Watercolor' => 'Watercolour',
|
59
70
|
'Watercolor I' => 'Watercolour I',
|
60
71
|
'Watercolor II' => 'Watercolour II',
|
72
|
+
'Yellow Color Filter' => 'Yellow Colour Filter',
|
61
73
|
},
|
62
74
|
},
|
63
75
|
'AudioIsInitialized' => 'Audio Is Initialised',
|
76
|
+
'AutoAFPointColorTracking' => 'Auto AF Point Colour Tracking',
|
64
77
|
'AutoLightingOptimizer' => 'Auto Lighting Optimiser',
|
65
78
|
'AutoLightingOptimizerOn' => 'Auto Lighting Optimiser On',
|
66
79
|
'BackgroundColor' => 'Background Colour',
|
@@ -99,6 +112,7 @@ $VERSION = '1.12';
|
|
99
112
|
'CameraColorCalibration13' => 'Camera Colour Calibration 13',
|
100
113
|
'CameraColorCalibration14' => 'Camera Colour Calibration 14',
|
101
114
|
'CameraColorCalibration15' => 'Camera Colour Calibration 15',
|
115
|
+
'CameraRawColorTone' => 'Camera Raw Colour Tone',
|
102
116
|
'CanonColorInfo1' => 'Canon Colour Info 1',
|
103
117
|
'CanonColorInfo2' => 'Canon Colour Info 2',
|
104
118
|
'ChromaticityColorant' => 'Chromaticity Colourant',
|
@@ -141,6 +155,7 @@ $VERSION = '1.12';
|
|
141
155
|
'ColorComponents' => 'Colour Components',
|
142
156
|
'ColorControl' => 'Colour Control',
|
143
157
|
'ColorCorrection' => 'Colour Correction',
|
158
|
+
'ColorCreatorEffect' => 'Colour Creator Effect',
|
144
159
|
'ColorDataVersion' => 'Colour Data Version',
|
145
160
|
'ColorDescriptor' => 'Colour Descriptor',
|
146
161
|
'ColorEffect' => 'Colour Effect',
|
@@ -187,6 +202,7 @@ $VERSION = '1.12';
|
|
187
202
|
'ColorPlanes' => 'Colour Planes',
|
188
203
|
'ColorPrimaries' => 'Colour Primaries',
|
189
204
|
'ColorProfile' => 'Colour Profile',
|
205
|
+
'ColorProfileSettings' => 'Colour Profile Settings',
|
190
206
|
'ColorRangeLevels' => 'Colour Range Levels',
|
191
207
|
'ColorRepresentation' => 'Colour Representation',
|
192
208
|
'ColorReproduction' => 'Colour Reproduction',
|
@@ -200,7 +216,10 @@ $VERSION = '1.12';
|
|
200
216
|
'ColorSpace' => {
|
201
217
|
Description => 'Colour Space',
|
202
218
|
PrintConv => {
|
219
|
+
'Embedded Color Profile' => 'Embedded Colour Profile',
|
220
|
+
'Linked Color Profile' => 'Linked Colour Profile',
|
203
221
|
'No color space specified' => 'No colour space specified',
|
222
|
+
'Windows Color Space' => 'Windows Colour Space',
|
204
223
|
},
|
205
224
|
},
|
206
225
|
'ColorSpaceData' => 'Colour Space Data',
|
@@ -267,6 +286,7 @@ $VERSION = '1.12';
|
|
267
286
|
'ColorTempUnknown9' => 'Colour Temp Unknown 9',
|
268
287
|
'ColorTemperature' => 'Colour Temperature',
|
269
288
|
'ColorTemperatureAdj' => 'Colour Temperature Adj',
|
289
|
+
'ColorTemperatureAuto' => 'Colour Temperature Auto',
|
270
290
|
'ColorTemperatureBG' => 'Colour Temperature BG',
|
271
291
|
'ColorTemperatureCustom' => 'Colour Temperature Custom',
|
272
292
|
'ColorTemperatureRG' => 'Colour Temperature RG',
|
@@ -311,6 +331,7 @@ $VERSION = '1.12';
|
|
311
331
|
'ColorantBlue' => 'Colourant Blue',
|
312
332
|
'ColorantCount' => 'Colourant Count',
|
313
333
|
'ColorantCyan' => 'Colourant Cyan',
|
334
|
+
'ColorantGray' => 'Colourant Gray',
|
314
335
|
'ColorantGreen' => 'Colourant Green',
|
315
336
|
'ColorantL' => 'Colourant L',
|
316
337
|
'ColorantMagenta' => 'Colourant Magenta',
|
@@ -367,6 +388,8 @@ $VERSION = '1.12';
|
|
367
388
|
'Color Filter' => 'Colour Filter',
|
368
389
|
'Extract Color' => 'Extract Colour',
|
369
390
|
'Invert Color' => 'Invert Colour',
|
391
|
+
'Replace Color' => 'Replace Colour',
|
392
|
+
'Unicolor Bold' => 'Unicolour Bold',
|
370
393
|
'Water Color' => 'Water Colour',
|
371
394
|
},
|
372
395
|
},
|
@@ -622,6 +645,7 @@ $VERSION = '1.12';
|
|
622
645
|
},
|
623
646
|
},
|
624
647
|
'ImageOptimization' => 'Image Optimisation',
|
648
|
+
'IndexedColorTableCount' => 'Indexed Colour Table Count',
|
625
649
|
'InitializedDataSize' => 'Initialised Data Size',
|
626
650
|
'InterchangeColorSpace' => 'Interchange Colour Space',
|
627
651
|
'Isotherm1Color' => 'Isotherm 1 Colour',
|
@@ -634,7 +658,17 @@ $VERSION = '1.12';
|
|
634
658
|
'LargePaletteColorLookupTableUID' => 'Large Palette Colour Lookup Table UID',
|
635
659
|
'LargeRedPaletteColorTableData' => 'Large Red Palette Colour Table Data',
|
636
660
|
'LargeRedPaletteColorTableDescr' => 'Large Red Palette Colour Table Descr',
|
661
|
+
'LayerBlendModes' => {
|
662
|
+
PrintConv => {
|
663
|
+
'Color' => 'Colour',
|
664
|
+
'Color Burn' => 'Colour Burn',
|
665
|
+
'Color Dodge' => 'Colour Dodge',
|
666
|
+
'Darker Color' => 'Darker Colour',
|
667
|
+
'Lighter Color' => 'Lighter Colour',
|
668
|
+
},
|
669
|
+
},
|
637
670
|
'MDColorTable' => 'MD Colour Table',
|
671
|
+
'MDItemColorSpace' => 'MD Item Colour Space',
|
638
672
|
'MagicFilter' => {
|
639
673
|
PrintConv => {
|
640
674
|
'Pale & Light Color' => 'Pale & Light Colour',
|
@@ -658,6 +692,7 @@ $VERSION = '1.12';
|
|
658
692
|
'MattColor' => 'Matt Colour',
|
659
693
|
'MediaColor' => 'Media Colour',
|
660
694
|
'ModifiedColorTemp' => 'Modified Colour Temp',
|
695
|
+
'MonochromeColor' => 'Monochrome Colour',
|
661
696
|
'MyColorMode' => {
|
662
697
|
Description => 'My Colour Mode',
|
663
698
|
PrintConv => {
|
@@ -711,6 +746,14 @@ $VERSION = '1.12';
|
|
711
746
|
},
|
712
747
|
},
|
713
748
|
'PictureIndexedColors' => 'Picture Indexed Colours',
|
749
|
+
'PictureMode' => {
|
750
|
+
PrintConv => {
|
751
|
+
'Color Creator' => 'Colour Creator',
|
752
|
+
'Color Profile 1' => 'Colour Profile 1',
|
753
|
+
'Color Profile 2' => 'Colour Profile 2',
|
754
|
+
'Color Profile 3' => 'Colour Profile 3',
|
755
|
+
},
|
756
|
+
},
|
714
757
|
'PictureType' => {
|
715
758
|
PrintConv => {
|
716
759
|
'Bright(ly) Colored Fish' => 'Bright(ly) Coloured Fish',
|
@@ -773,6 +816,7 @@ $VERSION = '1.12';
|
|
773
816
|
'ReflectionPrintOutputColorimetry' => 'Reflection Print Output Colourimetry',
|
774
817
|
'RenderingIntent' => {
|
775
818
|
PrintConv => {
|
819
|
+
'Absolute Colorimetric (LCS_GM_ABS_COLORIMETRIC)' => 'Absolute Colourimetric (LCS_GM_ABS_COLORIMETRIC)',
|
776
820
|
'ICC-Absolute Colorimetric' => 'ICC-Absolute Colourimetric',
|
777
821
|
'Media-Relative Colorimetric' => 'Media-Relative Colourimetric',
|
778
822
|
},
|
@@ -827,6 +871,7 @@ $VERSION = '1.12';
|
|
827
871
|
},
|
828
872
|
},
|
829
873
|
'ShutterPresentationColorCIELabVal' => 'Shutter Presentation Colour CIE Lab Val',
|
874
|
+
'SmartAlbumColor' => 'Smart Album Colour',
|
830
875
|
'SpecialEffectsOpticalFilter' => {
|
831
876
|
PrintConv => {
|
832
877
|
'Colored' => 'Coloured',
|
@@ -842,6 +887,22 @@ $VERSION = '1.12';
|
|
842
887
|
},
|
843
888
|
},
|
844
889
|
'SubimageColor' => 'Subimage Colour',
|
890
|
+
'SwatchColorantA' => 'Swatch Colourant A',
|
891
|
+
'SwatchColorantB' => 'Swatch Colourant B',
|
892
|
+
'SwatchColorantBlack' => 'Swatch Colourant Black',
|
893
|
+
'SwatchColorantBlue' => 'Swatch Colourant Blue',
|
894
|
+
'SwatchColorantCyan' => 'Swatch Colourant Cyan',
|
895
|
+
'SwatchColorantGray' => 'Swatch Colourant Gray',
|
896
|
+
'SwatchColorantGreen' => 'Swatch Colourant Green',
|
897
|
+
'SwatchColorantL' => 'Swatch Colourant L',
|
898
|
+
'SwatchColorantMagenta' => 'Swatch Colourant Magenta',
|
899
|
+
'SwatchColorantMode' => 'Swatch Colourant Mode',
|
900
|
+
'SwatchColorantRed' => 'Swatch Colourant Red',
|
901
|
+
'SwatchColorantSwatchName' => 'Swatch Colourant Swatch Name',
|
902
|
+
'SwatchColorantTint' => 'Swatch Colourant Tint',
|
903
|
+
'SwatchColorantType' => 'Swatch Colourant Type',
|
904
|
+
'SwatchColorantYellow' => 'Swatch Colourant Yellow',
|
905
|
+
'SwatchGroupsColorants' => 'Swatch Groups Colourants',
|
845
906
|
'TestTarget' => {
|
846
907
|
PrintConv => {
|
847
908
|
'Color Chart' => 'Colour Chart',
|
@@ -879,6 +940,7 @@ $VERSION = '1.12';
|
|
879
940
|
'VideoAlphaPremultipleColorBlack' => 'Video Alpha Premultiple Colour Black',
|
880
941
|
'VideoAlphaPremultipleColorBlue' => 'Video Alpha Premultiple Colour Blue',
|
881
942
|
'VideoAlphaPremultipleColorCyan' => 'Video Alpha Premultiple Colour Cyan',
|
943
|
+
'VideoAlphaPremultipleColorGray' => 'Video Alpha Premultiple Colour Gray',
|
882
944
|
'VideoAlphaPremultipleColorGreen' => 'Video Alpha Premultiple Colour Green',
|
883
945
|
'VideoAlphaPremultipleColorL' => 'Video Alpha Premultiple Colour L',
|
884
946
|
'VideoAlphaPremultipleColorMagenta' => 'Video Alpha Premultiple Colour Magenta',
|
@@ -970,7 +1032,7 @@ and values.
|
|
970
1032
|
|
971
1033
|
=head1 AUTHOR
|
972
1034
|
|
973
|
-
Copyright 2003-
|
1035
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
974
1036
|
|
975
1037
|
This library is free software; you can redistribute it and/or modify it
|
976
1038
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::es;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.16';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::es::Translate = (
|
17
17
|
'AEAperture' => 'Aperture AE',
|
@@ -176,6 +176,7 @@ $VERSION = '1.14';
|
|
176
176
|
'ActionAdvised' => {
|
177
177
|
Description => 'Acción Aconsejada',
|
178
178
|
PrintConv => {
|
179
|
+
'Object Append' => 'Añadir Objeto',
|
179
180
|
'Object Kill' => 'Destruir Objecto',
|
180
181
|
'Object Reference' => 'Referencia Objecto',
|
181
182
|
'Object Replace' => 'Reemplazar Objecto',
|
@@ -870,6 +871,7 @@ $VERSION = '1.14';
|
|
870
871
|
},
|
871
872
|
},
|
872
873
|
'ContrastSetting' => 'Ajustes de Contraste',
|
874
|
+
'Copyright' => 'Copyright Perfil',
|
873
875
|
'CopyrightNotice' => 'Aviso Copyright',
|
874
876
|
'Country' => 'País',
|
875
877
|
'Country-PrimaryLocationCode' => 'Código País ISO',
|
@@ -979,6 +981,7 @@ $VERSION = '1.14';
|
|
979
981
|
'Off' => 'Desactivado',
|
980
982
|
},
|
981
983
|
},
|
984
|
+
'DateTimeDigitized' => 'Fecha y Hora Digital',
|
982
985
|
'DateTimeOriginal' => 'Fecha y Hora de Datos Original',
|
983
986
|
'DaylightSavings' => {
|
984
987
|
PrintConv => {
|
@@ -1402,8 +1405,8 @@ $VERSION = '1.14';
|
|
1402
1405
|
'FaxRecvParams' => 'Parámetros Recepción Fax',
|
1403
1406
|
'FaxRecvTime' => 'Hora Recepción Fax',
|
1404
1407
|
'FaxSubAddress' => 'Subdirección Fax',
|
1405
|
-
'FileAccessDate' => 'Fecha y
|
1406
|
-
'FileCreateDate' => 'Fecha y
|
1408
|
+
'FileAccessDate' => 'Fecha y Hora de Acceso',
|
1409
|
+
'FileCreateDate' => 'Fecha y Hora de Creación',
|
1407
1410
|
'FileFormat' => 'Formato Archivo',
|
1408
1411
|
'FileLength' => 'Tamaño Archivo',
|
1409
1412
|
'FileModifyDate' => 'Fecha Actualización',
|
@@ -1738,6 +1741,7 @@ $VERSION = '1.14';
|
|
1738
1741
|
'GPSAreaInformation' => 'Nombre de Zona GPS',
|
1739
1742
|
'GPSDOP' => 'Precisión Medición',
|
1740
1743
|
'GPSDateStamp' => 'Fecha GPS',
|
1744
|
+
'GPSDateTime' => 'Fecha y Hora GPS',
|
1741
1745
|
'GPSDestBearing' => 'Orientación de Destino',
|
1742
1746
|
'GPSDestBearingRef' => {
|
1743
1747
|
Description => 'Referencia para Orientación de Destino',
|
@@ -4001,7 +4005,7 @@ and values.
|
|
4001
4005
|
|
4002
4006
|
=head1 AUTHOR
|
4003
4007
|
|
4004
|
-
Copyright 2003-
|
4008
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
4005
4009
|
|
4006
4010
|
This library is free software; you can redistribute it and/or modify it
|
4007
4011
|
under the same terms as Perl itself.
|
@@ -11,7 +11,7 @@ package Image::ExifTool::Lang::fi;
|
|
11
11
|
use strict;
|
12
12
|
use vars qw($VERSION);
|
13
13
|
|
14
|
-
$VERSION = '1.
|
14
|
+
$VERSION = '1.04';
|
15
15
|
|
16
16
|
%Image::ExifTool::Lang::fi::Translate = (
|
17
17
|
'AEAperture' => 'AE-aukko',
|
@@ -147,6 +147,7 @@ $VERSION = '1.02';
|
|
147
147
|
'ActionAdvised' => {
|
148
148
|
Description => 'Suositettava toiminto',
|
149
149
|
PrintConv => {
|
150
|
+
'Object Append' => 'Objektiliitäntä',
|
150
151
|
'Object Kill' => 'Objektin tuhonta',
|
151
152
|
'Object Reference' => 'Objektiviite',
|
152
153
|
'Object Replace' => 'Objektin korvaus',
|
@@ -238,6 +239,7 @@ $VERSION = '1.02';
|
|
238
239
|
'On' => 'Päällä',
|
239
240
|
},
|
240
241
|
},
|
242
|
+
'AutoBracketingSet' => 'Haarukointisarja',
|
241
243
|
'AutoDistortionControl' => 'Automaattinen vääristymäkorjaus',
|
242
244
|
'AutoExposureBracketing' => 'Automaattinen valotuksen haarukointi',
|
243
245
|
'AutoFP' => 'Automaattinen FP',
|
@@ -335,6 +337,7 @@ $VERSION = '1.02';
|
|
335
337
|
'BurstMode' => {
|
336
338
|
Description => 'Sarjatapa',
|
337
339
|
PrintConv => {
|
340
|
+
'Auto Exposure Bracketing (AEB)' => 'Ääretön',
|
338
341
|
'Infinite' => 'Ääretön',
|
339
342
|
'Off' => 'Pois',
|
340
343
|
'On' => 'Matala/korkea laatu',
|
@@ -442,6 +445,7 @@ $VERSION = '1.02';
|
|
442
445
|
'ColorBalanceBlue' => 'Väritasapaino sininen',
|
443
446
|
'ColorBalanceGreen' => 'Väritasapaino vihreä',
|
444
447
|
'ColorBalanceRed' => 'Väritasapaino punainen',
|
448
|
+
'ColorBalanceVersion' => 'Väritasapainon versio',
|
445
449
|
'ColorBoostData' => 'Väritehostusdata',
|
446
450
|
'ColorBoostLevel' => 'Väritehostustaso',
|
447
451
|
'ColorBoostType' => 'Väritehostustyyppi',
|
@@ -508,6 +512,7 @@ $VERSION = '1.02';
|
|
508
512
|
},
|
509
513
|
},
|
510
514
|
'ColorMoireReduction' => 'Värimoareen vaimennus',
|
515
|
+
'ColorMoireReductionMode' => 'Värimoareen vaimennustapa',
|
511
516
|
'ColorPalette' => 'Väripaletti',
|
512
517
|
'ColorProfile' => 'Väriprofiili',
|
513
518
|
'ColorRepresentation' => 'Väriesitys',
|
@@ -665,6 +670,7 @@ $VERSION = '1.02';
|
|
665
670
|
'DefaultCropOrigin' => 'Oletusrajauksen alkuperä',
|
666
671
|
'DefaultCropSize' => 'Oletusrajauskoko',
|
667
672
|
'DefaultScale' => 'Oletusasteikko',
|
673
|
+
'DelayTime' => 'Viiveaika',
|
668
674
|
'DeletedImageCount' => 'Poistettujen kuvien määrä',
|
669
675
|
'Description' => 'Deskriptio',
|
670
676
|
'Destination' => 'Kohde',
|
@@ -923,6 +929,7 @@ $VERSION = '1.02';
|
|
923
929
|
'FileIndex' => 'Tiedostoindeksi',
|
924
930
|
'FileInfo' => 'Tiedostoinfot',
|
925
931
|
'FileInfoVersion' => 'Tiedostoinfojen versio',
|
932
|
+
'FileName' => 'Tiedostonimi',
|
926
933
|
'FileNumber' => 'Tiedoston numero',
|
927
934
|
'FileNumberMemory' => 'Tiedostonumeromuisti',
|
928
935
|
'FileNumberSequence' => 'Tiedostojen numerojärjestys',
|
@@ -946,9 +953,11 @@ $VERSION = '1.02';
|
|
946
953
|
'Dynamic (B&W)' => 'Dynaaminen (M&V)',
|
947
954
|
'Dynamic (color)' => 'Dynaaminen (väri)',
|
948
955
|
'F0/Standard (PROVIA)' => 'F0/vakio',
|
956
|
+
'F0/Standard (Provia)' => 'F0/vakio',
|
949
957
|
'F1/Studio Portrait' => 'F1/studiomuotokuva',
|
950
958
|
'F1a/Studio Portrait Enhanced Saturation' => 'F1a/studiomuotokuva laajennettu värikylläisyys',
|
951
959
|
'F1b/Studio Portrait Smooth Skin Tone (ASTIA)' => 'F1b/studiomuotokuva pehmeä ihonväri',
|
960
|
+
'F1b/Studio Portrait Smooth Skin Tone (Astia)' => 'F1b/studiomuotokuva pehmeä ihonväri',
|
952
961
|
'F1c/Studio Portrait Increased Sharpness' => 'F1c/studiomuotokuva lisätty terävyys',
|
953
962
|
'F3/Studio Portrait Ex' => 'F3/studiomuotokuva Ex',
|
954
963
|
'Nature (color)' => 'Luonnollinen (väri)',
|
@@ -1013,6 +1022,7 @@ $VERSION = '1.02';
|
|
1013
1022
|
'FlashEnergy' => 'Salaman teho',
|
1014
1023
|
'FlashExposureBracketValue' => 'Salamavalotuksen haarukoinnin arvo',
|
1015
1024
|
'FlashExposureComp' => 'Salaman kirkkauden säätö',
|
1025
|
+
'FlashExposureComp2' => 'Salaman kirkkauden säätö 2',
|
1016
1026
|
'FlashFired' => {
|
1017
1027
|
Description => 'Salama lauennut',
|
1018
1028
|
PrintConv => {
|
@@ -1105,6 +1115,7 @@ $VERSION = '1.02';
|
|
1105
1115
|
'FocusArea' => 'Tarkennusalue',
|
1106
1116
|
'FocusAreaSelection' => 'Tarkennusalueen valinta',
|
1107
1117
|
'FocusContinuous' => 'Jatkuva tarkennus',
|
1118
|
+
'FocusDistance' => 'Tarkennusetäisyys',
|
1108
1119
|
'FocusDistanceLower' => 'Lähitarkennus',
|
1109
1120
|
'FocusDistanceUpper' => 'Kaukotarkennus',
|
1110
1121
|
'FocusMode' => {
|
@@ -1605,6 +1616,7 @@ $VERSION = '1.02';
|
|
1605
1616
|
'MaskedAreas' => 'Maskilliset alueet',
|
1606
1617
|
'MasterDocumentID' => 'Alkuperäisdokumentin ID',
|
1607
1618
|
'MasterGain' => 'Yleisvahvistus',
|
1619
|
+
'MatrixMetering' => 'Matriisimittaus',
|
1608
1620
|
'Matteing' => 'Mattaus',
|
1609
1621
|
'MaxAperture' => 'Suurin aukko',
|
1610
1622
|
'MaxApertureAtCurrentFocal' => 'Suurin aukko nykyisellä polttovälillä',
|
@@ -1662,6 +1674,7 @@ $VERSION = '1.02';
|
|
1662
1674
|
'Model' => 'Malli',
|
1663
1675
|
'Model2' => 'Kuvasyötelaitteen malli (2)',
|
1664
1676
|
'ModelAndVersion' => 'Malli ja versio',
|
1677
|
+
'ModelID' => 'Mallin ID',
|
1665
1678
|
'ModelTiePoint' => 'Sidospistemalli-tagi',
|
1666
1679
|
'ModelTransform' => 'Muuntomalli-tagi',
|
1667
1680
|
'ModelingFlash' => 'Mallinnussalama',
|
@@ -2021,6 +2034,7 @@ $VERSION = '1.02';
|
|
2021
2034
|
'n/a' => 'Ei asetettu',
|
2022
2035
|
},
|
2023
2036
|
},
|
2037
|
+
'Quality2' => 'Laatu 2',
|
2024
2038
|
'QualityMode' => {
|
2025
2039
|
Description => 'Kuvalaatu',
|
2026
2040
|
PrintConv => {
|
@@ -2153,7 +2167,13 @@ $VERSION = '1.02';
|
|
2153
2167
|
},
|
2154
2168
|
},
|
2155
2169
|
'ResolutionMode' => 'Resoluutiomuoto',
|
2156
|
-
'ResolutionUnit' =>
|
2170
|
+
'ResolutionUnit' => {
|
2171
|
+
Description => 'X- ja Y-resoluution yksikkö',
|
2172
|
+
PrintConv => {
|
2173
|
+
'None' => 'Ei mitään',
|
2174
|
+
'inches' => 'Tuuma',
|
2175
|
+
},
|
2176
|
+
},
|
2157
2177
|
'RetouchHistory' => 'Korjailuhistoria',
|
2158
2178
|
'ReverseIndicators' => 'Käänteiset ilmaisimet',
|
2159
2179
|
'RevisionNumber' => 'Revision numero',
|
@@ -2218,6 +2238,10 @@ $VERSION = '1.02';
|
|
2218
2238
|
'Saturation' => {
|
2219
2239
|
Description => 'Värikylläisyys',
|
2220
2240
|
PrintConv => {
|
2241
|
+
'+1 (medium high)' => 'Korkeahko',
|
2242
|
+
'+2 (high)' => 'Korkea',
|
2243
|
+
'-1 (medium low)' => 'Matalahko',
|
2244
|
+
'0 (normal)' => 'Vakio',
|
2221
2245
|
'Film Simulation' => 'Filminsimulaatio',
|
2222
2246
|
'High' => 'Korkea',
|
2223
2247
|
'Low' => 'Matala',
|
@@ -2422,6 +2446,13 @@ $VERSION = '1.02';
|
|
2422
2446
|
'Sharpness' => {
|
2423
2447
|
Description => 'Terävyys',
|
2424
2448
|
PrintConv => {
|
2449
|
+
'+1 (medium hard)' => 'Kovahko',
|
2450
|
+
'+2 (hard)' => 'Kova',
|
2451
|
+
'+3 (very hard)' => 'Kova 2',
|
2452
|
+
'-1 (medium soft)' => 'Pehmeähkö',
|
2453
|
+
'-2 (soft)' => 'Pehmeä 2',
|
2454
|
+
'-3 (very soft)' => 'Pehmeä',
|
2455
|
+
'0 (normal)' => 'Vakio',
|
2425
2456
|
'Film Simulation' => 'Filminsimulaatio',
|
2426
2457
|
'Hard' => 'Kova',
|
2427
2458
|
'Hard2' => 'Kova 2',
|
@@ -2473,6 +2504,7 @@ $VERSION = '1.02';
|
|
2473
2504
|
'SpecialInstructions' => 'Ohjeet',
|
2474
2505
|
'SpecialMode' => 'Erikoistapa',
|
2475
2506
|
'SpectralSensitivity' => 'Spektraalinen herkkyys',
|
2507
|
+
'Sport' => 'Urheilu',
|
2476
2508
|
'SpotFocusPointX' => 'Pistetarkennuksen piste X',
|
2477
2509
|
'SpotFocusPointY' => 'Pistetarkennuksen piste Y',
|
2478
2510
|
'SpotMeteringMode' => 'Pistemittaustapa',
|
@@ -2743,6 +2775,10 @@ $VERSION = '1.02';
|
|
2743
2775
|
'Custom WB 4' => 'Mukautettu valkotasapaino 4',
|
2744
2776
|
'Custom WB 5400K' => 'Mukautettu valkotasapaino 5400 K',
|
2745
2777
|
'Custom WB 8000K' => 'Mukautettu valkotasapaino 8000 K',
|
2778
|
+
'One Touch WB 1' => 'Mukautettu valkotasapaino 1',
|
2779
|
+
'One Touch WB 2' => 'Mukautettu valkotasapaino 2',
|
2780
|
+
'One Touch WB 3' => 'Mukautettu valkotasapaino 3',
|
2781
|
+
'One Touch WB 4' => 'Mukautettu valkotasapaino 4',
|
2746
2782
|
},
|
2747
2783
|
},
|
2748
2784
|
'WhiteBalanceAdj' => 'Väritasapainon säätö',
|
@@ -2801,7 +2837,13 @@ $VERSION = '1.02';
|
|
2801
2837
|
'XPosition' => 'X-sijainti',
|
2802
2838
|
'XResolution' => 'Kuvan vaakaresoluutio',
|
2803
2839
|
'YCbCrCoefficients' => 'Väriavaruuden muunnon matriisikertoimet',
|
2804
|
-
'YCbCrPositioning' =>
|
2840
|
+
'YCbCrPositioning' => {
|
2841
|
+
Description => 'Y:n ja C:n sijoitus',
|
2842
|
+
PrintConv => {
|
2843
|
+
'Centered' => 'Keskitetty',
|
2844
|
+
'Co-sited' => 'Vierekkäin',
|
2845
|
+
},
|
2846
|
+
},
|
2805
2847
|
'YCbCrSubSampling' => 'Suhteen Y - C subsamplaus',
|
2806
2848
|
'YClipPathUnits' => 'Y-leikepolkuyksiköt',
|
2807
2849
|
'YPosition' => 'Y-sijainti',
|
@@ -2836,7 +2878,7 @@ and values.
|
|
2836
2878
|
|
2837
2879
|
=head1 AUTHOR
|
2838
2880
|
|
2839
|
-
Copyright 2003-
|
2881
|
+
Copyright 2003-2019, Phil Harvey (phil at owl.phy.queensu.ca)
|
2840
2882
|
|
2841
2883
|
This library is free software; you can redistribute it and/or modify it
|
2842
2884
|
under the same terms as Perl itself.
|