@@ -20,28 +20,28 @@ using namespace Internal;
2020
2121// ! List of all defined Exif sections.
2222constexpr auto sectionInfo = std::array{
23- SectionInfo ( SectionId::sectionIdNotSet, " (UnknownSection)" , N_ (" Unknown section" )) ,
24- SectionInfo ( SectionId::imgStruct, " ImageStructure" , N_ (" Image data structure" )) ,
25- SectionInfo ( SectionId::recOffset, " RecordingOffset" , N_ (" Recording offset" )) ,
26- SectionInfo ( SectionId::imgCharacter, " ImageCharacteristics" , N_ (" Image data characteristics" )) ,
27- SectionInfo ( SectionId::otherTags, " OtherTags" , N_ (" Other data" )) ,
28- SectionInfo ( SectionId::exifFormat, " ExifFormat" , N_ (" Exif data structure" )) ,
29- SectionInfo ( SectionId::exifVersion, " ExifVersion" , N_ (" Exif version" )) ,
30- SectionInfo ( SectionId::imgConfig, " ImageConfig" , N_ (" Image configuration" )) ,
31- SectionInfo ( SectionId::userInfo, " UserInfo" , N_ (" User information" )) ,
32- SectionInfo ( SectionId::relatedFile, " RelatedFile" , N_ (" Related file" )) ,
33- SectionInfo ( SectionId::dateTime, " DateTime" , N_ (" Date and time" )) ,
34- SectionInfo ( SectionId::captureCond, " CaptureConditions" , N_ (" Picture taking conditions" )) ,
35- SectionInfo ( SectionId::gpsTags, " GPS" , N_ (" GPS information" )) ,
36- SectionInfo ( SectionId::iopTags, " Interoperability" , N_ (" Interoperability information" )) ,
37- SectionInfo ( SectionId::mpfTags, " MPF" , N_ (" CIPA Multi-Picture Format" )) ,
38- SectionInfo ( SectionId::makerTags, " Makernote" , N_ (" Vendor specific information" )) ,
39- SectionInfo ( SectionId::dngTags, " DngTags" , N_ (" Adobe DNG tags" )) ,
40- SectionInfo ( SectionId::panaRaw, " PanasonicRaw" , N_ (" Panasonic RAW tags" )) ,
41- SectionInfo ( SectionId::tiffEp, " TIFF/EP" , N_ (" TIFF/EP tags" )) ,
42- SectionInfo ( SectionId::tiffPm6, " TIFF&PM6" , N_ (" TIFF PageMaker 6.0 tags" )) ,
43- SectionInfo ( SectionId::adobeOpi, " AdobeOPI" , N_ (" Adobe OPI tags" )) ,
44- SectionInfo ( SectionId::lastSectionId, " (LastSection)" , N_ (" Last section" )) ,
23+ SectionInfo{ SectionId::sectionIdNotSet, " (UnknownSection)" , N_ (" Unknown section" )} ,
24+ SectionInfo{ SectionId::imgStruct, " ImageStructure" , N_ (" Image data structure" )} ,
25+ SectionInfo{ SectionId::recOffset, " RecordingOffset" , N_ (" Recording offset" )} ,
26+ SectionInfo{ SectionId::imgCharacter, " ImageCharacteristics" , N_ (" Image data characteristics" )} ,
27+ SectionInfo{ SectionId::otherTags, " OtherTags" , N_ (" Other data" )} ,
28+ SectionInfo{ SectionId::exifFormat, " ExifFormat" , N_ (" Exif data structure" )} ,
29+ SectionInfo{ SectionId::exifVersion, " ExifVersion" , N_ (" Exif version" )} ,
30+ SectionInfo{ SectionId::imgConfig, " ImageConfig" , N_ (" Image configuration" )} ,
31+ SectionInfo{ SectionId::userInfo, " UserInfo" , N_ (" User information" )} ,
32+ SectionInfo{ SectionId::relatedFile, " RelatedFile" , N_ (" Related file" )} ,
33+ SectionInfo{ SectionId::dateTime, " DateTime" , N_ (" Date and time" )} ,
34+ SectionInfo{ SectionId::captureCond, " CaptureConditions" , N_ (" Picture taking conditions" )} ,
35+ SectionInfo{ SectionId::gpsTags, " GPS" , N_ (" GPS information" )} ,
36+ SectionInfo{ SectionId::iopTags, " Interoperability" , N_ (" Interoperability information" )} ,
37+ SectionInfo{ SectionId::mpfTags, " MPF" , N_ (" CIPA Multi-Picture Format" )} ,
38+ SectionInfo{ SectionId::makerTags, " Makernote" , N_ (" Vendor specific information" )} ,
39+ SectionInfo{ SectionId::dngTags, " DngTags" , N_ (" Adobe DNG tags" )} ,
40+ SectionInfo{ SectionId::panaRaw, " PanasonicRaw" , N_ (" Panasonic RAW tags" )} ,
41+ SectionInfo{ SectionId::tiffEp, " TIFF/EP" , N_ (" TIFF/EP tags" )} ,
42+ SectionInfo{ SectionId::tiffPm6, " TIFF&PM6" , N_ (" TIFF PageMaker 6.0 tags" )} ,
43+ SectionInfo{ SectionId::adobeOpi, " AdobeOPI" , N_ (" Adobe OPI tags" )} ,
44+ SectionInfo{ SectionId::lastSectionId, " (LastSection)" , N_ (" Last section" )} ,
4545};
4646
4747} // namespace Exiv2
0 commit comments