[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:38:47 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=88d0bf6

The following commit has been merged in the master branch:
commit 88d0bf666212730669a3f7249b1d37a8bfefdf09
Author: HumanDynamo <caulier.gilles at gmail.com>
Date:   Fri Sep 28 18:20:28 2007 +0000

    XMP i18n : xmpDcInfo done. Note than all first char of tags Title are now capitalized like others XMP schemas
---
 src/properties.cpp | 56 +++++++++++++++++++++++++++---------------------------
 1 file changed, 28 insertions(+), 28 deletions(-)

diff --git a/src/properties.cpp b/src/properties.cpp
index 179ac3e..4ed023c 100644
--- a/src/properties.cpp
+++ b/src/properties.cpp
@@ -81,39 +81,39 @@ namespace Exiv2 {
                                                                                              // NOTE: 'Iptc4xmpCore' is just too long
 
         // Structures
-        { "http://ns.adobe.com/xap/1.0/g/",                   "xapG",    0, "Colorant structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/Dimensions#",    "stDim",   0, "Dimensions structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/Font#",          "stFnt",   0, "Font structure" },
-        { "http://ns.adobe.com/xap/1.0/g/img/",               "xapGImg", 0, "Thumbnail structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/ResourceEvent#", "stEvt",   0, "Resource Event structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/ResourceRef#",   "stRef",   0, "ResourceRef structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/Version#",       "stVer",   0, "Version structure" },
-        { "http://ns.adobe.com/xap/1.0/sType/Job#",           "stJob",   0, "Basic Job/Workflow structure" },
+        { "http://ns.adobe.com/xap/1.0/g/",                   "xapG",    0, N_("Colorant structure")           },
+        { "http://ns.adobe.com/xap/1.0/sType/Dimensions#",    "stDim",   0, N_("Dimensions structure")         },
+        { "http://ns.adobe.com/xap/1.0/sType/Font#",          "stFnt",   0, N_("Font structure")               },
+        { "http://ns.adobe.com/xap/1.0/g/img/",               "xapGImg", 0, N_("Thumbnail structure")          },
+        { "http://ns.adobe.com/xap/1.0/sType/ResourceEvent#", "stEvt",   0, N_("Resource Event structure")     },
+        { "http://ns.adobe.com/xap/1.0/sType/ResourceRef#",   "stRef",   0, N_("ResourceRef structure")        },
+        { "http://ns.adobe.com/xap/1.0/sType/Version#",       "stVer",   0, N_("Version structure")            },
+        { "http://ns.adobe.com/xap/1.0/sType/Job#",           "stJob",   0, N_("Basic Job/Workflow structure") },
 
         // Qualifiers
-        { "http://ns.adobe.com/xmp/Identifier/qual/1.0/", "xmpidq", 0, "Qualifier for xmp:Identifier" }
+        { "http://ns.adobe.com/xmp/Identifier/qual/1.0/", "xmpidq", 0, N_("Qualifier for xmp:Identifier") }
     };
 
     extern const XmpPropertyInfo xmpDcInfo[] = {
-        { "contributor",      "contributor",      "bag ProperName", xmpBag,        xmpExternal, "Contributors to the resource (other than the authors)." },
-        { "coverage",         "coverage",         "Text",        xmpText,          xmpExternal, "The extent or scope of the resource." },
-        { "creator",          "creator",          "seq ProperName", xmpSeq,        xmpExternal, "The authors of the resource (listed in order of precedence, if significant)." },
-        { "date",             "date",             "seq Date",    xmpSeq,           xmpExternal, "Date(s) that something interesting happened to the resource." },
-        { "description",      "description",      "Lang Alt",    langAlt,          xmpExternal, "A textual description of the content of the resource. Multiple values may be "
-                                                                                                "present for different languages." },
-        { "format",           "format",           "MIMEType",    xmpText,          xmpInternal, "The file format used when saving the resource. Tools and applications should set "
-                                                                                                "this property to the save format of the data. It may include appropriate qualifiers." },
-        { "identifier",       "identifier",       "Text",        xmpText,          xmpExternal, "Unique identifier of the resource." },
-        { "language",         "language",         "bag Locale",  xmpBag,           xmpInternal, "An unordered array specifying the languages used in the resource." },
-        { "publisher",        "publisher",        "bag ProperName", xmpBag,        xmpExternal, "Publishers." },
-        { "relation",         "relation",         "bag Text",    xmpBag,           xmpInternal, "Relationships to other documents." },
-        { "rights",           "rights",           "Lang Alt",    langAlt,          xmpExternal, "Informal rights statement, selected by language." },
-        { "source",           "source",           "Text",        xmpText,          xmpExternal, "Unique identifier of the work from which this resource was derived." },
-        { "subject",          "subject",          "bag Text",    xmpBag,           xmpExternal, "An unordered array of descriptive phrases or keywords that specify the topic of the "
-                                                                                                "content of the resource." },
-        { "title",            "title",            "Lang Alt",    langAlt,          xmpExternal, "The title of the document, or the name given to the resource. Typically, it will be "
-                                                                                                "a name by which the resource is formally known." },
-        { "type",             "type",             "bag open Choice", xmpBag,       xmpExternal, "A document type; for example, novel, poem, or working paper." },
+        { "contributor",      N_("Contributor"),      "bag ProperName",  xmpBag,       xmpExternal, N_("Contributors to the resource (other than the authors).") },
+        { "coverage",         N_("Coverage"),         "Text",            xmpText,      xmpExternal, N_("The extent or scope of the resource.") },
+        { "creator",          N_("Creator"),          "seq ProperName",  xmpSeq,       xmpExternal, N_("The authors of the resource (listed in order of precedence, if significant).") },
+        { "date",             N_("Date"),             "seq Date",        xmpSeq,       xmpExternal, N_("Date(s) that something interesting happened to the resource.") },
+        { "description",      N_("Description"),      "Lang Alt",        langAlt,      xmpExternal, N_("A textual description of the content of the resource. Multiple values may be "
+                                                                                                       "present for different languages.") },
+        { "format",           N_("Format"),           "MIMEType",        xmpText,      xmpInternal, N_("The file format used when saving the resource. Tools and applications should set "
+                                                                                                       "this property to the save format of the data. It may include appropriate qualifiers.") },
+        { "identifier",       N_("Identifier"),       "Text",            xmpText,      xmpExternal, N_("Unique identifier of the resource.") },
+        { "language",         N_("Language"),         "bag Locale",      xmpBag,       xmpInternal, N_("An unordered array specifying the languages used in the resource.") },
+        { "publisher",        N_("Publisher"),        "bag ProperName",  xmpBag,       xmpExternal, N_("Publishers.") },
+        { "relation",         N_("Relation"),         "bag Text",        xmpBag,       xmpInternal, N_("Relationships to other documents.") },
+        { "rights",           N_("Rights"),           "Lang Alt",        langAlt,      xmpExternal, N_("Informal rights statement, selected by language.") },
+        { "source",           N_("Source"),           "Text",            xmpText,      xmpExternal, N_("Unique identifier of the work from which this resource was derived.") },
+        { "subject",          N_("Subject"),          "bag Text",        xmpBag,       xmpExternal, N_("An unordered array of descriptive phrases or keywords that specify the topic of the "
+                                                                                                       "content of the resource.") },
+        { "title",            N_("Title"),            "Lang Alt",        langAlt,      xmpExternal, N_("The title of the document, or the name given to the resource. Typically, it will be "
+                                                                                                       "a name by which the resource is formally known.") },
+        { "type",             N_("Type"),             "bag open Choice", xmpBag,       xmpExternal, N_("A document type; for example, novel, poem, or working paper.") },
         // End of list marker
         { 0, 0, 0, invalidTypeId, xmpInternal, 0 }
     };

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list