diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..89240b8e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,63 @@ +version: 2 +registries: + maven-alfresco-internal: + type: maven-repository + url: https://artifacts.alfresco.com/nexus/content/groups/internal + username: ${{secrets.NEXUS_USERNAME}} + password: ${{secrets.NEXUS_PASSWORD}} +updates: +- package-ecosystem: maven + directory: "/" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 + ignore: + - dependency-name: io.fabric8:fabric8-maven-plugin + versions: + - "> 4.4.0, < 4.5" + registries: + - maven-alfresco-internal +- package-ecosystem: docker + directory: "/alfresco-transform-core-aio/alfresco-transform-core-aio-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/alfresco-transform-misc/alfresco-transform-misc-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/alfresco-transform-tika/alfresco-transform-tika-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot" + schedule: + interval: daily + time: "22:00" + timezone: Europe/London + open-pull-requests-limit: 99 diff --git a/.travis.yml b/.travis.yml index 91e0eab2..867f0f1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,36 +45,36 @@ jobs: before_script: travis_wait bash _ci/cache_artifacts.sh install: _ci/build.sh ffmpeg script: bash _ci/test.sh ffmpeg -# - name: "ImageMagick" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh imagemagick -# script: bash _ci/test.sh imagemagick -# - name: "LibreOffice" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh libreoffice -# script: bash _ci/test.sh libreoffice -# - name: "Transform Misc" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh misc -# script: bash _ci/test.sh misc -# - name: "PDF Renderer" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh pdf-renderer -# script: bash _ci/test.sh pdf-renderer -# - name: "Tika" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh tika -# script: bash _ci/test.sh tika -# - name: "All in One Transfomer" -# if: branch NOT IN (company_release) -# before_script: travis_wait bash _ci/cache_artifacts.sh -# install: _ci/build.sh full-build -# script: bash _ci/test.sh aio-test + - name: "ImageMagick" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh imagemagick + script: bash _ci/test.sh imagemagick + - name: "LibreOffice" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh libreoffice + script: bash _ci/test.sh libreoffice + - name: "Transform Misc" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh misc + script: bash _ci/test.sh misc + - name: "PDF Renderer" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh pdf-renderer + script: bash _ci/test.sh pdf-renderer + - name: "Tika" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh tika + script: bash _ci/test.sh tika + - name: "All in One Transformer" + if: branch NOT IN (company_release) + before_script: travis_wait bash _ci/cache_artifacts.sh + install: _ci/build.sh full-build + script: travis_wait 30 bash _ci/test.sh aio-test # - name: "WhiteSource" # if: branch NOT IN (company_release) # script: bash _ci/whitesource.sh diff --git a/README.md b/README.md index 081969c5..2093f3e2 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ Contains the common transformer (T-Engine) code, plus a few actual implementatio * `alfresco-transformer-base` - library packaged as a jar file which contains code that is common to all the transformers; see the sub-project's [README](https://github.com/Alfresco/alfresco-transform-core/blob/master/alfresco-transformer-base/README.md) -* `alfresco-docker-` - multiple T-Engines; each one of them builds both a SpringBoot fat jar - and a Docker image +* `alfresco-transform-` - multiple T-Engines; each one of them builds both a SpringBoot fat jar + and a [Docker image](https://github.com/Alfresco/alfresco-transform-core#docker) ### Documentation @@ -52,20 +52,32 @@ and Alfresco Maven repository: ``` #### Docker -The core T-Engine images are available on Docker Hub: +The core T-Engine images are available on Docker Hub. + +Either as a single Core AIO (All-In-One) T-Engine: +* [alfresco/alfresco-transform-core-aio](https://hub.docker.com/r/alfresco/alfresco-transform-core-aio) + +Or as set of individual T-Engines: * [alfresco/alfresco-imagemagick](https://hub.docker.com/r/alfresco/alfresco-imagemagick) * [alfresco/alfresco-pdf-renderer](https://hub.docker.com/r/alfresco/alfresco-pdf-renderer) * [alfresco/alfresco-libreoffice](https://hub.docker.com/r/alfresco/alfresco-libreoffice) * [alfresco/alfresco-tika](https://hub.docker.com/r/alfresco/alfresco-tika) * [alfresco/alfresco-transform-misc](https://hub.docker.com/r/alfresco/alfresco-transform-misc) +You can find examples of using Core AIO in the reference ACS Deployment for Docker Compose: +* [ACS Community](https://github.com/Alfresco/acs-deployment/blob/master/docker-compose/community-docker-compose.yml) +* [ACS Enterprise](https://github.com/Alfresco/acs-deployment/blob/master/docker-compose/docker-compose.yml) + +You can find examples of using the indivudal T-Engines in the reference ACS Deployment for Helm / Kubernetes: +* [ACS Community](https://github.com/Alfresco/acs-deployment/blob/master/helm/alfresco-content-services/community_values.yaml) +* [ACS Enterprise](https://github.com/Alfresco/acs-deployment/blob/master/helm/alfresco-content-services/values.yaml) + ### Release Process For a complete walk-through check out the [build-and-release.MD](https://github.com/Alfresco/alfresco-transform-core/tree/master/docs/build-and-release.md) under the `docs` folder. - ### Contributing guide Please use [this guide](https://github.com/Alfresco/alfresco-repository/blob/master/CONTRIBUTING.md) diff --git a/_ci/init.sh b/_ci/init.sh index be613bd3..ccccbd8c 100644 --- a/_ci/init.sh +++ b/_ci/init.sh @@ -6,7 +6,7 @@ set -vex pushd "$(dirname "${BASH_SOURCE[0]}")/../" mkdir -p ${HOME}/.m2 && cp -rf _ci/settings.xml ${HOME}/.m2/ -echo "${QUAY_PASSWORD}" | docker login -u="alfresco+bamboo" --password-stdin quay.io +echo "${QUAY_PASSWORD}" | docker login -u="${QUAY_USERNAME}" --password-stdin quay.io echo "${DOCKERHUB_PASSWORD}" | docker login -u=${DOCKERHUB_USERNAME} --password-stdin docker.io find "${HOME}/.m2/repository/" -type d -name "*-SNAPSHOT*" | xargs -r -l rm -rf diff --git a/_ci/settings.xml b/_ci/settings.xml index 6a23a33a..70a190a1 100644 --- a/_ci/settings.xml +++ b/_ci/settings.xml @@ -39,50 +39,50 @@ alfresco-internal - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-internal-snapshots - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-internal-releases - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-enterprise-snapshots - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-enterprise-releases - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-public-snapshots - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-public - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} alfresco-thirdparty - bamboo + ${env.NEXUS_USERNAME} ${env.NEXUS_PASSWORD} quay.io - alfresco+bamboo + ${env.QUAY_USERNAME} ${env.QUAY_PASSWORD} diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/Dockerfile b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/Dockerfile index 4ce1669b..d314c739 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/Dockerfile +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/Dockerfile @@ -5,22 +5,21 @@ # ImageMagick is from ImageMagick Studio LLC. See the license at http://www.imagemagick.org/script/license.php or in /ImageMagick-license.txt. # alfresco-pdf-renderer uses the PDFium library from Google Inc. See the license at https://pdfium.googlesource.com/pdfium/+/master/LICENSE or in /pdfium.txt. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 -ENV APACHE_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/Apache%202.0.txt +ARG EXIFTOOL_VERSION=12.25 +ARG EXIFTOOL_FOLDER=Image-ExifTool-${EXIFTOOL_VERSION} +ARG EXIFTOOL_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/exiftool/image-exiftool/${EXIFTOOL_VERSION}/image-exiftool-${EXIFTOOL_VERSION}.tgz ARG IMAGEMAGICK_VERSION=7.0.10-59 ENV IMAGEMAGICK_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/imagemagick/imagemagick-distribution/${IMAGEMAGICK_VERSION}/imagemagick-distribution-${IMAGEMAGICK_VERSION}-linux.rpm ENV IMAGEMAGICK_LIB_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/imagemagick/imagemagick-distribution/${IMAGEMAGICK_VERSION}/imagemagick-distribution-${IMAGEMAGICK_VERSION}-libs-linux.rpm ENV IMAGEMAGICK_DEP_RPM_URL=https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -ENV IMAGEMAGICK_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/ImageMagick-license.txt -ARG LIBREOFFICE_VERSION=6.3.5 +ARG LIBREOFFICE_VERSION=7.0.6 ENV LIBREOFFICE_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/libreoffice/libreoffice-dist/${LIBREOFFICE_VERSION}/libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz -ENV LIBREOFFICE_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/libreoffice.txt ENV ALFRESCO_PDF_RENDERER_LIB_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/releases/content/org/alfresco/alfresco-pdf-renderer/1.1/alfresco-pdf-renderer-1.1-linux.tgz -ENV PDFIUM_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/pdfium.txt ENV JAVA_OPTS="" @@ -35,32 +34,34 @@ COPY target/alfresco-transform-core-aio-boot-${env.project_version}.jar /usr/bin RUN ln /usr/bin/alfresco-transform-core-aio-boot-${env.project_version}.jar /usr/bin/alfresco-transform-core-aio-boot.jar && \ curl -s -S $IMAGEMAGICK_RPM_URL -o imagemagick-distribution-linux.rpm && \ curl -s -S $IMAGEMAGICK_LIB_RPM_URL -o imagemagick-distribution-libs-linux.rpm && \ - curl -s -S $IMAGEMAGICK_LICENSE_FILE -o ImageMagick-license.txt && \ curl -s -S $IMAGEMAGICK_DEP_RPM_URL -o imagemagick-epel-dep.rpm && \ yum localinstall -y imagemagick-epel-dep.rpm && \ yum localinstall -y imagemagick-distribution-*linux.rpm && \ rm -f imagemagick-distribution-*.rpm && \ - yum clean all && \ - yum install -y cairo cups-libs libSM && \ + yum install -y cairo cups-libs libSM libGLU && \ test -f libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz && \ ln -s libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz libreoffice-dist-linux.gz || \ curl -s -S $LIBREOFFICE_RPM_URL -o libreoffice-dist-linux.gz && \ - curl -s -S $LIBREOFFICE_LICENSE_FILE -o libreoffice.txt && \ tar xzf libreoffice-dist-linux.gz && \ yum localinstall -y LibreOffice*/RPMS/*.rpm && \ rm -rf libreoffice-dist-*linux.gz LibreOffice_*_Linux_x86-64_rpm && \ - yum clean all && \ curl -s -S $ALFRESCO_PDF_RENDERER_LIB_RPM_URL -o alfresco-pdf-renderer-linux.tgz && \ - curl -s -S $PDFIUM_LICENSE_FILE -o pdfium.txt && \ tar xf alfresco-pdf-renderer-linux.tgz -C /usr/bin && \ rm -f alfresco-pdf-renderer-linux.tgz && \ - yum clean all && \ - curl -s -S $APACHE_LICENSE_FILE -o Apache\ 2.0.txt && \ + curl -s -S $EXIFTOOL_URL -o ${EXIFTOOL_FOLDER}.tgz && \ + tar xzf ${EXIFTOOL_FOLDER}.tgz && \ + yum -y install perl && \ + (cd ./${EXIFTOOL_FOLDER} && \ + perl Makefile.PL && \ + make && \ + make test && \ + make install) && \ yum clean all ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${AIOUSERNAME} && \ diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/pom.xml b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/pom.xml index 4f32fe4f..2c548dec 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/pom.xml +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/AIOCustomConfig.java b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/AIOCustomConfig.java index 65431ac3..9bf7201d 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/AIOCustomConfig.java +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/AIOCustomConfig.java @@ -2,7 +2,7 @@ * #%L * Alfresco Transform Core * %% - * Copyright (C) 2005 - 2020 Alfresco Software Limited + * Copyright (C) 2005 - 2021 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -76,6 +76,9 @@ public class AIOCustomConfig @Value("${transform.core.imagemagick.config}") private String imageMagickConfigPath; + @Value("${transform.core.tika.pdfBox.notExtractBookmarksTextDefault:false}") + private boolean notExtractBookmarksTextDefault; + /** * * @return Override the TransformRegistryImpl used in {@link AbstractTransformerController} @@ -86,10 +89,11 @@ public class AIOCustomConfig { AIOTransformRegistry aioTransformRegistry = new AIOTransformRegistry(); aioTransformRegistry.registerTransformer(new SelectingTransformer()); - aioTransformRegistry.registerTransformer(new TikaJavaExecutor()); + aioTransformRegistry.registerTransformer(new TikaJavaExecutor(notExtractBookmarksTextDefault)); aioTransformRegistry.registerTransformer(new ImageMagickCommandExecutor(imageMagickExePath, imageMagickDynPath, imageMagickRootPath, imageMagickCodersPath, imageMagickConfigPath)); aioTransformRegistry.registerTransformer(new LibreOfficeJavaExecutor(libreofficePath, libreofficeMaxTasksPerProcess, libreofficeTimeout, libreofficePortNumbers, libreofficeTemplateProfileDir, libreofficeIsEnabled)); aioTransformRegistry.registerTransformer(new PdfRendererCommandExecutor(pdfRendererPath)); + aioTransformRegistry.registerCombinedTransformers(); return aioTransformRegistry; } } diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/Application.java b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/Application.java index 45ce132c..0f9dc027 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/Application.java +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/java/org/alfresco/transformer/Application.java @@ -75,7 +75,7 @@ public class Application Arrays.stream(LICENCE.split("\\n")).forEach(logger::info); logger.info(ImageMagickCommandExecutor.LICENCE); logger.info(LibreOfficeJavaExecutor.LICENCE); - logger.info(TikaJavaExecutor.LICENCE); + Arrays.stream(TikaJavaExecutor.LICENCE.split("\\n")).forEach(logger::info); logger.info(PdfRendererCommandExecutor.LICENCE); Arrays.stream(SelectingTransformer.LICENCE.split("\\n")).forEach(logger::info); logger.info("--------------------------------------------------------------------------------------------------------------------------------------------------------------"); diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/application-default.yaml b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/application-default.yaml index fbb650a0..3a55ed6b 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/application-default.yaml +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/application-default.yaml @@ -5,7 +5,7 @@ transform: pdfrenderer: exe: ${PDFRENDERER_EXE:/usr/bin/alfresco-pdf-renderer} libreoffice: - path: ${LIBREOFFICE_HOME:/opt/libreoffice6.3} + path: ${LIBREOFFICE_HOME:/opt/libreoffice7.0} maxTasksPerProcess: ${LIBREOFFICE_MAX_TASKS_PER_PROCESS:200} timeout: ${LIBREOFFICE_TIMEOUT:1200000} portNumbers: ${LIBREOFFICE_PORT_NUMBERS:8100} @@ -17,3 +17,6 @@ transform: exe: ${IMAGEMAGICK_EXE:/usr/bin/convert} coders: ${IMAGEMAGICK_CODERS:} config: ${IMAGEMAGICK_CONFIG:} + tika: + pdfBox: + notExtractBookmarksTextDefault: ${PDFBOX_NOTEXTRACTBOOKMARKS_DEFAULT:false} \ No newline at end of file diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt new file mode 100644 index 00000000..b09cd785 --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt new file mode 100644 index 00000000..f16ade13 --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt @@ -0,0 +1,110 @@ +The authoritative ImageMagick license can be found at +http://www.imagemagick.org/script/license.php and ImageMagick notices at +http://www.imagemagick.org/www/Notice.html. + +Before we get to the text of the license, lets just review what the license says in simple terms: + +It allows you to: + + * freely download and use ImageMagick software, in whole or in part, for personal, company internal, or commercial purposes; + * use ImageMagick software in packages or distributions that you create; + * link against a library under a different license; + * link code under a different license against a library under this license; + * merge code into a work under a different license; + * extend patent grants to any code using code under this license; + *and extend patent protection. + +It forbids you to: + + * redistribute any piece of ImageMagick-originated software without proper attribution; + * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that ImageMagick Studio LLC endorses your distribution; + * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that you created the ImageMagick software in question. + +It requires you to: + + * include a copy of the license in any redistribution you may make that includes ImageMagick software; + * provide clear attribution to ImageMagick Studio LLC for any distributions that include ImageMagick software. + +It does not require you to: + + * include the source of the ImageMagick software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it; + * submit changes that you make to the software back to the ImageMagick Studio LLC (though such feedback is encouraged). + +A few other clarifications include: + * ImageMagick is freely available without charge; + * you may include ImageMagick on any digital media as long as you comply with the terms of the license; + * you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; + * the license is compatible with the GPL V3. + * when exporting the ImageMagick software, review its export classification. + +Terms and Conditions for Use, Reproduction, and Distribution + +The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: + +Copyright © 1999-2018 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + a. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + b. You must cause any modified files to carry prominent notices stating that You changed the files; and + + c. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + d. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +How to Apply the License to your Work + +To apply the ImageMagick License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information (don't include the brackets). The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the ImageMagick License (the "License"); you may not use + this file except in compliance with the License. You may obtain a copy + of the License at + + https://www.imagemagick.org/script/license.php + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. \ No newline at end of file diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt new file mode 100644 index 00000000..699679e8 --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt @@ -0,0 +1,127 @@ + The "Artistic License" + + Preamble + +The intent of this document is to state the conditions under which a +Package may be copied, such that the Copyright Holder maintains some +semblance of artistic control over the development of the package, +while giving the users of the package the right to use and distribute +the Package in a more-or-less customary fashion, plus the right to make +reasonable modifications. + +Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Reasonable copying fee" is whatever you can justify on the + basis of media cost, duplication charges, time of people involved, + and so on. (You will not be required to justify it to the + Copyright Holder, but only to the computing community at large + as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item + itself, though there may be fees involved in handling the item. + It also means that recipients of the item may redistribute it + under the same conditions they received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you +duplicate all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications +derived from the Public Domain or from the Copyright Holder. A Package +modified in such a way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided +that you insert a prominent notice in each changed file stating how and +when you changed that file, and provided that you do at least ONE of the +following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or + an equivalent medium, or placing the modifications on a major archive + site such as uunet.uu.net, or by allowing the Copyright Holder to include + your modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or +executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this +Package. You may charge any fee you choose for support of this +Package. You may not charge a fee for this Package itself. However, +you may distribute this Package in aggregate with other (possibly +commercial) programs as part of a larger (possibly commercial) software +distribution provided that you do not advertise this Package as a +product of your own. You may embed this Package's interpreter within +an executable of yours (by linking); this shall be construed as a mere +form of aggregation, provided that the complete Standard Version of the +interpreter is so embedded. + +6. The scripts and library files supplied as input to or produced as +output from the programs of this Package do not automatically fall +under the copyright of this Package, but belong to whoever generated +them, and may be sold commercially, and may be aggregated with this +Package. If such scripts or library files are aggregated with this +Package via the so-called "undump" or "unexec" methods of producing a +binary executable image, then distribution of such an image shall +neither be construed as a distribution of this Package nor shall it +fall under the restrictions of Paragraphs 3 and 4, provided that you do +not represent such an executable image as a Standard Version of this +Package. + +7. C subroutines (or comparably compiled subroutines in other +languages) supplied by you and linked into this Package in order to +emulate subroutines and variables of the language defined by this +Package shall not be considered part of this Package, but are the +equivalent of input as in Paragraph 6, provided these subroutines do +not change the language in any way that would cause it to fail the +regression tests for the language. + +8. Aggregation of this Package with a commercial distribution is always +permitted provided that the use of this Package is embedded; that is, +when no overt attempt is made to make this Package's interfaces visible +to the end user of the commercial distribution. Such use shall not be +construed as a distribution of this Package. + +9. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End \ No newline at end of file diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/libreoffice.txt b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/libreoffice.txt new file mode 100644 index 00000000..a82e6b62 --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/libreoffice.txt @@ -0,0 +1,9428 @@ + + Licensing and Legal information + + This product is made available subject to the terms of the Mozilla + Public License, v. 2.0. A copy of the MPL Version 2 license can be + found below. + + See MPL Version 2 below + + Third Party Code Additional copyright notices and license terms + applicable to portions of the Software can be found below in this + document. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + + Copyright © 2000, 2014 LibreOffice contributors. All rights reserved. + + This product is based on OpenOffice.org. Portions of this software are + copyright © 2000-2011, Oracle and/or its affiliates. + + This product has been created by The Document Foundation, incorporating + many modifications from different contributors, see + http://www.libreoffice.org/ for more details. + + Note: Do not translate or localize this document. Only English version + is legally binding. + + Contents + + Libraries + + Extensions + + Fonts + + Dictionaries + + Artwork + + Miscellaneous + + GNU Lesser General Public License Version 3 + + GNU Lesser General Public License Version 2.1 + + GNU Library General Public License Version 2 + + GNU General Public License Version 3 + + GNU General Public License Version 2 + + Mozilla Public License Version 1.1 + + Mozilla Public License Version 2.0 + + SIL Open Font License Version 1.1 – 26 February 2007 + + Apache License + + The LaTeX Project Public License + + Creative Commons Attribution-ShareAlike 3.0 Unported + + Third Party Code Additional Copyright Notices and License Terms + + Libraries + +Apache Commons + + The following software may be included in this product: Apache Commons + (codec, httpclient, lang, logging). Use of any of this software is + governed by the terms of the license below: + + See Apache License Version 2.0 below + +beanshell + + The following software may be included in this product: beanshell. Use + of any of this software is governed by the terms of the license below: + + This file is part of the BeanShell Java Scripting distribution. + Documentation and updates may be found at http://www.beanshell.org/ + + Sun Public License Notice: + + The contents of this file are subject to the Sun Public License Version + 1.0 (the "License"); you may not use this file except in compliance + with the License. A copy of the License is available at + http://www.sun.com + + The Original Code is BeanShell. The Initial Developer of the Original + Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright + (C) 2000. All Rights Reserved. + + GNU Public License Notice: + + Alternatively, the contents of this file may be used under the terms of + the GNU Lesser General Public License (the "LGPL"), in which case the + provisions of LGPL are applicable instead of those above. If you wish + to allow use of your version of this file only under the terms of the + LGPL and not to allow others to use your version of this file under the + SPL, indicate your decision by deleting the provisions above and + replace them with the notice and other provisions required by the LGPL. + If you do not delete the provisions above, a recipient may use your + version of this file under either the SPL or the LGPL. + + Patrick Niemeyer (pat@pat.net) Author of Learning Java, O'Reilly & + Associates http://www.pat.net/~pat/ + + See LGPL Version 3 below + +C++ Boost Library + + The following software may be included in this product: C++ Boost + Library. Use of any of this software is governed by the terms of the + license below: + + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or + organization obtaining a copy of the software and accompanying + documentation covered by this license (the "Software") to use, + reproduce, display, distribute, execute, and transmit the Software, and + to prepare derivative works of the Software, and to permit + third-parties to whom the Software is furnished to do so, all subject + to the following: + + The copyright notices in the Software and this entire statement, + including the above license grant, this restriction and the following + disclaimer, must be included in all copies of the Software, in whole or + in part, and all derivative works of the Software, unless such copies + or derivative works are solely in the form of machine-executable object + code generated by a source language processor. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND + NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE + DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, + WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Cairo + + The following software may be included in this product: Cairo. Use of + any of this software is governed by the terms of the license below: + + Cairo is free software. + + Every source file in the implementation[*] of cairo is available to be + redistributed and/or modified under the terms of either the GNU Lesser + General Public License (LGPL) version 2.1 or the Mozilla Public License + (MPL) version 1.1. Some files are available under more liberal terms, + but we believe that in all cases, each file may be used under either + the LGPL or the MPL. + + See the following files in this directory for the precise terms and + conditions of either license: + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Please see each file in the implementation for copyright and licensing + information, (in the opening comment of each file). + + [*] The implementation of cairo is contained entirely within the "src" + and "pixman" directories of the cairo source distribution. There are + other components of the cairo source distribution (such as the "test" + and "perf") that are auxiliary to the library itself. None of the + source code in these directories contributes to a build of the cairo + library itself, (libcairo.so or cairo.dll or similar). + + These auxilary components are also free software, but may be under + different license terms than cairo itself. For example, most of the + test cases in the perf and test directories are made available under a + MIT license to simplify any use of this code for reference purposes in + using cairo itself. Other files might be available under the GNU + General Public License (GPL), for example. Again, please see the + opening comment of each file for copyright and licensing information. + +CLucene + + The following software may be included in this product: CLucene. Use of + any of this software is governed by the terms of the license below: + + CLucene is distributed under the GNU Lesser General Public License + (LGPL) or the Apache License, Version 2.0 + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +expat XML Parser Toolkit + + The following software may be included in this product: expat XML + Parser Toolkit. Use of any of this software is governed by the terms of + the license below: + + Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and + Clark Cooper + + Copyright (c) 2001, 2002, 2003 Expat maintainers. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Flute + + The following software may be included in this product: Flute. Use of + any of this software is governed by the terms of the license below: + + W3C IPR SOFTWARE NOTICE + + Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of + Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. + + Note: The original version of the W3C Software Copyright Notice and + License could be found at + http://www.w3.org/Consortium/Legal/copyright-software-19980720 + + Copyright © 1994-2000 World Wide Web Consortium, (Massachusetts + Institute of Technology, Institut National de Recherche en + Informatique et en Automatique, Keio University). All Rights + Reserved. http://www.w3.org/Consortium/Legal/ + + This W3C work (including software, documents, or other related items) + is being provided by the copyright holders under the following license. + By obtaining, using and/or copying this work, you (the licensee) agree + that you have read, understood, and will comply with the following + terms and conditions: + + Permission to use, copy, and modify this software and its + documentation, with or without modification, for any purpose and + without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the software and documentation or portions + thereof, including modifications, that you make: + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or + terms and conditions. If none exist, a short notice of the + following form (hypertext is preferred, text is permitted) should + be used within the body of any redistributed or derivative code: + "Copyright © 2002 World Wide Web Consortium, (Massachusetts + Institute of Technology, Institut National de Recherche en + Informatique et en Automatique, Keio University). All Rights + Reserved. http://www.w3.org/Consortium/Legal/" + 3. Notice of any changes or modifications to the W3C files, including + the date changes were made. (We recommend you provide URIs to the + location from which the code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT + HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR + DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL + OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR + DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in + advertising or publicity pertaining to the software without specific, + written prior permission. Title to copyright in this software and any + associated documentation will at all times remain with copyright + holders. + + Freetype Library + + The following software may be included in this product: Freetype. Use + of any of this software is governed by the terms of the license below: + + 0. Definitions + + Throughout this license, the terms `package', `FreeType Project', and + `FreeType archive' refer to the set of files originally distributed by + the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the + `FreeType Project', be they named as alpha, beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source code + as well as linking it to form a `program' or `executable'. This program + is referred to as `a program using the FreeType engine'. + + This license applies to all files distributed in the original FreeType + Project, including all source code, binaries and documentation, unless + otherwise stated in the file in its original, unmodified form as + distributed in the original archive. If you are unsure whether or not a + particular file is covered by this license, you must contact us to + verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert + Wilhelm, and Werner Lemberg. All rights reserved except as specified + below. + + 1. No Warranty + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL + ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES + CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. + + 2. Redistribution + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and sublicense + the FreeType Project (in both source and object code forms) and + derivative works thereof for any purpose; and to authorize others to + exercise some or all of the rights granted herein, subject to the + following conditions: + * Redistribution of source code must retain this license file + ('FTL.TXT') unaltered; any additions, deletions or changes to the + original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, original + files must be preserved in all copies of source files. + * Redistribution in binary form must provide a disclaimer that states + that the software is based in part of the work of the FreeType + Team, in the distribution documentation. We also encourage you to + put an URL to the FreeType web page in your documentation, though + this isn't mandatory. + + These conditions apply to any software derived from or based on the + FreeType Project, not just the unmodified files. If you use our work, + you must acknowledge us. However, no fee need be paid to us. + + 3. Advertising + + Neither the FreeType authors and contributors nor you shall use the + name of the other for commercial, advertising, or promotional purposes + without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation or + advertising materials: `FreeType Project', `FreeType Engine', `FreeType + library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to accept it. + However, as the FreeType Project is copyrighted material, only this + license, or another one contracted with the authors, grants you the + right to use, distribute, and modify it. Therefore, by using, + distributing, or modifying the FreeType Project, you indicate that you + understand and accept all the terms of this license. + + 4. Contacts + + There are two mailing lists related to FreeType: + * freetype@freetype.org + + Discusses general use and applications of FreeType, as well as future + and wanted additions to the library and distribution. If you are + looking for support, start in this list if you haven't found anything + to help you in the documentation. + * devel@freetype.org + + Discusses bugs, as well as engine internals, design issues, specific + licenses, porting, etc. + * http://www.freetype.org + + Holds the current FreeType web page, which will allow you to download + our latest development version and read online documentation. + + You can also contact us individually at: + + David Turner + Robert Wilhelm + Werner Lemberg + +GNU ISO C++ Library + + The following software may be included in this product: GNU ISO C++ + Library. Use of any of this software is governed by the terms of the + license below: + + © Free Software Foundation, Inc. + + See GPL Version 2 below + + Additional License(s) + +libstdc++: +// Explicit instantiation file. + +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 +// Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 2, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING. If not, write to the Free +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, +// USA. + +// As a special exception, you may use this file as part of a free +software +// library without restriction. Specifically, if other files instantiate +// templates or use macros or inline functions from this file, or you +compile +// this file and link it with other files to produce an executable, this +// file does not by itself cause the resulting executable to be covered by +// the GNU General Public License. This exception does not however +// invalidate any other reasons why the executable file might be +covered by +// the GNU General Public License. + +libgcc: +// +// ISO C++ 14882: +// + +/* Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Contributed by Jakub Jelinek . + + This file is part of GNU CC. + + GNU CC is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + GNU CC is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNU CC; see the file COPYING. If not, write to + the Free Software Foundation, 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +/* As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable + to be covered by the GNU General Public License. + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public +License. */ + +/* Locate the FDE entry for a given address, using PT_GNU_EH_FRAME ELF + segment and dl_iterate_phdr to avoid register/deregister calls at + DSO load/unload. */ + +Firebird + + The applicable and approved licenses for the source files of the + Firebird RDBMS project are: + + 1) InterBase Public License (IPL), version 1.0 + + 2) Initial Developer's Public License (IDPL), version 1.0 + + The IPL is copyright of Borland Corp., the other licenses are copyright + by the source code authors and contributors. Both are variants of the + Mozilla Public License V.1.1 (MPL). See + http://www.firebirdsql.org/en/licensing/ + +fontconfig + + The following software may be included in this product: fontconfig. Use + of any of this software is governed by the terms of the license below: + + Copyright © 2002 Keith Packard + + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of the author(s) not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors make + no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + + THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO + EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF + USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + +Graphite2 + + The following software may be included in this product: Graphite2. Use + of any of this software is governed by the terms of the license below: + + Copyright 2010, SIL International All rights reserved. + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 2.1 of License, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser + General Public License for more details. + + You should also have received a copy of the GNU Lesser General Public + License along with this library in the file named "LICENSE". If not, + write to the Free Software Foundation, Inc., 59 Temple Place, Suite + 330, Boston, MA 02111-1307, USA or visit their web page on the internet + at http://www.fsf.org/licenses/lgpl.html. + + Alternatively, you may use this library under the terms of the Mozilla + Public License (http://mozilla.org/MPL) or under the GNU General + Public License, as published by the Free Sofware Foundation; either + version 2 of the license or (at your option) any later version. + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +HarfBuzz + + HarfBuzz is licensed under the so-called "Old MIT" license. Details + follow. For parts of HarfBuzz that are licensed under different + licenses see individual files names COPYING in subdirectories where + applicable. + + Copyright © 2010,2011,2012 Google, Inc. + Copyright © 2012 Mozilla Foundation + Copyright © 2011 Codethink Limited + Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) + Copyright © 2009 Keith Stribley + Copyright © 2009 Martin Hosken and SIL International + Copyright © 2007 Chris Wilson + Copyright © 2006 Behdad Esfahbod + Copyright © 2005 David Turner + Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. + Copyright © 1998-2004 David Turner and Werner Lemberg + + For full copyright notices consult the individual files in the package. + + Permission is hereby granted, without written agreement and without + license or royalty fees, to use, copy, modify, and distribute this + software and its documentation for any purpose, provided that the above + copyright notice and the following two paragraphs appear in all copies + of this software. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING + OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE + COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON + AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE + MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +HSQLDB + + The following software may be included in this product: HSQLDB. Use of + any of this software is governed by the terms of the license below: + + ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt") + + For content, code, and products originally developed by Thomas Mueller + and the Hypersonic SQL Group: + + Copyright (c) 1995-2000 by the Hypersonic SQL Group. All rights + reserved. Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the following + conditions are met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the Hypersonic SQL Group nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL + GROUP, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + This software consists of voluntary contributions made by many + individuals on behalf of the Hypersonic SQL Group. + + For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt) + + Copyright (c) 2001-2004, The HSQL Development Group All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the HSQL Development Group nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT + GROUP, HSQLDB.ORG, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +Hunspell + + The following software may be included in this product: Hunspell. Use + of any of this software is governed by the terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") or + (excepting the LGPLed GNU gettext library in the intl/ directory) the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +Hyphen + + The following software may be included in this product: Hyphen. Use of + any of this software is governed by the terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") or + (excepting the LGPLed GNU gettext library in the intl/ directory) the + Mozilla Public License Version 1.1 or later (the "MPL"). + + The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth has a + non MPL/LGPL compatible license, but freely redistributable: "Unlimited + copying and redistribution of this file are permitted as long as this + file is not modified. Modifications are permitted, but only if the + resulting file is not named hyphen.tex." + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +IAccessible2 + + The following software may be included in this product: IAccessible2 + API. + + IAccessible2 IDL Specification + + Copyright (c) 2007, 2013 Linux Foundation + Copyright (c) 2006 IBM Corporation + Copyright (c) 2000, 2006 Sun Microsystems, Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 1. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + + 1. Neither the name of the Linux Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This BSD License conforms to the Open Source Initiative "Simplified BSD + License" as published at: + http://www.opensource.org/licenses/bsd-license.php + + IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 + mark may be used in accordance with the Linux Foundation Trademark + Policy to indicate compliance with the IAccessible2 specification. + + Find out more about IAccessible2 at + http://accessibility.linuxfoundation.org/. + +ICU + + The following software may be included in this product: ICU. Use of any + of this software is governed by the terms of the license below: + + ICU License - ICU 1.8.1 and later + + COPYRIGHT AND PERMISSION NOTICE + + Copyright (c) 1995-2002 International Business Machines Corporation and + others All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, and/or sell copies of the Software, and to permit persons + to whom the Software is furnished to do so, provided that the above + copyright notice(s) and this permission notice appear in all copies of + the Software and that both the above copyright notice(s) and this + permission notice appear in supporting documentation. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL + INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING + FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + +IJG JPEG Library + + The following software may be included in this product: IJG JPEG + Library. Use of any of this software is governed by the terms of the + license below: + + In plain English: + 1. We don't promise that this software works. (But if you find any + bugs, please let us know!) + 2. You can use this software for whatever you want. You don't have to + pay us. + 3. You may not pretend that you wrote this software. If you use it in + a program, you must acknowledge somewhere in your documentation + that you've used the IJG code. + + In legalese: + + The authors make NO WARRANTY or representation, either express or + implied, with respect to this software, its quality, accuracy, + merchantability, or fitness for a particular purpose. This software is + provided "AS IS", and you, its user, assume the entire risk as to its + quality and accuracy. + + This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights + Reserved except as specified below. + + Permission is hereby granted to use, copy, modify, and distribute this + software (or portions thereof) for any purpose, without fee, subject to + these conditions: (1) If any part of the source code for this software + is distributed, then this README file must be included, with this + copyright and no-warranty notice unaltered; and any additions, + deletions, or changes to the original files must be clearly indicated + in accompanying documentation. (2) If only executable code is + distributed, then the accompanying documentation must state that "this + software is based in part on the work of the Independent JPEG Group". + (3) Permission for use of this software is granted only if the user + accepts full responsibility for any undesirable consequences; the + authors accept NO LIABILITY for damages of any kind. + + These conditions apply to any software derived from or based on the IJG + code, not just to the unmodified library. If you use our work, you + ought to acknowledge us. + + Permission is NOT granted for the use of any IJG author's name or + company name in advertising or publicity relating to this software or + products derived from it. This software may be referred to only as "the + Independent JPEG Group's software". + + We specifically permit and encourage the use of this software as the + basis of commercial products, provided that all warranty or liability + claims are assumed by the product vendor. + + ansi2knr.c is included in this distribution by permission of L. Peter + Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises + of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and + conditions, but instead by the usual distribution terms of the Free + Software Foundation; principally, that you must include source code if + you redistribute it. (See the file ansi2knr.c for full details.) + However, since ansi2knr.c is not needed as part of any program + generated from the IJG code, this does not limit you more than the + foregoing paragraphs do. + + The Unix configuration script "configure" was produced with GNU + Autoconf. It is copyright by the Free Software Foundation but is freely + distributable. The same holds for its supporting scripts (config.guess, + config.sub, ltconfig, ltmain.sh). Another support script, install-sh, + is copyright by M.I.T. but is also freely distributable. + + It appears that the arithmetic coding option of the JPEG spec is + covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic + coding cannot legally be used without obtaining one or more licenses. + For this reason, support for arithmetic coding has been removed from + the free JPEG software. (Since arithmetic coding provides only a + marginal gain over the unpatented Huffman mode, it is unlikely that + very many implementations will support it.) So far as we are aware, + there are no patent restrictions on the remaining code. + + The IJG distribution formerly included code to read and write GIF + files. To avoid entanglement with the Unisys LZW patent, GIF reading + support has been removed altogether, and the GIF writer has been + simplified to produce "uncompressed GIFs". This technique does not use + the LZW algorithm; the resulting GIF files are larger than usual, but + are readable by all standard GIF decoders. + + We are required to state that + + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + +JDOM + + The following software may be included in this product: JDOM. Use of + any of this software is governed by the terms of the license below: + + Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin. All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions, and the following disclaimer. + + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions, and the disclaimer that follows these + conditions in the documentation and/or other materials provided with + the distribution. + + 3. The name "JDOM" must not be used to endorse or promote products + derived from this software without prior written permission. For + written permission, please contact . + + 4. Products derived from this software may not be called "JDOM", nor + may "JDOM" appear in their name, without prior written permission from + the JDOM Project Management . + + In addition, we request (but do not require) that you include in the + end-user documentation provided with the redistribution and/or in the + software itself an acknowledgement equivalent to the following: + + "This product includes software developed by the JDOM Project + (http://www.jdom.org/)." + + Alternatively, the acknowledgment may be graphical using the logos + available at http://www.jdom.org/images/logos. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This software consists of voluntary contributions made by many + individuals on behalf of the JDOM Project and was originally created by + Jason Hunter and Brett McLaughlin + . For more information on the JDOM Project, + please see http://www.jdom.org/. + +libatomic-ops + + The following software may be included in this product: libatomic-ops. + Use of any of this software is governed by the terms of the license + below: + + See GPL Version 2 below + +libcdr + + The following software may be included in this product: libcdr. Use of + any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libcmis + + The following software may be included in this product: libcmis. Use of + any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libcurl + + The following software may be included in this product: libcurl. Use of + any of this software is governed by the terms of the license below: + + Copyright (c) 1996 - 2009, Daniel Stenberg, . + + All rights reserved. + + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + +libeot + + The following software may be included in this product: libeot. Use of + any of this software is governed by the terms of the license below: + + See MPL Version 2 below + +libe-book + + The following software may be included in this product: libe-book. Use + of any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2+ + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libetonyek + + The following software may be included in this product: libetonyek. Use + of any of this software is governed by the terms of the license below: + + See MPL Version 2 below + +libexttextcat + + The following software may be included in this product: libexttextcat. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2003, WiseGuys Internet B.V. + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + - Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + - Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the WiseGuys Internet B.V. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +libfreehand + + The following software may be included in this product: libfreehand. + Use of any of this software is governed by the terms of the license + below: + + See MPL Version 2 below + +liblangtag + + The following software may be included in this product: liblangtag. Use + of any of this software is governed by the terms of the license below: + + See LGPL Version 3 below + +libmspub + + The following software may be included in this product: libmspub. Use + of any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libmwaw + + The following software may be included in this product: libmwaw. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libodfgen + + The following software may be included in this product: libodfgen. Use + of any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +liborcus + + The following software may be included in this product: liborcus. Use + of any of this software is governed by the terms of the license below: + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +libpng + + The following software may be included in this product: libpng. Use of + any of this software is governed by the terms of the license below: + + This copy of the libpng notices is provided for your convenience. In + case of + any discrepancy between this copy and the notices in the file png.h + that is + included in the libpng distribution, the latter shall prevail. + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + If you modify libpng you may insert additional notices immediately + following + this sentence. + This code is released under the libpng license. + libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3, + 2011, are + Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-1.2.5 + with the following individual added to the list of Contributing Authors + Cosmin Truta + libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, + are + Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-1.0.6 + with the following individuals added to the list of Contributing + Authors + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + and with the following additions to the disclaimer: + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are + Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-0.96, + with the following individuals added to the list of Contributing + Authors: + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + libpng versions 0.89, June 1996, through 0.96, May 1997, are + Copyright (c) 1996, 1997 Andreas Dilger + Distributed according to the same disclaimer and license as + libpng-0.88, + with the following individuals added to the list of Contributing + Authors: + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + libpng versions 0.5, May 1995, through 0.88, January 1996, are + Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + The PNG Reference Library is supplied "AS IS". The Contributing Authors + and Group 42, Inc. disclaim all warranties, expressed or implied, + including, without limitation, the warranties of merchantability and of + fitness for any purpose. The Contributing Authors and Group 42, Inc. + assume no liability for direct, indirect, incidental, special, + exemplary, + or consequential damages, which may result from the use of the PNG + Reference Library, even if advised of the possibility of such damage. + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + 1. The origin of this source code must not be misrepresented. + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + The Contributing Authors and Group 42, Inc. specifically permit, + without + fee, and encourage the use of this source code as a component to + supporting the PNG file format in commercial products. If you use this + source code in a product, acknowledgment is not required but would be + appreciated. + A "png_get_copyright" function is available, for convenient use in + "about" + boxes and the like: + printf("%s",png_get_copyright(NULL)); + Also, the PNG logo (in PNG format, of course) is supplied in the + files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + Libpng is OSI Certified Open Source Software. OSI Certified Open Source + is a + certification mark of the Open Source Initiative. + Glenn Randers-Pehrson + glennrp at users.sourceforge.net + February 3, 2011 + +libvisio + + The following software may be included in this product: libvisio. Use + of any of this software is governed by the terms of the license below: + + MPL 1.1+ / LGPL v2.1+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +libwpd + + The following software may be included in this product: libwpd. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libwpg + + The following software may be included in this product: libwpg. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libwps + + The following software may be included in this product: libwps. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libxml2 + + The following software may be included in this product: libxml2. Use of + any of this software is governed by the terms of the license below: + + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar license but + with different Copyright notices) all the files are: + + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in this Software without prior written authorization + from him. + +libxslt + + The following software may be included in this product: libxslt. Use of + any of this software is governed by the terms of the license below: + + License for libxslt except libexslt + + Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in this Software without prior written authorization + from him. + + License for libexslt + + Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel + Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the authors shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + +Little CMS (lcms2) + + The following software may be included in this product: Little CMS + (lcms2). Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 1998-2011 Marti Maria Saguer + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +lpsolve + + The following software may be included in this product: lpsolve. Use of + any of this software is governed by the terms of the license below: + + See LGPL Version 2.1 below + +mdds + + The following software may be included in this product: mdds. Use of + any of this software is governed by the terms of the license below: + + Copyright (c) 2010 Kohei Yoshida + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Mesa + + The following software may be included in this product: The Mesa 3D + Graphics Library. The default Mesa license is as follows: + + Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + + Ext headers + + Copyright (c) 2007 The Khronos Group Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and/or associated documentation files (the + "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Materials, and to + permit persons to whom the Materials are furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +Microsoft Visual C++ 2010 Runtime Libraries + + The following software may be included in this product: Microsoft + Visual C++ 2010 Runtime Libraries. Use of any of this software is + governed by the terms of the license below: + + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES WITH SERVICE PACK 1 + + These license terms are an agreement between Microsoft Corporation (or + based on where you live, one of its affiliates) and you. Please read + them. They apply to the software named above, which includes the media + on which you received it, if any. The terms also apply to any Microsoft + * updates, + * supplements, + * Internet-based services, and + * support services + + for this software, unless other terms accompany those items. If so, + those terms apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT + THEM, DO NOT USE THE SOFTWARE. + + If you comply with these license terms, you have the rights below. + 1. INSTALLATION AND USE RIGHTS. You may install and use any number of + copies of the software on your devices. + 2. SCOPE OF LICENSE. The software is licensed, not sold. This + agreement only gives you some rights to use the software. Microsoft + reserves all other rights. Unless applicable law gives you more + rights despite this limitation, you may use the software only as + expressly permitted in this agreement. In doing so, you must comply + with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + * disclose the results of any benchmark tests of the software to any + third party without Microsoft’s prior written approval; + * work around any technical limitations in the software; + * reverse engineer, decompile or disassemble the software, except and + only to the extent that applicable law expressly permits, despite + this limitation; + * make more copies of the software than specified in this agreement + or allowed by applicable law, despite this limitation; + * publish the software for others to copy; + * rent, lease or lend the software; + * transfer the software or this agreement to any third party; or + * use the software for commercial software hosting services. + + 3. BACKUP COPY. You may make one backup copy of the software. You may + use it only to reinstall the software. + 4. DOCUMENTATION. Any person that has valid access to your computer or + internal network may copy and use the documentation for your + internal, reference purposes. + 5. EXPORT RESTRICTIONS. The software is subject to United States + export laws and regulations. You must comply with all domestic and + international export laws and regulations that apply to the + software. These laws include restrictions on destinations, end + users and end use. For additional information, see + www.microsoft.com/exporting. + 6. SUPPORT SERVICES. Because this software is “as is,” we may not + provide support services for it. + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, + updates, Internet-based services and support services that you use, + are the entire agreement for the software and support services. + 8. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, + Washington state law governs the interpretation of this agreement + and applies to claims for breach of it, regardless of conflict of + laws principles. The laws of the state where you live govern all + other claims, including claims under state consumer protection + laws, unfair competition laws, and in tort. + b. Outside the United States. If you acquired the software in any + other country, the laws of that country apply. + + 9. LEGAL EFFECT. This agreement describes certain legal rights. You + may have other rights under the laws of your country. You may also + have rights with respect to the party from whom you acquired the + software. This agreement does not change your rights under the laws + of your country if the laws of your country do not permit it to do + so. + 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR + THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, + GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS + UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE + EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE + IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NON-INFRINGEMENT. + 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN + RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO + U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING + CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL + DAMAGES. + + This limitation applies to + * anything related to the software, services, content (including + code) on third party Internet sites, or third party programs; and + * claims for breach of contract, breach of warranty, guarantee or + condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not + apply to you because your country may not allow the exclusion or + limitation of incidental, consequential or other damages. + +Mozilla + + The following software may be included in this product: Mozilla, + Mozilla Address Book, NP SDK. Use of any of this software is governed + by the terms of the license below: + + See MPL 1.1 below + +MySQL Connector/C++ + + The following software may be included in this product: + MySQL Connector/C++. Use of any of this software is governed by the + terms of the license below: + + Copyright 2007-2008 MySQL AB, 2008-2009 Sun Microsystems Inc. + + See GPL Version 2 below + +MyThes + + The following software may be included in this product: MyThes. Use of + any of this software is governed by the terms of the license below: + + Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada And + Contributors. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. All modifications to the source code must be clearly marked as such. + Binary redistribution based on modified source code must be clearly + marked as modified versions in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KEVIN B. HENDRICKS + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +neon + + The following software may be included in this product: neon. Use of + any of this software is governed by the terms of the license below: + + neon is Copyright (C) 1999-2007 Joe Orton + Portions are: + Copyright (C) 1999-2000 Tommi Komulainen + Copyright (C) 1999-2000 Peter Boos + Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 2004 Aleix Conchillo Flaque + Copyright (C) 2004 Jiang Lei + Copyright (C) 2004-2005 Vladimir Berezniker @ + http://public.xdi.org/=vmpn + + See LGPL Version 2.1 below + +Network Security Services (NSS) + + The following software may be included in this product: Network + Security Services (NSS). Use of any of this software is governed by the + terms of the license below: + + See MPL 1.1 below + +OpenLDAP + + The following software may be included in this product: OpenLDAP. Use + of any of this software is governed by the terms of the license below: + + The OpenLDAP Public License + + Version 2.8, 17 August 2003 + + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided that + the following conditions are met: + 1. Redistributions in source form must retain copyright statements and + notices, + 2. Redistributions in binary form must reproduce applicable copyright + statements and notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution, and + 3. Redistributions must contain a verbatim copy of this document. + + The OpenLDAP Foundation may revise this license from time to time. Each + revision is distinguished by a version number. You may use this + Software under terms of this license revision or under the terms of any + subsequent revision of the license. + + THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS + CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE + AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + The names of the authors and copyright holders must not be used in + advertising or otherwise to promote the sale, use or other dealing in + this Software without specific, written prior permission. Title to + copyright in this Software shall at all times remain with copyright + holders. + + OpenLDAP is a registered trademark of the OpenLDAP Foundation. + + Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, + USA. All Rights Reserved. Permission to copy and distribute verbatim + copies of this document is granted. + +OpenSSL + + The following software may be included in this product: OpenSSL. Use of + any of this software is governed by the terms of the license below: + + The OpenSSL toolkit stays under a dual license, i.e. both the + conditions of the OpenSSL License and the original SSLeay license apply + to the toolkit. + + See below for the actual license texts. Actually both licenses are + BSD-style Open Source licenses. In case of any license issues related + to OpenSSL please contact openssl-core@openssl.org. + + OpenSSL License + + Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: "This product + includes software developed by the OpenSSL Project for use in the + OpenSSL Toolkit. (http://www.openssl.org/)" + 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used + to endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + 5. Products derived from this software may not be called "OpenSSL" nor + may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + 6. Redistribution of any form whatsoever must retain the following + acknowledgment: "This product includes software developed by the + OpenSSL Project for use in the OpenSSL Toolkit + (http://www.openssl.org/)" + + THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This product includes cryptographic software written by Eric Young + (eay@cryptsoft.com). This product includes software written by Tim + Hudson (tjh@cryptsoft.com). + + Original SSLeay License + + Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights + reserved. + + This package is an SSL implementation written by Eric Young + (eay@cryptsoft.com). + The implementation was written so as to conform with Netscapes SSL. + + This library is free for commercial and non-commercial use as long as + the following conditions are aheared to. The following conditions apply + to all code found in this distribution, be it the RC4, RSA, lhash, DES, + etc., code; not just the SSL code. The SSL documentation included with + this distribution is covered by the same copyright terms except that + the holder is Tim Hudson (tjh@cryptsoft.com). + + Copyright remains Eric Young's, and as such any Copyright notices in + the code are not to be removed. If this package is used in a product, + Eric Young should be given attribution as the author of the parts of + the library used. This can be in the form of a textual message at + program startup or in documentation (online or textual) provided with + the package. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the copyright notice, + this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: "This product + includes cryptographic software written by Eric Young + (eay@cryptsoft.com)" The word 'cryptographic' can be left out if + the routines from the library being used are not cryptographic + related :-). + 4. If you include any Windows specific code (or a derivative thereof) + from the apps directory (application code) you must include an + acknowledgment: "This product includes software written by Tim + Hudson (tjh@cryptsoft.com)" + + THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + The license and distribution terms for any publicly available version + or derivative of this code cannot be changed. i.e. this code cannot + simply be copied and put under another distribution license [including + the GNU Public License.] + +Pentaho Reporting Flow Engine + + The following software may be included in this product: Pentaho + Reporting Flow Engine (including core, flow-engine, libbase, libfonts, + libformula, liblayout, libloader, librepository, libserializer, and + libxml). Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Pixman + + The following software may be included in this product: Pixman + (libpixman). Use of any of this software is governed by the terms of + the license below: + + The following is the MIT license, agreed upon by most contributors. + + Copyright holders of new code should use this license statement where + possible. They may also add themselves to the list below. + + Copyright 1987, 1988, 1989, 1998 The Open Group + Copyright 1987, 1988, 1989 Digital Equipment Corporation + Copyright 1999, 2004, 2008 Keith Packard + Copyright 2000 SuSE, Inc. + Copyright 2000 Keith Packard, member of The XFree86 Project, Inc. + Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc. + Copyright 2004 Nicholas Miell + Copyright 2005 Lars Knoll & Zack Rusin, Trolltech + Copyright 2005 Trolltech AS + Copyright 2007 Luca Barbato + Copyright 2008 Aaron Plattner, NVIDIA Corporation + Copyright 2008 Rodrigo Kumpera + Copyright 2008 André Tupinambá + Copyright 2008 Mozilla Corporation + Copyright 2008 Frederic Plourde + Copyright 2009, Oracle and/or its affiliates. All rights reserved. + Copyright 2009, 2010 Nokia Corporation + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: The above copyright notice and this + permission notice (including the next paragraph) shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +poppler + + The following software may be included in this product: poppler. Use of + any of this software is governed by the terms of the license below: + + See GPL Version 2 below + +PostgreSQL + + The following software may be included in this product: PostgreSQL. Use + of any of this software is governed by the terms of the license below: + + PostgreSQL is released under the PostgreSQL License, a liberal Open + Source license, similar to the BSD or MIT licenses. + + PostgreSQL Database Management System + (formerly known as Postgres, then as Postgres95) + + Portions Copyright (c) 1996-2012, The PostgreSQL Global Development + Group + + Portions Copyright (c) 1994, The Regents of the University of + California + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose, without fee, and without a written + agreement is hereby granted, provided that the above copyright notice + and this paragraph and the following two paragraphs appear in all + copies. + + IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY + FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, + INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS + DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + + THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE + PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF + CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, + ENHANCEMENTS, OR MODIFICATIONS. + +Python + + The following software may be included in this product: Python. Use of + any of this software is governed by the terms of the license below: + + PSF LICENSE AGREEMENT FOR PYTHON 2.3 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation + ("PSF"), and the Individual or Organization ("Licensee") accessing and + otherwise using Python 2.3 software in source or binary form and its + associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF + hereby grants Licensee a nonexclusive, royalty-free, world-wide license + to reproduce, analyze, test, perform and/or display publicly, prepare + derivative works, distribute, and otherwise use Python 2.3 alone or in + any derivative version, provided, however, that PSF's License Agreement + and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, + 2004 Python Software Foundation; All Rights Reserved" are retained in + Python 2.3 alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or + incorporates Python 2.3 or any part thereof, and wants to make the + derivative work available to others as provided herein, then Licensee + hereby agrees to include in any such work a brief summary of the + changes made to Python 2.3. + + 4. PSF is making Python 2.3 available to Licensee on an "AS IS" basis. + PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY + OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT INFRINGE ANY + THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.3 + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A + RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3, OR + ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between PSF and + Licensee. This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python 2.3, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + + BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an + office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the + Individual or Organization ("Licensee") accessing and otherwise using + this software in source or binary form and its associated documentation + ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License + Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, + world-wide license to reproduce, analyze, test, perform and/or display + publicly, prepare derivative works, distribute, and otherwise use the + Software alone or in any derivative version, provided, however, that + the BeOpen Python License is retained in the Software, alone or in any + derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" + basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE + SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all + respects by the law of the State of California, excluding conflict of + law provisions. Nothing in this License Agreement shall be deemed to + create any relationship of agency, partnership, or joint venture + between BeOpen and Licensee. This License Agreement does not grant + permission to use BeOpen trademarks or trade names in a trademark sense + to endorse or promote products or services of Licensee, or any third + party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the + permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 + + 1. This LICENSE AGREEMENT is between the Corporation for National + Research Initiatives, having an office at 1895 Preston White Drive, + Reston, VA 20191 ("CNRI"), and the Individual or Organization + ("Licensee") accessing and otherwise using Python 1.6.1 software in + source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, CNRI + hereby grants Licensee a nonexclusive, royalty-free, world-wide license + to reproduce, analyze, test, perform and/or display publicly, prepare + derivative works, distribute, and otherwise use Python 1.6.1 alone or + in any derivative version, provided, however, that CNRI's License + Agreement and CNRI's notice of copyright, i.e., "Copyright (c) + 1995-2001 Corporation for National Research Initiatives; All Rights + Reserved" are retained in Python 1.6.1 alone or in any derivative + version prepared by Licensee. Alternately, in lieu of CNRI's License + Agreement, Licensee may substitute the following text (omitting the + quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement. This Agreement together with + Python 1.6.1 may be located on the Internet using the following unique, + persistent identifier (known as a handle): 1895.22/1013. This Agreement + may also be obtained from a proxy server on the Internet using the + following URL: http://hdl.handle.net/1895.22/1013". + + 3. In the event Licensee prepares a derivative work that is based on or + incorporates Python 1.6.1 or any part thereof, and wants to make the + derivative work available to others as provided herein, then Licensee + hereby agrees to include in any such work a brief summary of the + changes made to Python 1.6.1. + + 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" + basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. + BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE + ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. This License Agreement shall be governed by the federal intellectual + property law of the United States, including without limitation the + federal copyright law, and, to the extent such U.S. federal law does + not apply, by the law of the Commonwealth of Virginia, excluding + Virginia's conflict of law provisions. Notwithstanding the foregoing, + with regard to derivative works based on Python 1.6.1 that incorporate + non-separable material that was previously distributed under the GNU + General Public License (GPL), the law of the Commonwealth of Virginia + shall govern this License Agreement only as to issues arising under or + with respect to Paragraphs 4, 5, and 7 of this License Agreement. + Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between CNRI and + Licensee. This License Agreement does not grant permission to use CNRI + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, + installing or otherwise using Python 1.6.1, Licensee agrees to be bound + by the terms and conditions of this License Agreement. + + ACCEPT + + CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + + Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, + The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR + ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Raptor RDF Parser Library + + The following software may be included in this product: Raptor RDF + Parser Library. Use of any of this software is governed by the terms of + the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Rasqal RDF Query Library + + The following software may be included in this product: Rasqal RDF + Query Library. Use of any of this software is governed by the terms of + the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Redland RDF Application Framework + + The following software may be included in this product: Redland RDF + Application Framework. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Remote Control Wrapper + + The following software may be included in this product: Remote Control + Wrapper. Use of any of this software is governed by the terms of the + license below: + + Created by Martin Kahr under a MIT-style license. Copyright (c) + 2006/2007 martinkahr.com. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Rhino + + The following software may be included in this product: Rhino. Use of + any of this software is governed by the terms of the license below: + + See MPL Version 1.1 below + +SANE + + The following software may be included in this product: SANE. Use of + any of this software is governed by the terms of the license below: + + sane - Scanner Access Now Easy. Copyright (C) 1997-1999 David + Mosberger-Tang and Andreas Beck + + This file is part of the SANE package. + + This file is in the public domain. You may use and modify it as you see + fit, as long as this copyright message is included and that there is an + indication as to what modifications have been made (if any). + + SANE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. + + This file declares SANE application interface. See the SANE standard + for a detailed explanation of the interface. + +STLPort + + The following software may be included in this product:STLport. Use of + any of this software is governed by the terms of the license below: + + License Agreement + + Boris Fomitchev grants Licensee a non-exclusive, non-transferable, + royalty-free license to use STLport and its documentation without fee. + + By downloading, using, or copying STLport or any portion thereof, + Licensee agrees to abide by the intellectual property laws and all + other applicable laws of the United States of America, and to all of + the terms and conditions of this Agreement. + + Licensee shall maintain the following copyright and permission notices + on STLport sources and its documentation unchanged: + + Copyright 1999,2000 Boris Fomitchev + + This material is provided "as is", with absolutely no warranty + expressed or implied. Any use is at your own risk. + + Permission to use or copy this software for any purpose is hereby + granted without fee, provided the above notices are retained on all + copies. Permission to modify the code and to distribute modified code + is granted, provided the above notices are retained, and a notice that + the code was modified is included with the above copyright notice. + + The Licensee may distribute binaries compiled with STLport (whether + original or modified) without any royalties or restrictions. + + The Licensee may distribute original or modified STLport sources, + provided that: + * The conditions indicated in the above permission notice are met; + * The following copyright notices are retained when present, and + conditions provided in accompanying permission notices are met: + + Copyright 1994 Hewlett-Packard Company + + Copyright 1996,97 Silicon Graphics Computer Systems, Inc. + + Copyright 1997 Moscow Center for SPARC Technology. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Hewlett-Packard Company makes no + representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Silicon Graphics makes no representations + about the suitability of this software for any purpose. It is + provided "as is" without express or implied warranty. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Moscow Center for SPARC Technology makes + no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + +TWAIN + + The following software may be included in this product: TWAIN. Use of + any of this software is governed by the terms of the license below: + + The TWAIN License + + The TWAIN Working Group grants customer ("Customer") the worldwide, + royalty-free, non-exclusive license to reproduce and distribute the + software and documentation of the TWAIN toolkit ("TWAIN Toolkit"). The + TWAIN Toolkit was designed to be used by third parties to assist them + in becoming compliant with the TWAIN standard, but it has not been + developed to the standards of a commercial product. Consequently, the + TWAIN toolkit is provided AS IS without any warranty. THE TWAIN Working + Group disclaims all warranties in the TWAIN toolkit whether implied, + express or statutory, including, without limitation, the implied + warranties of merchantability, non infringement of third party rights + and fitness for a particular purpose. The TWAIN Working Group disclaims + all liability for damages, whether direct, indirect, special, + incidental, or consequential, arising from the reproduction, + distribution, modification, or other use of the TWAIN Toolkit. + + As a condition of this license, Customer agrees to include in software + programs based in whole or in part on the TWAIN Toolkit the following + provisions in (i) the header or similar file in such software and (ii) + prominently in its documentation and to require its sublicensees to + include these provisions in similar locations: The TWAIN Toolkit is + distributed as is. The developer and distributors of the TWAIN Toolkit + expressly disclaim all implied, express or statutory warranties + including, without limitation, the implied warranties of + merchantability, non infringement of third party rights and fitness for + a particular purpose. Neither the developers nor the distributors will + be liable for damages, whether direct, indirect, special, incidental, + or consequential, as a result of the reproduction, modification, + distribution or other use of the TWAIN Toolkit. + +Unicode CLDR data repository + + The following software may be included in this product: Unicode's CLDR + data repository. Use of any of this software is governed by the terms + of the license below: + + Copyright 1991-2005 Unicode, Inc. All rights reserved. Distributed + under the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Unicode data files and any associated documentation (the + "Data Files") or Unicode software and any associated documentation (the + "Software") to deal in the Data Files or Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Data Files or Software, + and to permit persons to whom the Data Files or Software are furnished + to do so, provided that (a) the above copyright notice(s) and this + permission notice appear with all copies of the Data Files or Software, + (b) both the above copyright notice(s) and this permission notice + appear in associated documentation, and (c) there is clear notice in + each modified Data File or in the Software as well as in the + documentation associated with the Data File(s) or Software that the + data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR + SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in these Data Files or Software without prior written + authorization of the copyright holder. + +UnixODBC + + The following software may be included in this product: unixODBC. Use + of any of this software is governed by the terms of the license below: + + See LGPL Version 2.1 below + +vigra + + The following software may be included in this product: vigra. Use of + any of this software is governed by the terms of the license below: + + The VIGRA Artistic License + + (modeled after the Perl Artistic License) + + Preamble + + The intent of this document is to state the conditions under which + VIGRA may be copied, such that the author maintains some semblance of + artistic control over the development of the library, while giving the + users of the library the right to use and distribute VIGRA in a + more-or-less customary fashion, plus the right to make reasonable + modifications. + + Definitions + + "Copyright Holder" of the VIGRA library is Ullrich Koethe, Cognitive + Systems Group, University of Hamburg, Germany. + + "Library" refers to the collection of files distributed by the + Copyright Holder under the name "VIGRA" (including this LICENSE file + and all accompanying documentation), and derivatives of that collection + of files created through textual modification. + + "Standard Version" refers to the Library if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder as specified below. + + "You" is you, if you're thinking about using, copying, modifying or + distributing this Library. + + "Freely Available" means that no fee is charged for the item. It also + means that recipients of the item may redistribute it under the same + conditions they received it. + + "Reasonable copying fee" is whatever you can justify on the basis of + media cost, duplication charges, time of people involved, and so on. + (You will not be required to justify it to the Copyright Holder, but + only to the computing community at large as a market that must bear the + fee.) + + License terms + + 1. You may make and give away verbatim copies of the Standard Version + of this Library without restriction, provided that you duplicate all of + the original copyright notices, this license, and associated + disclaimers. + + 2. The Standard Version of the Library may be distributed as part of a + collection of software, provided no more than a reasonable copying fee + is charged for the software collection. + + 3. You may apply bug fixes and portability fixes derived from the + Public Domain or from the Copyright Holder. A Library modified in such + a way shall still be considered the Standard Version. + + 4. You may otherwise modify your copy of this Library in any way, + provided that you insert a prominent notice in each changed file + stating how and when you changed that file, and provided that you do at + least ONE of the following: + + a. place your modifications in the Public Domain or otherwise make them + Freely Available, for example by allowing the Copyright Holder to + include your modifications in the Standard Version of the Library. + + b. use the modified Library only within your corporation or + organization. + + c. make other distribution arrangements with the Copyright Holder. + + 5. You may distribute programs which use this Library in object code or + executable form without restriction. + + 6. Any object code generated as a result of using this Library does not + fall under the copyright of this Library, but belongs to whomever + generated it, and may be sold commercially. + + 7. The name of the Copyright Holder or the Library may not be used to + endorse or promote products derived from this software without specific + prior written permission. + + 8. THIS LIBRARY IS PROVIDED AS IS AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, + INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND OR ANY + DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER + OR NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR ON ANY THEORY OF + LIABILITY ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS LIBRARY. + +W3C Simple API for CSS (SAC) + + The following software may be included in this product: W3C Simple API + for CSS (SAC). Use of any of this software is governed by the terms of + the license below: + + W3C IPR SOFTWARE NOTICE + + Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of + Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. + + Note: The original version of the W3C Software Copyright Notice and + License could be found at + http://www.w3.org/Consortium/Legal/copyright-software-19980720 + + Copyright © 1994-2002 World Wide Web Consortium, + (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University). All + Rights Reserved. http://www.w3.org/Consortium/Legal/ + + This W3C work (including software, documents, or other related items) + is being provided by the copyright holders under the following license. + By obtaining, using and/or copying this work, you (the licensee) agree + that you have read, understood, and will comply with the following + terms and conditions: + + Permission to use, copy, and modify this software and its + documentation, with or without modification, for any purpose and + without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the software and documentation or portions + thereof, including modifications, that you make: + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or + terms and conditions. If none exist, a short notice of the + following form (hypertext is preferred, text is permitted) should + be used within the body of any redistributed or derivative code: + "Copyright © 2002 World Wide Web Consortium, + (Massachusetts Institute of Technology, Institut National + de Recherche en Informatique et en Automatique, Keio + University). All Rights Reserved. + http://www.w3.org/Consortium/Legal/" + 3. Notice of any changes or modifications to the W3C files, including + the date changes were made. (We recommend you provide URIs to the + location from which the code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT + HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR + DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL + OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR + DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in + advertising or publicity pertaining to the software without specific, + written prior permission. Title to copyright in this software and any + associated documentation will at all times remain with copyright + holders. + + X11 XRender Extension + + The following software may be included in this product: X11 XRender + Extension. Use of any of this software is governed by the terms of the + license below: + + Copyright © 2000 SuSE, Inc. + + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of SuSE not be used in + advertising or publicity pertaining to distribution of the software + without specific, written prior permission. SuSE makes no + representations about the suitability of this software for any purpose. + It is provided "as is" without express or implied warranty. + + SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING + ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT + SHALL SuSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. + +Xalan + + The following software may be included in this product: Xalan. Use of + any of this software is governed by the terms of the license below: + + See Apache License Version 2.0 below + +XML Security Library (xmlsec) + + The following software may be included in this product: XML Security + Library (xmlsec). Use of any of this software is governed by the terms + of the license below: + + xmlsec, xmlsec-openssl, xmlsec-gnutls libraries + + Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE ALEKSEY SANIN BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Aleksey Sanin shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + + xmlsec-nss library + + Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved. + + Copyright (c) 2003 America Online, Inc. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + Portions of the Software were created using source code and/or APIs + governed by the Mozilla Public License (MPL). The MPL is available at + http://www.mozilla.org/MPL/MPL-1.1.html. The MPL permits such + portions to be distributed with code not governed by MPL, as long as + the requirements of MPL are fulfilled for such portions. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE ALEKSEY SANIN BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Aleksey Sanin shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + +XSLT MathML Library + + The following software may be included in this product: XSLT MathML + Library. Use of any of this software is governed by the terms of the + license below: + + Copyright + + Copyright (C) 2001-2003 Vasil Yaroshevich + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + ``Software''), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + Except as contained in this notice, the names of individuals credited + with contribution to this software shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software + without prior written authorization from the individuals in question. + + Any stylesheet derived from this Software that is publicly distributed + will be identified with a different name and the version strings in any + derived Software will be changed so that no possibility of confusion + between the derived package and this Software will exist. + + Warranty + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH + THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +zlib + + The following software may be included in this product: zlib. Use of + any of this software is governed by the terms of the license below: + + (C) 1995-2002 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source + distribution. + + Extensions + + Only third party extensions are listed here whose source code is not in + the LibreOffice tree. + +Barcode + + The following software may be included in this product: Barcode. Use of + any of this software is governed by the terms of the license below: + + Copyright (C) Dániel Darabos and Kálmán Szalai + + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation, either version 3 of the License, or (at your + option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + See GPL Version 3 below + +Convert Text to Number + + The following software may be included in this product: Convert Text to + Number. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2008/2009 - Cor Nouws + + See LGPL Version 3 below + +OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, WebDAV + + The following software may be included in this product: + OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, + WebDAV. Use of any of this software is governed by the terms of the + license below: + + Copyright © Przemyslaw Rumik + + See LGPL Version 3 below + +Hungarian cross-reference toolbar + + The following software may be included in this product: Hungarian + cross-reference toolbar. Use of any of this software is governed by the + terms of the license below: + + 2009-2010 (c) László Németh, license: GNU LGPL + + See LGPL Version 3 below + +LanguageTool Grammar Checker + + The following software may be included in this product: LanguageTool + Grammar Checker. Use of any of this software is governed by the terms + of the license below: + + See LGPL Version 3 below + +Numbertext + + The following software may be included in this product: Numbertext. Use + of any of this software is governed by the terms of the license below: + + License: LGPL/BSD dual-license, 2009-2010 (C) László Németh (nemeth at + openoffice dot org) + + Numbertext language data (Soros programs): + + LGPL/BSD dual-license, 2009-2010 (C) László Németh et al. (see AUTHORS) + + Serbian modules: + + CC/LGPL/BSD tri-license, 2009 (C) Goran Rakić (grakic at devbase dot + net) + + Note: for full distribution with specifications, IDE and JavaScript + implementation, see http://NUMBERTEXT.org + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. + + See LGPL Version 3 below + +SmART Gallery (Diagram) + + The following software may be included in this product: SmART Gallery + (Diagram). Use of any of this software is governed by the terms of the + license below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + +Solver for Nonlinear Programming + + The following software may be included in this product: Solver for + Nonlinear Programming. Use of any of this software is governed by the + terms of the license below: + + Copyright 2009 by Sun Microsystems, Inc. + + See LGPL Version 3 below + +Typography Toolbar + + The following software may be included in this product: Typography + Toolbar. Use of any of this software is governed by the terms of the + license below: + + 2009-2010 (c) László Németh, license: GNU LGPL + + See LGPL Version 3 below + +Validator + + The following software may be included in this product: Validator. Use + of any of this software is governed by the terms of the license below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + +WatchWindow + + The following software may be included in this product: WatchWindow. + Use of any of this software is governed by the terms of the license + below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + + Fonts + +Adobe PostScript® AFM files + + The following software may be included in this product: PostScript® AFM + Files. Use of any of this software is governed by the terms of the + license below: + + Adobe Core 35 AFM Files with 314 Glyph Entries + + This file and the 35 PostScript® AFM files it accompanies may be used, + copied, and distributed for any purpose and without charge, with or + without modification, provided that all copyright notices are retained; + that the AFM files are not distributed without this file; that all + modifications to this file or any of the AFM files are prominently + noted in the modified file(s); and that this paragraph is not modified. + Adobe Systems has no responsibility or obligation to support the use of + the AFM files. + +Caladea + + Copyright (c) 2012 Huerta Tipografia + + This Font Software is licensed under the Apache License, Version 2.0 as + shown below. + + See Apache License Version 2.0 below + +Carlito + + Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font + Name "Carlito". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1 as shown below. + + See SIL Open Font License, Version 1.1 below + +Deja Vu + + The following software may be included in this product: Deja Vu fonts. + Use of any of this software is governed by the terms of the license + below: + + Fonts are (c) Bitstream (see below). DejaVu changes are in public + domain. Glyphs imported from Arev fonts are (c) Tavmjong Bah (see + below) + + Bitstream Vera Fonts Copyright + + Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream + Vera is a trademark of Bitstream, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the Font Software, including without limitation the rights to use, + copy, merge, publish, distribute, and/or sell copies of the Font + Software, and to permit persons to whom the Font Software is furnished + to do so, subject to the following conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the Fonts, + only if the fonts are renamed to names not containing either the words + "Bitstream" or the word "Vera". + + This License becomes null and void to the extent applicable to Fonts or + Font Software that has been modified and is distributed under the + "Bitstream Vera" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the names of Gnome, the Gnome + Foundation, and Bitstream Inc., shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Font + Software without prior written authorization from the Gnome Foundation + or Bitstream Inc., respectively. For further information, contact: + fonts at gnome dot org. + + Arev Fonts Copyright + + Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the modifications to the Bitstream Vera Font Software, including + without limitation the rights to use, copy, merge, publish, distribute, + and/or sell copies of the Font Software, and to permit persons to whom + the Font Software is furnished to do so, subject to the following + conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the Fonts, + only if the fonts are renamed to names not containing either the words + "Tavmjong Bah" or the word "Arev". + + This License becomes null and void to the extent applicable to Fonts or + Font Software that has been modified and is distributed under the + "Tavmjong Bah Arev" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the name of Tavmjong Bah shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Font Software without prior written authorization from + Tavmjong Bah. For further information, contact: tavmjong @ free . fr. + +Gentium + + The following software may be included in this product: Gentium fonts. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2003-2008 SIL International (http://www.sil.org/), + with Reserved Font Names "Gentium" and "SIL". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Liberation + + The following software may be included in this product: Liberation + fonts. Use of any of this software is governed by the terms of the + license below: + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY + LIBERATION FONT SOFTWARE + + This agreement governs the use of the Software and any updates to the + Software, regardless of the delivery mechanism. Subject to the + following terms, Red Hat, Inc. ("Red Hat") grants to the user + ("Client") a license to this work pursuant to the GNU General Public + License v.2 with the exceptions set forth below and such other terms as + are set forth in this End User License Agreement. + + 1. The Software and License Exception. LIBERATION font software (the + "Software") consists of TrueType-OpenType formatted font software for + rendering LIBERATION typefaces in sans-serif, serif, and monospaced + character styles. You are licensed to use, modify, copy, and distribute + the Software pursuant to the GNU General Public License v.2 with the + following exceptions: + + (a) As a special exception, if you create a document which uses this + font, and embed this font or unaltered portions of this font into the + document, this font does not by itself cause the resulting document to + be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the document might be covered + by the GNU General Public License. If you modify this font, you may + extend this exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. + + (b) As a further exception, any distribution of the object code of the + Software in a physical product must provide you the right to access and + modify the source code for the Software and to reinstall that modified + version of the Software in object code form on the same physical + product on which you received it. + + 2. Intellectual Property Rights. The Software and each of its + components, including the source code, documentation, appearance, + structure and organization are owned by Red Hat and others and are + protected under copyright and other laws. Title to the Software and any + component, or to any copy, modification, or merged portion shall remain + with the aforementioned, subject to the applicable license. The + "LIBERATION" trademark is a trademark of Red Hat, Inc. in the U.S. and + other countries. This agreement does not permit Client to distribute + modified versions of the Software using Red Hat's trademarks. If Client + makes a redistribution of a modified version of the Software, then + Client must modify the files names to remove any reference to the Red + Hat trademarks and must not use the Red Hat trademarks in any way to + reference or promote the modified Software. + + 3. Limited Warranty. To the maximum extent permitted under applicable + law, the Software is provided and licensed "as is" without warranty of + any kind, expressed or implied, including the implied warranties of + merchantability, non-infringement or fitness for a particular purpose. + Red Hat does not warrant that the functions contained in the Software + will meet Client's requirements or that the operation of the Software + will be entirely error free or appear precisely as described in the + accompanying documentation. + + 4. Limitation of Remedies and Liability. To the maximum extent + permitted by applicable law, Red Hat or any Red Hat authorized dealer + will not be liable to Client for any incidental or consequential + damages, including lost profits or lost savings arising out of the use + or inability to use the Software, even if Red Hat or such dealer has + been advised of the possibility of such damages. + + 5. General. If any provision of this agreement is held to be + unenforceable, that shall not affect the enforceability of the + remaining provisions. This agreement shall be governed by the laws of + the State of North Carolina and of the United States, without regard to + any conflict of laws provisions, except that the United Nations + Convention on the International Sale of Goods shall not apply. + + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a + trademark of Red Hat, Inc. + +Linux Libertine G and Linux Biolinum G + + This Font Software is Copyright (c) 2003-2006, Philipp H. Poll + (http://linuxlibertine.sf.net/). + All Rights Reserved. + "Linux Libertine" is a Reserved Font Name for this Font Software. + + Graphite extension of the original Linux Libertine font was made by + Laszlo Nemeth under the same license. + Our fonts are free in the sense of the GPL. In short: Changing the font + is allowed as long as the derivative work is published under the same + license again. Pedantics keep claiming that the embedded use of + GPL-fonts in i.e. PDFs requires the free publication of the PDF as + well. This is why our GPL contains the so called "font exception". + + See GPL version 2 below + + As a special exception, if you create a document which uses this font, + and embed this font or unaltered portions of this font into the + document, this font does not by itself cause the resulting document to + be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the document might be covered + by the GNU General Public License. If you modify this font, you may + extend this exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. + + Additionally our fonts are licensed under the Open Fonts License (see + below). + + This Font Software is licensed under the SIL Open Font License, Version + 1.0. No modification of the license is permitted, only verbatim copy is + allowed. This license is copied below, and is also available with a FAQ + at: http://scripts.sil.org/OFL + + SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 + + PREAMBLE The goals of the Open Font License (OFL) are to stimulate + worldwide development of cooperative font projects, to support the font + creation efforts of academic and linguistic communities, and to provide + an open framework in which fonts may be shared and improved in + partnership with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and sold with any software provided that the font names + of derivative works are changed. The fonts and derivatives, however, + cannot be released under any other type of license. + + DEFINITIONS "Font Software" refers to any and all of the following: - + font files - data files - source code - build scripts - documentation + + "Reserved Font Name" refers to the Font Software name as seen by users + and any other names as specified after the copyright statement. + + "Standard Version" refers to the collection of Font Software components + as distributed by the Copyright Holder. + + "Modified Version" refers to any derivative font software made by + adding to, deleting, or substituting -- in part or in whole -- any of + the components of the Standard Version, by changing formats or by + porting the Font Software to a new environment. + + "Author" refers to any designer, engineer, programmer, technical writer + or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS Permission is hereby granted, free of charge, + to any person obtaining a copy of the Font Software, to use, study, + copy, merge, embed, modify, redistribute, and sell modified and + unmodified copies of the Font Software, subject to the following + conditions: + + 1) Neither the Font Software nor any of its individual components, in + Standard or Modified Versions, may be sold by itself. + + 2) Standard or Modified Versions of the Font Software may be bundled, + redistributed and sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or in + the appropriate machine-readable metadata fields within text or binary + files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s), in part or in whole, unless explicit written permission is + granted by the Copyright Holder. This restriction applies to all + references stored in the Font Software, such as the font menu name and + other font description fields, which are used to differentiate the font + from others. + + 4) The name(s) of the Copyright Holder or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, must + be distributed using this license, and may not be distributed under any + other license. + + TERMINATION This license becomes null and void if any of the above + conditions are not met. + + DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO + EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + +Open Sans + + The following software may be included in this product: Open Sans + fonts. Use of any of this software is governed by the terms of the + license below: + + See Apache License Version 2.0 below + +PT Serif + + The following software may be included in this product: PT Serif fonts. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2010, ParaType Ltd. + (http://www.paratype.com/public), with Reserved Font Names "PT + Sans", "PT Serif" and "ParaType". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Source Code Pro + + The following software may be included in this product: Source Code Pro + fonts. Use of any of this software is governed by the terms of the + license below: + + Copyright 2010, 2012 Adobe Systems Incorporated + (http://www.adobe.com/), with Reserved Font Name 'Source'. All + Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries. + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Source Sans Pro + + The following software may be included in this product: Source Sans Pro + fonts. Use of any of this software is governed by the terms of the + license below: + + Copyright 2010, 2012 Adobe Systems Incorporated + (http://www.adobe.com/), with Reserved Font Name 'Source'. All + Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries. + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + + Dictionaries + +Afrikaans + + Spelling dictionary + + The following software may be included in this product: Afrikaans + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Afrikaans Wordlist + + The Afrikaans wordlist used by MySpell is made up of multiple + wordlists. These are wither in the public domain, are used with the + authors permission or are licensed under the LGPL. The majority of + the words are derived from the Nieuwoudt and Viljoen list. + + The Nieuwoudt list was first published in this form in 1993 by Bernard + A Nieuwoudt. Contact details: origen at icon co za or bnieuwoudt at acm + org + + Copyright (C) 1993, 2003 Bernard A Nieuwoudt relicensed under the + LGPL. + + The Viljoen list is derived from the original Nieuwoudt list and is + used with permission of the author and relicensed under the LGPL. + + Copyright (C) 1998 Danie Viljoen + + MySpell Affix File + + Copyright (C) 2003 Dwayne Bailey under the LGPL based on the + original ispell list by Renier de Vos which was released under the BSD + license. + + Hyphenation patterns + + The following software may be included in this product: Afrikaans + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2005 Friedel Wolff + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2.1 of the + License, or (at your option) any later version. + +Arabic + + Spelling dictionary + + The following software may be included in this product: Arabic spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Author of Hunspell-ar, the arabic dictionary for Hunspell + (spellchecker): 2006-2008, Mohamed Kebdani, med.kebdani (at) gmail.com + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + Thesaurus + + The following software may be included in this product: Arabic + thesaurus. Use of any of this software is governed by the terms of the + license below: + + 2006-2009, Taha Zerrouki, taha_zerrouki at gawab.com + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + +Aragonese + + Spelling dictionary + + The following software may be included in this product: Aragonese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) 2011 Santiago Paricio (spariciogmailcom) + Copyright (c) 2011 Juan Pablo Martínez (jpmartunizares) + + MPL1.1/GPLv3+/LGPLv3+ Tri-licence + + Version 0.2 of the wordlist (an_ES.dic) has been built using free + corpuses have been used as Wikipedia in Aragonese + (http://an.wikipedia.org) and wordlists obtained from Apertium + dictionaries + (http://apertium.svn.sourceforge.net/viewvc/apertium/tags/apertium + -es-an/release-2.0/). + +Belarusian + + Spelling dictionary + + The following software may be included in this product: Belarusian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Creative Commons CC-BY-SA + + Author: Mikalai Udodau + Origin: Словазбор аўтарскі; арфаграфія паводле ТСБМ-2005 + +Bengali + + Spelling dictionary + + The following software may be included in this product: Bengali + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GNU GPL version 2.0 below + +Breton + + Spelling dictionary + + The following software may be included in this product: Breton spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + LICENSE: "An Drouizig" spelling dictionary: LGPL + +Bulgarian + + Spelling dictionary + + The following software may be included in this product: Bulgarian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GNU GPL version 2.0 below + + Hyphenation patterns + + The following software may be included in this product: Bulgarian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2001 Anton Zinoviev and Borislav Mitev + Maintained by Radostin Radnev + + See GNU GPL version 2.0 below + + Thesaurus + + The following software may be included in this product: Bulgarian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2001 Radostin Radnev + + See GNU GPL version 2.0 below + +Catalan + + Spelling dictionary + + The following software may be included in this product: Catalan + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2002-2008 Joan Moratinos + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. This program is distributed in the hope that + it will be useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + See the GNU General Public License for more details. You should have + received a copy of the GNU General Public License along with this + program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA. + + See GPL version 3 below + + Hyphenation patterns + + The following software may be included in this product: Catalan + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL version 3 below + + Thesaurus + + The following software may be included in this product: Catalan + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2009 Joan Montané --- Softcatalà + + License: GPL/LGPL + + See GPL version 3 below + + See LGPL version 3 below + +Czech + + Thesaurus + + The following software may be included in this product: Czech + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 2002 Pavel Rychly, Pavel Smrz, {pary,smrz}@fi.muni.cz, + NLPlab, Faculty of Informatics, Masaryk University + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this data (the "Data"), to deal in the Data without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Data, and to permit persons to whom the Data is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Data. + + THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA + OR THE USE OR OTHER DEALINGS IN THE DATA. + +Croatian + + Spelling dictionary + + The following software may be included in this product: Croatian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Croatian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + These patterns were manually converted from TeX hyphenation patterns + using the guide at + http://wiki.services.openoffice.org/wiki/Documentation/SL/Using_Te + X_hyphenation_patterns_in_OpenOffice.org + + Original version: + http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8 + /patterns/txt/hyph-hr.pat.txt?revision=416 + + License: OpenOffice.org adaption of this file is licensed under the GNU + LGPL license. + + See LGPL Version 2.1 below + + Original license text: This file is part of hyph-utf8 package and + resulted from semi-manual conversions of hyphenation patterns into + UTF-8 in June 2008. + + Source: hrhyph.tex (1996-04-10) Author: Marinović Igor + + The above mentioned file should become obsolete, and the author of the + original file should preferably modify this file instead. + + Modifications were needed in order to support native UTF-8 engines, but + functionality (hopefully) didn't change in any way, at least not + intentionally. This file is no longer stand-alone; at least for 8-bit + engines you probably want to use loadhyph-foo.tex (which will load this + file) instead. + + Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur + Reutenauer with help & support from: - Karl Berry, who gave us free + hands and all resources - Taco Hoekwater, with useful macros - Hans + Hagen, who did the unicodifisation of patterns already long before and + helped with testing, suggestions and bug reports - Norbert Preining, + who tested & integrated patterns into TeX Live + + However, the "copyright/copyleft" owner of patterns remains the + original author. + + The copyright statement of this file is thus: + + Do with this file whatever needs to be done in future for the sake of + "a better world" as long as you respect the copyright of original file. + If you're the original author of patterns or taking over a new + revolution, please remove all of the TUG comments & credits that we + added here - you are the Queen / the King, we are only the servants. + + If you want to change this file, rather than uploading directly to + CTAN, we would be grateful if you could send it to us + (http://tug.org/tex-hyphen) or ask for credentials for SVN + repository and commit it yourself; we will then upload the whole + "package" to CTAN. + + Before a new "pattern-revolution" starts, please try to follow some + guidelines if possible: + + - \lccode is *forbidden*, and I really mean it - all the patterns + should be in UTF-8 - the only "allowed" TeX commands in this file are: + \patterns, \hyphenation, and if you really cannot do without, also + \input and \message - in particular, please no \catcode or \lccode + changes, they belong to loadhyph-foo.tex, and no \lefthyphenmin and + \righthyphenmin, they have no influence here and belong elsewhere - + \begingroup and/or \endinput is not needed - feel free to do whatever + you want inside comments + + We know that TeX is extremely powerful, but give a stupid parser at + least a chance to read your patterns. + + For more information see http://tug.org/tex-hyphen + +Danish + + Spelling dictionary + + The following software may be included in this product: Danish spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Stavekontrolden - Danish dictionary files for Hunspell + + Version 1.6 - 2010-09-19 + + da_DK.dic, da_DK.aff: © 2010 Foreningen for frit tilgængelige + sprogværktøjer + + http://www.stavekontrolden.dk + + These files are published under the following open source licenses: + * GNU GPL version 2.0 + * GNU LGPL version 2.1 + * Mozilla MPL version 1.1 + + This dictionary is based on data from Det Danske Sprog- og + Litteraturselskab + + (The Danish Society for Language and Literature), + http://www.dsl.dk. + + Hyphenation patterns + + The following software may be included in this product: Danish + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Thesaurus + + The following software may be included in this product: Danish + thesaurus. Use of any of this software is governed by the terms of the + license below: + * GNU GPL version 2.0 + * GNU LGPL version 2.1 + * Mozilla MPL version 1.1 + + Stavekontrolden - Danish thesaurus files for OpenOffice.org 3.0. + + Den Danske Ordbog - Synonymer + + DanNet - leksikalsk-semantisk ordnet fra Det Danske Sprog- og + Litteraturselskab og Center for Sprogteknologi, Københavns Universitet + + © 2007 Foreningen for frit tilgængelige sprogværktøjer + +Dutch + + Spelling dictionary and hyphenation patterns + + The following software may be included in this product: Dutch spelling + dictionary and hyphenation patterns. Use of any of this software is + governed by the terms of the license below: + + 1. Name: Dutch word list for spell checking - OpenTaal + + 2. Version of words list: 2.10G; version of spell checking: 2.10G. + + 3. Requirements: Hunspell 1.2.8 and higher + + 4. Spelling Seal of Dutch Language Union: The OpenTaal list of lemmas + has received the Spelling Seal of Approval from the Dutch Language + Union, the formal Dutch language institute. For more information please + see: http://www.taalunieversum.org/keurmerk/ + + 5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., © + 1996 Nederlandstalige Tex Gebruikersgroep + + 6. Licenses: OpenTaal aims to create and publish free Dutch language + files. To enable the broadest (re)use the language files are freely + available under the below, liberal licenses at the discretion of the + user. We strongly recommend to read the applicable license before + usage. + + A. BSD (revised version): + + - Full license text: + http://creativecommons.org/licenses/BSD/legalcode + + - Summary: http://creativecommons.org/licenses/BSD/deed.en + + B. Creative Commons, Attribution 3.0 (unported) + + - Full license text: + http://creativecommons.org/licenses/by/3.0/legalcode + + - Summary: http://creativecommons.org/licenses/by/3.0/deed.en + + 7. Support OpenTaal: OpenTaal is a non-profit volunteer project. With + your (small) financial support OpenTaal will further expand its + activities and enhance its professionalism. Your donation is welcome at + account number: 15.62.32.782, BIC: RABONL2U, IBAN: NL88RABO0156232782 + of Stichting OpenTaal / OpenTaal Foundation. In the Netherlands your + donations are tax deductible. OpenTaal Foundation has been designated + by the Dutch Tax Administration as an Institution for General Benefit + (algemeen nut beogende instelling or ANBI). Please see: + http://belastingdienst.nl/anbi/ + + 8. Participate: Everyone is welcome to participate. Please give + feedback, discuss on the mailing list or run Harvester. By contributing + to the project you agree that your contribution is available under free + or/open source licenses. In case you wish, your name will be mentioned + on the website. Your are invited to send us your written request. + + 9. Rights of third parties: OpenTaal respects the rights of third + parties and aims to keep its data freely available. Therefore you may + no use protected sources of third parties, i.e. dictionaries, without + their permission when you contribute to the project. It is permitted to + use the materials of the Dutch Language Union, i.e. their spelling + instruction and word list. In case you believe OpenTaal is violating + your rights, we ask you to send us a written notice as soon as + possible. + + 10.Contact: OpenTaal Foundation, http://www.opentaal.org, + bestuur@opentaal.org + +German + + Spelling dictionary + + The following software may be included in this product: German spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Author: Franz Michael Baumann + + License: GNU GPL Version 2 or GPL Version 3 or OASIS 0.1 + + The "frami"-dictionary contains the complete word list of Björn Jacke's + "igerman98" + + (Version: 2011-03-21) and numerous supplements by Franz Michael Baumann + according to the reform of 2006-08-01. + + OASIS distribution license agreement 0.1 from 2005-11-10 + + Without any modifications this dictionary may be distributed with + programs that support the OASIS Open Document Format for Office + Applications and whose PRIMARY format for saving documents is the Open + Document Format. + + This requires that all licenses and copyright files are also + distributed together with the package the dictionary is shipped with. + + Any modifications of the dictionary files are not allowed for this + agreement, modifications require the use of the GNU GENERAL PUBLIC + LICENSE. + + If you have questions or don't get along with this, send me your + comments/questions/ideas to Bjoern Jacke + + See GPL version 3 below + + See GPL version 2 below + + Hyphenation patterns + + The following software may be included in this product: German + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Authors: Marco Huggenberger / Daniel Naber + + Version: 2011-05-05 (author and license information in source file + added) + + License: GNU LGPL + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: German + thesaurus. Use of any of this software is governed by the terms of the + license below: + + OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen + + Version: 2011-05-04 AT + + License: GNU LGPL + + See LGPL Version 2.1 below + +Greek + + Spelling dictionary + + The following software may be included in this product: Greek spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + Hyphenation patterns + + The following software may be included in this product: Greek + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See LGPL Version 2.1 below + +English (Australia) + + Spelling dictionary + + The following software may be included in this product: English + (Australia) spelling dictionary. Use of any of this software is + governed by the terms of the license below: + + Copyright (C) 2006 Cameron Roy + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL version 2 below + +English (Canada) + + Spelling dictionary + + The following software may be included in this product: English + (Canada) spelling dictionary. Use of any of this software is governed + by the terms of the license below: +Wordlist en_CA spelling and morphological dictionary for OpenOffice.org +Version 2008-12-18 + +Based on Wordlist Hunspell dictionaries version 2008-12-05 +and Wordlist POS and AGID data created by Kevin Atkinson +and released on http://wordlist.sourceforge.net. + +Other fixes: + +OOo Issue 48060 - add numbers with affixes by COMPOUNDRULE (1st, 111th, 1990s et +c.) +New REP items (better suggestions for accented words and a few mistakes) +OOo Issue 63541 - remove *dessicated, *dessication + +László Németh + +Original license: + +2008-12-05 Release + +README file for en_US and en_CA Hunspell dictionaries + +These dictionaries are created using the speller/make-hunspell-dict +dictionary in SCOWL, SVN revision 74. + +The NOSUGGEST flag was added to certain taboo words. While I made an +honest attempt to flag the strongest taboo words with the NOSUGGEST +flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD. +The list was originally derived from Németh László, however I removed +some words which, while being considered taboo by some dictionaries, +are not really considered swear words in today's society. + +You can find SCOWL and friend at http://wordlist.sourceforge.net/. +Bug reports should go to the Issue Tracker found on the previously +mentioned web site. General discussion should go to the +wordlist-devel at sourceforge net mailing list. + +COPYRIGHT, SOURCES, and CREDITS: + +The en_US and en_CA dictionaries come directly from SCOWL (up to level +60) and is thus under the same copyright of SCOWL. The affix file is +a heavily modified version of the original english.aff file which was +released as part of Geoff Kuenning's Ispell and as such is covered by +his BSD license. Part of SCOWL is also based on Ispell thus the +Ispell copyright is included with the SCOWL copyright. + +The collective work is Copyright 2000-2007 by Kevin Atkinson as well +as any of the copyrights mentioned below: + + Copyright 2000-2007 by Kevin Atkinson + + Permission to use, copy, modify, distribute and sell these word + lists, the associated scripts, the output created from the scripts, + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appears in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Kevin Atkinson makes no representations + about the suitability of this array for any purpose. It is provided + "as is" without express or implied warranty. + +Alan Beale also deserves special credit as he has, +in addition to providing the 12Dicts package and being a major +contributor to the ENABLE word list, given me an incredible amount of +feedback and created a number of special lists (those found in the +Supplement) in order to help improve the overall quality of SCOWL. + +The 10 level includes the 1000 most common English words (according to +the Moby (TM) Words II [MWords] package), a subset of the 1000 most +common words on the Internet (again, according to Moby Words II), and +frequently class 16 from Brian Kelk's "UK English Wordlist +with Frequency Classification". + +The MWords package was explicitly placed in the public domain: + + The Moby lexicon project is complete and has + been place into the public domain. Use, sell, + rework, excerpt and use in any way on any platform. + + Placing this material on internal or public servers is + also encouraged. The compiler is not aware of any + export restrictions so freely distribute world-wide. + + You can verify the public domain status by contacting + + Grady Ward + 3449 Martha Ct. + Arcata, CA 95521-4884 + + grady@netcom.com + grady@northcoast.com + +The "UK English Wordlist With Frequency Classification" is also in the +Public Domain: + + Date: Sat, 08 Jul 2000 20:27:21 +0100 + From: Brian Kelk + + > I was wondering what the copyright status of your "UK English + > Wordlist With Frequency Classification" word list as it seems to + > be lacking any copyright notice. + + There were many many sources in total, but any text marked + "copyright" was avoided. Locally-written documentation was one + source. An earlier version of the list resided in a filespace called + PUBLIC on the University mainframe, because it was considered public + domain. + + Date: Tue, 11 Jul 2000 19:31:34 +0100 + + > So are you saying your word list is also in the public domain? + + That is the intention. + +The 20 level includes frequency classes 7-15 from Brian's word list. + +The 35 level includes frequency classes 2-6 and words appearing in at +least 11 of 12 dictionaries as indicated in the 12Dicts package. All +words from the 12Dicts package have had likely inflections added via +my inflection database. + +The 12Dicts package and Supplement is in the Public Domain. + +The WordNet database, which was used in the creation of the +Inflections database, is under the following copyright: + + This software and database is being provided to you, the LICENSEE, + by Princeton University under the following license. By obtaining, + using and/or copying this software and database, you agree that you + have read, understood, and will comply with these terms and + conditions.: + + Permission to use, copy, modify and distribute this software and + database and its documentation for any purpose and without fee or + royalty is hereby granted, provided that you agree to comply with + the following copyright notice and statements, including the + disclaimer, and that the same appear on ALL copies of the software, + database and documentation, including modifications that you make + for internal use or for distribution. + + WordNet 1.6 Copyright 1997 by Princeton University. All rights + reserved. + + THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- + ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE + LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY + THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + The name of Princeton University or Princeton may not be used in + advertising or publicity pertaining to distribution of the software + and/or database. Title to copyright in this software, database and + any associated documentation shall at all times remain with + Princeton University and LICENSEE agrees to preserve same. + +The 40 level includes words from Alan's 3esl list found in version 4.0 +of his 12dicts package. Like his other stuff the 3esl list is also in the +public domain. + +The 50 level includes Brian's frequency class 1, words words appearing +in at least 5 of 12 of the dictionaries as indicated in the 12Dicts +package, and uppercase words in at least 4 of the previous 12 +dictionaries. A decent number of proper names is also included: The +top 1000 male, female, and Last names from the 1990 Census report; a +list of names sent to me by Alan Beale; and a few names that I added +myself. Finally a small list of abbreviations not commonly found in +other word lists is included. + +The name files form the Census report is a government document which I +don't think can be copyrighted. + +The file special-jargon.50 uses common.lst and word.lst from the +"Unofficial Jargon File Word Lists" which is derived from "The Jargon +File". All of which is in the Public Domain. This file also contain +a few extra UNIX terms which are found in the file "unix-terms" in the +special/ directory. + +The 55 level includes words from Alan's 2of4brif list found in version +4.0 of his 12dicts package. Like his other stuff the 2of4brif is also +in the public domain. + +The 60 level includes Brian's frequency class 0 and all words +appearing in at least 2 of the 12 dictionaries as indicated by the +12Dicts package. A large number of names are also included: The 4,946 +female names and the 3,897 male names from the MWords package. + +The 70 level includes the 74,550 common dictionary words and the +21,986 names list from the MWords package The common dictionary words, +like those from the 12Dicts package, have had all likely inflections +added. The 70 level also included the 5desk list from version 4.0 of +the 12Dics package which is the public domain + +The 80 level includes the ENABLE word list, all the lists in the +ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics +Dictionary" (UKACD), the list of signature words in from YAWL package, +and the 10,196 places list from the MWords package. + +The ENABLE package, mainted by M\Cooper , +is in the Public Domain: + + The ENABLE master word list, WORD.LST, is herewith formally released + into the Public Domain. Anyone is free to use it or distribute it in + any manner they see fit. No fee or registration is required for its + use nor are "contributions" solicited (if you feel you absolutely + must contribute something for your own peace of mind, the authors of + the ENABLE list ask that you make a donation on their behalf to your + favorite charity). This word list is our gift to the Scrabble + community, as an alternate to "official" word lists. Game designers + may feel free to incorporate the WORD.LST into their games. Please + mention the source and credit us as originators of the list. Note + that if you, as a game designer, use the WORD.LST in your product, + you may still copyright and protect your product, but you may *not* + legally copyright or in any way restrict redistribution of the + WORD.LST portion of your product. This *may* under law restrict your + rights to restrict your users' rights, but that is only fair. + +UKACD, by J Ross Beresford , is under the +following copyright: + + Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved. + + The following restriction is placed on the use of this publication: + if The UK Advanced Cryptics Dictionary is used in a software package + or redistributed in any form, the copyright notice must be + prominently displayed and the text of this document must be included + verbatim. + + There are no other restrictions: I would like to see the list + distributed as widely as possible. + +The 95 level includes the 354,984 single words and 256,772 compound +words from the MWords package, ABLE.LST from the ENABLE Supplement, +and some additional words found in my part-of-speech database that +were not found anywhere else. + +Accent information was taken from UKACD. + +My VARCON package was used to create the American, British, and +Canadian word list. + +Since the original word lists used used in the VARCON package came +from the Ispell distribution they are under the Ispell copyright: + + Copyright 1993, Geoff Kuenning, Granada Hills, CA + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All modifications to the source code must be clearly marked as + such. Binary redistribution based on modified source code + must be clearly marked as modified versions in the documentation + and/or other materials provided with the distribution. + (clause 4 removed with permission from Geoff Kuenning) + 5. The name of Geoff Kuenning may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF + KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +English (South Africa) + + Spelling dictionary + + The following software may be included in this product: English (South + Africa) spelling dictionary. Use of any of this software is governed by + the terms of the license below: + + See LGPL Version 2.1 below + +English (United Kingdom) + + Spelling dictionary + + The following software may be included in this product: English (United + Kingdom) spelling dictionary. Use of any of this software is governed + by the terms of the license below: + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: English (United + Kingdom) hyphenation patterns. Use of any of this software is governed + by the terms of the license below: + + BSD-style. Unlimited copying, redistribution and modification of this + file is permitted with this copyright and license information. + +English (USA) + + Spelling dictionary + + The following software may be included in this product: English (USA) + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See English (Canada). + + Hyphenation patterns + + The following software may be included in this product: English (USA) + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + BSD-style. Unlimited copying, redistribution and modification of this + file + is permitted with this copyright and license information. + + Thesaurus + + The following software may be included in this product: English (USA) + thesaurus. Use of any of this software is governed by the terms of the + license below: + + WordNet Release 2.1 + + This software and database is being provided to you, the LICENSEE, by + Princeton University under the following license. By obtaining, using + and/or copying this software and database, you agree that you have + read, understood, and will comply with these terms and conditions.: + + Permission to use, copy, modify and distribute this software and + database and its documentation for any purpose and without fee or + royalty is hereby granted, provided that you agree to comply with the + following copyright notice and statements, including the disclaimer, + and that the same appear on ALL copies of the software, database and + documentation, including modifications that you make for internal use + or for distribution. + + WordNet 2.1 Copyright 2005 by Princeton University. All rights + reserved. + + THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON UNIVERSITY + MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF + EXAMPLE, BUT NOT LIMITATION, PRINCETON UNIVERSITY MAKES NO + REPRESENTATIONS OR WARRANTIES OF MERCHANT- ABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE, DATABASE + OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + The name of Princeton University or Princeton may not be used in + advertising or publicity pertaining to distribution of the software + and/or database. Title to copyright in this software, database and any + associated documentation shall at all times remain with Princeton + University and LICENSEE agrees to preserve same. + + English sentence checker for LibreOffice + + The following software may be included in this product: English + sentence checker. Use of any of this software is governed by the terms + of the license below: + + 2011-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+ + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Estonian + + Spelling dictionary + + The following software may be included in this product: Estonian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Dictionary is adapted to myspell by Jaak Pruulmann (jjpp@meso.ee, + http://www.meso.ee/~jjpp/speller/ ) on the base of word list + created and shared by IEL (Institute of the Estonian Language, + tarkvara@eki.ee). The original of EKI software license is available at + http://www.eki.ee/eki/licence.html. The work of Jaak Pruulmann is + licensed under LGPL (GNU Lesser General Public License). The copies of + licenses are added to current file. IEL is informed about the use of + this word list. + + Software License Agreement + + Institute of the Estonian Language + + Copyright © Institute of the Estonian Language + + E-mail: tarkvara@eki.ee + + URL: http://www.eki.ee/tarkvara/ + + The present License Agreement gives the user of this Software Product + (hereinafter: Product) the right to use the Product for whatever + purpose (incl. distribution, copying, altering, inclusion in other + software, and selling) on the following conditions: + + The present License Agreement should belong unaltered to each copy ever + made of this Product; + + Neither the Institute of the Estonian Language (hereinafter: IEL) nor + the author(s) of the Product will take responsibility for any + detriment, direct or indirect, possibly ensuing from the application of + the Product; + + The IEL is ready to share the Product with other users as we wish to + advance research on the Estonian language and to promote the use of + Estonian in IT-technology now rapidly developing, yet we refuse to bind + ourselves to any further obligation, which means that the IEL is not + obliged either to warrant the suitability of the Product for a concrete + use, to improve the program, or to provide a more detailed description + of the underlying algorithms. (Which does not mean, though, that we may + not do it.) + + Whenever you use the Product, we request that you inform us by writing + to the e-mail address tarkvara@eki.ee or to street address listed + below. + + Institute of the Estonian Language + + Roosikrantsi 6 + EE-10119 Tallinn + ESTONIA + + E-mail: eki@eki.ee + Phone & Fax: +372-6411443 + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Estonian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Hyphenation file is adapted to OpenOffice.org by Jaak Pruulmann + (jjpp@meso.ee, http://www.meso.ee/~jjpp/speller/) on the base of + the LaTeX hyphenation file created by Enn Saar (saar@aai.ee), who has + signed the JCA (Joint Copyright Agreement) allowing to use his work for + OpenOffice.org. The original file is available at address + http://www.cs.ut.ee/~tqnu/eehyph.tex and in the heading of the + file it is written that this file is licensed under LPPL. The work of + Jaak Pruulmann is licensed under LGPL (GNU Lesser General Public + License). + + See LPPL below + + See LGPL Version 2.1 below + +French + + Spelling dictionary + + The following software may be included in this product: French spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Olivier R. - dicollectefreefr + + Dicollecte: http://www.dicollecte.org/ + + Licenses: + * MPL: Mozilla Public License version 1.1 or higher + * GPL: GNU General Public License version 2.0 or higher + * LGPL: GNU Lesser General Public License version 2.1 or higher + + Hyphenation patterns + + The following software may be included in this product: French + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation tables frhyph.tex (V2.12) + <2002/12/11> + http://mirror.ctan.org/language/hyphenation/frhyph.tex + + The TeX hyphenation tables are released under the LaTeX Project Public + License (LPPL) + + See LPPL below + + License: OpenOffice.org adaptions of this package are licensed under + the GNU Lesser General Public License (LGPL) version 2.1 or higher. + + See LGPL Version 2.1 below + + Author: Conversion author is Paul Pichaureau + + + Based on a previous conversion by Blaise Drayer + + Thesaurus + + The following software may be included in this product: French + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Licence: LGPL: GNU Lesser General Public License version 2.1 or higher. + + See LGPL Version 2.1 below + +Galician + + Spelling dictionary + + The following software may be included in this product: Galician + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + This extension was made by Frco. Javier Rial Rodríguez for Mancomún, + Centro de Referencia e Servizos de Software Libre 2008 + + Spellchecker files (gl_ES.aff, gl_ES.dic) from Mar Castro Pereiro also + developed for Mancomún. + + Distributed under the GPL License. + + See GPL Version 3 below + +Gujarati + + Spelling dictionary + + The following software may be included in this product: Gujarati + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 3 below + +Hebrew + + Spelling dictionary + + The following software may be included in this product: Hebrew spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + This dictionary is Copyright (C) 2000-2009, Nadav Har'El + (nyh@math.technion.ac.il) and Dan Kenigsberg + (danken@cs.technion.ac.il). + + It is licensed under the GNU General Public License (GPL). + + See GPL Version 3 below + +Hindi + + The following software may be included in this product: Hindi spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GNU Aspell Hindi Word List Package + Copyright © 2005 Swapnil {Hajare, Sant} + + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + Conversion made by Laszlo Nemeth, for demonstration of Hunspell Unicode + support. + + See GPL Version 2 below + +Hungarian + + Spelling dictionary + + The following software may be included in this product: Hungarian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL", see + COPYING.LGPL) or (excepting the LGPLed GNU gettext library in the intl/ + directory) the Mozilla Public License Version 1.1 or later (the "MPL", + see COPYING.MPL). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licences for the specific language governing rights and limitations + under the licenses. + + 2010 (c) László Németh & Ferenc Godó + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Hungarian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright © Bence Nagy , 2006 + + Original license: GPL v2 + + Patch author: László Németh + + Patch license: MPL/GPL/LGPL + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Thesaurus + + The following software may be included in this product: Hungarian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2009, László Németh + + See GPL Version 2 below + + Hungarian sentence checker for LibreOffice + + The following software may be included in this product: Hungarian + sentence checker. Use of any of this software is governed by the terms + of the license below: + + 2009-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+ + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Icelandic + + Spelling dictionary and thesaurus + + The wordlist was developed by Orðabók Háskólans in cooperation with + Reiknistofnun Háskóla Íslands in the early nineties and was released + into the public domain. Further modifications to the wordlist are also + released into the public domain. + The thesaurus and words in the spell checker with additional + morphological information are from the Icelandic Wiktionary Project, + http://is.wiktionary.org. Works released by the Wiktionary project are + under the Creative Commons Attribution-ShareAlike 3.0 Unported license. + You are free: + to Share — to copy, distribute and transmit the work + to Remix — to adapt the work + to make commercial use of the work + Under the following conditions: + Attribution — You must attribute the work in the manner specified by + the author or licensor (but not in any way that suggests that they + endorse you or your use of the work). + Share Alike — If you alter, transform, or build upon this work, you may + distribute the resulting work only under the same or similar license to + this one. + + See CC-BY-SA 3.0 below + +Italian + + Spelling dictionary + + The following software may be included in this product: Italian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2001, 2002 Gianluca Turconi + Copyright (C) 2002, 2003, 2004 Gianluca Turconi and Davide Prina + Copyright (C) 2004, 2005, 2006, 2007 Davide Prina + Copyright (C) 2010 Andrea Pescetti + + See GPL Version 3 below + + Hyphenation patterns + + The following software may be included in this product: Italian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation tables by Claudio Beccari + + Author: conversion author is Giuseppe Bilotta + + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Italian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2004,2005,2006,2007,2008 Daniela Volta + Copyright (C) 2008 Giovanni Zuliani + Copyright (C) 2006,2007,2008 Davide Prina + Copyright (C) 2010 Andrea Pescetti + + See GPL Version 3 below + +Kurdish + + Spelling dictionary + + The following software may be included in this product: Kurdish + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + (C) Copyright Reimar Heider + + With contributions from Kevin P. Scannell and Rêzan + Tovjîn + + The original word list used for this package was augmented using Kevin + Scannell's web crawling software "An Crúbadán" and then hand-checked by + Ronahi and Tovjîn. + + Originally GPL, relicensed on 04-07-2007 to GPLv3, LGPLv3, MPL 1.1 + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Lao + + Spelling dictionary + + The following software may be included in this product: Lao spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2013 by Brian Eugene Wilson, Robert Martin Campbell + + See LGPL Version 2.1 below + +Latvian + + Spelling dictionary + + The following software may be included in this product: Latvian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, + http://dict.dv.lv + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Latvian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2004-2005 Jânis Vilims, jvilims@apollo.lv + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Latvian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, + http://dict.dv.lv + + See LGPL Version 2.1 below + +Lithuanian + + Spelling dictionary + + The following software may be included in this product: Lithuanian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) Albertas Agejevas , 2000, 2001. All + rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. Neither the name of the Albertas Agejevas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY ALBERTAS AGEJEVAS AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ALBERTAS AGEJEVAS + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Hyphenation patterns + + The following software may be included in this product: Lithuanian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: TeX hyphenation tables by Sigitas Tolusis and Vytas + Statulevicius. The original tables can be found at + http://www.vtex.lt/tex/download/zip/texmf.zip as lthyphen.tex. + + Author: Converted to OOo format by Albertas Agejevas + + License: LaTeX Project Public Licence + + See LPPL below + +Nepali + + Spelling dictionary + + The following software may be included in this product: Nepali spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Compiled by Madan Puraskar Pustakalaya + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Nepali + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Compiled by Madan Puraskar Pustakalaya + + See LGPL Version 2.1 below + +Norwegian + + Spelling dictionary + + The following software may be included in this product: Norwegian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + Hyphenation patterns + + The following software may be included in this product: Norwegian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Norwegian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See GPL Version 2 below + +Occitan + + Spelling dictionary + + The following software may be included in this product: Occitan + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2006 Bruno GALLART + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL Version 2 below + +Polish + + Spelling dictionary + + The following software may be included in this product: Polish spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + This dictionary for spell-checking Polish texts is licensed under GPL, + LGPL, MPL (Mozilla Public License) and Creative Commons ShareAlike + licenses (see http://creativecommons.org/licenses/sa/1.0). + + Hyphenation patterns + + The following software may be included in this product: Polish + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation patterns plhyph.tex, version 3.0a, + Wednesday, May 17th, 1995. The original file is in CTAN archives, for + example + here:http://ctan.binkerton.com/ctan.readme.php?filename=language/p + olish/plhyph.tex and is licensed under LPPL. + + License: OpenOffice.org Adaptions of this package are licensed under + the GNU LGPL license. + + Author: conversion and corrects author is Artur Polaczyński + + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Polish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2004-2008 Marcin Miłkowski + + + This product is made available subject to the terms of GNU Lesser + General Public License Version 2.1. + + See LGPL Version 2.1 below + +Portuguese + + Spelling dictionary + + The following software may be included in this product: Portuguese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2006 Jose Joao de Almeida, Rui Vilela, Alberto Simões + + Dep. Informatica, Universidade do Minho, Portugal + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Portuguese + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Based on the TeX hyphenation tables by Pedro J. de Rezende (Brazilian) + and tuned up by J.Joao Dias Almeida + + Author: conversion author is Paulo Morgado + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Portuguese + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See GPL Version 2 below + +Portuguese (Brazilian) + + Spelling dictionary + + The following software may be included in this product: Portuguese + (Brazilian) spelling dictionary. Use of any of this software is + governed by the terms of the license below: + + This dictionary is under continuous development by Raimundo Moura and + his team. It is icensed under the terms of the GNU Lesser General + Public License version 3 (LGPLv3), as published by the Free Software + Foundation, and Mozilla Public License as published by The Mozilla + Foundation. The credits are available at + http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ort + ografico/ and you can find new releases at + http://extensions.libreoffice.org + + Copyright (C) 2006 - 2013 by Raimundo Santos Moura + + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Portuguese + (Brazilian) hyphenation patterns. Use of any of this software is + governed by the terms of the license below: + + These hyphenation patterns are under continuous development by Raimundo + Moura and his team. It is icensed under the terms of the GNU Lesser + General Public License version 3 (LGPLv3), as published by the Free + Software Foundation, and Mozilla Public License as published by The + Mozilla Foundation. The credits are available at + http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ort + ografico/ and you can find new releases at + http://extensions.libreoffice.org + + Copyright (C) 2006 - 2013 by Raimundo Santos Moura + + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Portuguese Brazilian sentence checker for LibreOffice + + The following software may be included in this product: Portuguese + (Brazilian) sentence checker. Use of any of this software is governed + by the terms of the license below: + + MPL 1.1 / GPLv3+ / LGPLv3+ + + 2013 © Raimundo Santos Moura + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Romanian + + Spelling dictionary + + The following software may be included in this product: Romanian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Romanian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + GNU General Public License Version 2 + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Romanian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + GNU General Public License Version 2 or later + + See GPL Version 2 below + +Russian + + Spelling dictionary + + The following software may be included in this product: Russian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) 1997-2008, Alexander I. Lebedev + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + * Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + * Modified versions must be clearly marked as such. + * The name of Alexander I. Lebedev may not be used to endorse or + promote products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Hyphenation patterns + + The following software may be included in this product: Russian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + unknown + + Thesaurus + + The following software may be included in this product: Russian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + License: GNU LGPL + + Author: Mikhail Korolyov + + Origin: Абрамовъ, Н. Словарь русскихъ синонимовъ и сходныхъ по смыслу + выраженiй. Изд. 3-е, доп., Пг., 1911 + + Russian grammar checker + + The following software may be included in this product: Russian grammar + checker. Use of any of this software is governed by the terms of the + license below: + + 2009, 2011, 2012 (c) Yakov Reztsov , license: MPL + 1.1 / GPL / LGPL + +Scottish Gaelic + + Spelling dictionary + + The following software may be included in this product: Scottish Gaelic + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 3 below + +Serbian + + Spelling dictionary + + The following software may be included in this product: Serbian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Serbian spellcheck dictionary (files sr.dic, sr.aff, sh.dic, sh.aff) is + released under disjunctive tri-licence GNU LGPL version 2.1 or later / + MPL version 1.1 or later / GNU GPL version 2 or later giving you the + choice of one of the three sets of free software licensing terms. You + can also use the dictionary under the terms of the Creative Commons + BY-SA 3.0 Unpored licence. + + Hyphenation patterns + + The following software may be included in this product: Serbian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Serbian hyphenation patterns (files hyph_sr.dic and hyph_sh.dic) are + derived from the official TeX patterns for Serbocroatian language + (Cyrillic and Latin) created by Dejan Muhamedagić + version 2.02 released on 22 June 2008. The + format is adopted for usage with Hyphen hyphenation library and is + released again as hyphen-sr under the compatible GNU LGPL version 2.1 + or later. + + See LGPL Version 2.1 below + +Sinhala + + Spelling dictionary + + The following software may be included in this product: Sinhala + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) <2010> Laknath Semage + + See GPL Version 3 below + +Slovak + + Spelling dictionary + + The following software may be included in this product: Slovak spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Data are released under these licenses (you can select one): + * The GNU General Public License (GPL) Version 2, June 1991 + * GNU Lesser General Public License Version 2.1, February 1999 + * Mozilla Public License 1.1 (MPL 1.1) + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Slovak + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Dictionary is created by converting TeX hyphenation patterns for Slovak + (Author: Jana Chlebíková) with lingucomponent-tools + (http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucompone + nt-tools/). + + Original license: LPPL + + See LPPL below + + Thesaurus + + The following software may be included in this product: Slovak + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 2004-2010 Tibor Bako, yorik (at) szm.sk, Zdenko Podobný, + zposter (at) gmail.com + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this data (the "Data"), to deal in the Data without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Data, and to permit persons to whom the Data is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Data. + + THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA + OR THE USE OR OTHER DEALINGS IN THE DATA. + +Slovenian + + Spelling dictionary + + The following software may be included in this product: Slovenian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Slovenian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Slovenian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Spanish + + Spelling dictionary + + The following software may be included in this product: Spanish + spelling dictionary. Use of any of this software is governed by the + terms of the licenses (or any later versions) below: + + See GPL version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Spanish + hyphenation patterns. Use of any of this software is governed by the + terms of the licenses (or any later versions) below: + + See GPL version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Thesaurus + + The following software may be included in this product: Spanish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Swahili + + Spelling dictionary + + The following software may be included in this product: Swahili + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2004 Jason M Githeko + + See LGPL Version 2.1 below + +Swedish + + Spelling dictionary + + The following software may be included in this product: Swedish + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright © 2003-12 Göran Andersson . + + This dictionary is made available subject to the terms of GNU Lesser + General Public License Version 3. + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Swedish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + This thesaurus was directly converted from Synlex. The synonyms will be + displayed sorted by their voted synonym level. + + The synlex file license, You are free to use this file + with the same license + + Copyright (c) Viggo Kann KTH 2009 + + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED + OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + + Permission is hereby granted to use or copy this program for any + purpose, provided the above notices are retained on all copies. + Permission to modify the code and to distribute modified code is + granted, provided the above notices are retained, and a notice that the + code was modified is included with the above copyright notice. + +Telugu + + Spelling dictionary + + The following software may be included in this product: Telugu spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GNU Hunspell Telugu Word List Package adaptation + + Copyright © 2010 adaptation to Hunspell, Arjuna Rao Chavala + Copyright © 2005 Aspell Telugu word list released by IndLinux, Khadir + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL Version 2 below + + Hyphenation patterns + + The following software may be included in this product: Telugu + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright © 2009 Santhosh Thottingal + + The Telugu Hyphenation Dictionary may be used under the terms of either + the GNU General Public License Version 3 or later (the "GPL"), or the + GNU Lesser General Public License Version 3 or later (the "LGPL") + + See GPL Version 3 below + + See LGPL Version 3 below + +Thai + + Spelling dictionary + + The following software may be included in this product: Thai spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Ukrainian + + Spelling dictionary + + The following software may be included in this product: Ukrainian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 1999 Vladimir Yakovchuk, Oleg Podgurniy + Copyright (C) 2001 Dmytro Kovalyov, Maksym Polyakov, Andriy Rysin + Copyright (C) 2002 Valentyn Solomko, Volodymyr M. Lisivka + Copyright (C) 2005 Andriy Rysin, Eugeniy Meshcheryakov, Dmytro Kovalyov + Copyright (C) 2006-2009 Andriy Rysin + + This dictionary is licensed under GPL 2.0 or above, LGPL 2.1 or above + and MPL (Mozilla Public License) 1.1 licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Ukrainian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright 1998-2002 Maksym Polyakov. + + License: GNU General Public License version 2 or any later version + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Ukrainian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + This thesaurus is based on: П. М. Деркач, Короткий словник синонімів + української мови, Радянська школа, Київ, 1960 С. Караванський, Пошук + українського слова + + Copyright (C) 2009 Andriy Rysin + + This thesaurus is licensed under GPL, LGPL and MPL (Mozilla Public + License) licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +Vietnamese + + Spelling dictionary + + The following software may be included in this product: Vietnamese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Authors: + Ivan Garcia + Nguyễn Xuân Minh + + This spellchecker for OpenOffice was based on the Vietnamese Dictionary + list from Proffessor Hồ Ngọc Đức + + This spellchecker is released with GPLv2 license. + + See GPL Version 2 below + +Zulu + + Hyphenation patterns + + The following software may be included in this product: Zulu + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2005, 2007 Friedel Wolff + + See LGPL Version 2.1 below + + Artwork + +KDE Crystal theme icons + + The following software may be included in this product: KDE Crystal + theme icons. Use of any of this software is governed by the terms of + the license below: + + KDE Crystal theme icons. + Copyright (C) 2002 and following years KDE Artists This library is free + software; you can redistribute it and/or modify it under the terms of + the GNU Lesser General Public License as published by the Free Software + Foundation, version 2.1 of the License. + + See LGPL Version 2.1 below + +Tango theme + + Portions of the Tango theme contain work licenced under the Creative + Commons Attribution-Share Alike 3.0 United States License. To view a + copy of this licence, visit + http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to + Creative Commons, 171 Second Street, Suite 300, San Francisco, + California 94105, USA. + + This artwork is attributed to the "GNOME Project": + http://www.gnome.org + + See CC-BY-SA 3.0 below + + Miscellaneous + +Adobe Printer Description Files + + The following software may be included in this product: Adobe Printer + Description Files. Use of any of this software is governed by the terms + of the license below: + + Copyright 1987-1995 Adobe Systems Incorporated. + + All Rights Reserved. + + Permission is granted for redistribution of this file as long as this + copyright notice is intact and the contents of the file is not altered + in any way from its original form. + + End of Copyright statement + +International Color Consortium sRGB Profiles + + The following software may be included in this product: ICC sRGB + Profiles. Use of any of this software is governed by the terms of the + license below: + + To anyone who acknowledges that the files "sRGB_IEC61966-2-1_noBPC.icc" + and "sRGB_IEC61966-2-1_withBPC.icc" are provided "AS IS" WITH NO + EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute + these file for any purpose is hereby granted without fee, provided that + the files are not changed including the HP copyright notice tag, and + that the name of Hewlett-Packard Company shall not be used in + advertising or publicity pertaining to distribution of the software + without specific, written prior permission. Hewlett-Packard Company + makes no representations about the suitability of this software for any + purpose. + + GNU Lesser General Public License Version 3 + + Copyright © 2007 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + This version of the GNU Lesser General Public License incorporates the + terms and conditions of version 3 of the GNU General Public License, + supplemented by the additional permissions listed below. + +0. Additional Definitions. + + As used herein, “this License” refers to version 3 of the GNU Lesser + General Public License, and the “GNU GPL” refers to version 3 of the + GNU General Public License. + + “The Library” refers to a covered work governed by this License, other + than an Application or a Combined Work as defined below. + + An “Application” is any work that makes use of an interface provided by + the Library, but which is not otherwise based on the Library. Defining + a subclass of a class defined by the Library is deemed a mode of using + an interface provided by the Library. + + A “Combined Work” is a work produced by combining or linking an + Application with the Library. The particular version of the Library + with which the Combined Work was made is also called the “Linked + Version”. + + The “Minimal Corresponding Source” for a Combined Work means the + Corresponding Source for the Combined Work, excluding any source code + for portions of the Combined Work that, considered in isolation, are + based on the Application, and not on the Linked Version. + + The “Corresponding Application Code” for a Combined Work means the + object code and/or source code for the Application, including any data + and utility programs needed for reproducing the Combined Work from the + Application, but excluding the System Libraries of the Combined Work. + +1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License + without being bound by section 3 of the GNU GPL. + +2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a + facility refers to a function or data to be supplied by an Application + that uses the facility (other than as an argument passed when the + facility is invoked), then you may convey a copy of the modified + version: + * a) under this License, provided that you make a good faith effort + to ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + * b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + +3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from a + header file that is part of the Library. You may convey such object + code under terms of your choice, provided that, if the incorporated + material is not limited to numerical parameters, data structure layouts + and accessors, or small macros, inline functions and templates (ten or + fewer lines in length), you do both of the following: + * a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are covered + by this License. + * b) Accompany the object code with a copy of the GNU GPL and this + license document. + +4. Combined Works. + + You may convey a Combined Work under terms of your choice that, taken + together, effectively do not restrict modification of the portions of + the Library contained in the Combined Work and reverse engineering for + debugging such modifications, if you also do each of the following: + * a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + * b) Accompany the Combined Work with a copy of the GNU GPL and this + license document. + * c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among these + notices, as well as a reference directing the user to the copies of + the GNU GPL and this license document. + * d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of + this License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with + the Library. A suitable mechanism is one that (a) uses at run + time a copy of the Library already present on the user's + computer system, and (b) will operate properly with a modified + version of the Library that is interface-compatible with the + Linked Version. + * e) Provide Installation Information, but only if you would + otherwise be required to provide such information under section 6 + of the GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the Combined + Work produced by recombining or relinking the Application with a + modified version of the Linked Version. (If you use option 4d0, the + Installation Information must accompany the Minimal Corresponding + Source and Corresponding Application Code. If you use option 4d1, + you must provide the Installation Information in the manner + specified by section 6 of the GNU GPL for conveying Corresponding + Source.) + +5. Combined Libraries. + + You may place library facilities that are a work based on the Library + side by side in a single library together with other library facilities + that are not Applications and are not covered by this License, and + convey such a combined library under terms of your choice, if you do + both of the following: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + * b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + +6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Lesser General Public License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + as you received it specifies that a certain numbered version of the GNU + Lesser General Public License “or any later version” applies to it, you + have the option of following the terms and conditions either of that + published version or of any later version published by the Free + Software Foundation. If the Library as you received it does not specify + a version number of the GNU Lesser General Public License, you may + choose any version of the GNU Lesser General Public License ever + published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide + whether future versions of the GNU Lesser General Public License shall + apply, that proxy's public statement of acceptance of any version is + permanent authorization for you to choose that version for the Library. + + GNU Lesser General Public License Version 2.1 + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts as the suc +cessor of the GNU Library Public License, version 2, hence the version number 2. +1.] + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public Licenses + are intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some + specially designated software packages--typically libraries--of the + Free Software Foundation and other authors who decide to use it. You + can use it too, but we suggest you first think carefully about whether + this license or the ordinary General Public License is the better + strategy to use in any particular case, based on the explanations + below. + + When we speak of free software, we are referring to freedom of use, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + this service if you wish); that you receive source code or can get it + if you want it; that you can change the software and use pieces of it + in new free programs; and that you are informed that you can do these + things. + + To protect your rights, we need to make restrictions that forbid + distributors to deny you these rights or to ask you to surrender these + rights. These restrictions translate to certain responsibilities for + you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis or + for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link other code with the library, you must provide + complete object files to the recipients, so that they can relink them + with the library after making changes to the library and recompiling + it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the + library, and (2) we offer you this license, which gives you legal + permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that there + is no warranty for the free library. Also, if the library is modified + by someone else and passed on, the recipients should know that what + they have is not the original version, so that the original author's + reputation will not be affected by problems that might be introduced by + others. + + Finally, software patents pose a constant threat to the existence of + any free program. We wish to make sure that a company cannot + effectively restrict the users of a free program by obtaining a + restrictive license from a patent holder. Therefore, we insist that any + patent license obtained for a version of the library must be consistent + with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the ordinary + GNU General Public License. This license, the GNU Lesser General Public + License, applies to certain designated libraries, and is quite + different from the ordinary General Public License. We use this license + for certain libraries in order to permit linking those libraries into + non-free programs. + + When a program is linked with a library, whether statically or using a + shared library, the combination of the two is legally speaking a + combined work, a derivative of the original library. The ordinary + General Public License therefore permits such linking only if the + entire combination fits its criteria of freedom. The Lesser General + Public License permits more lax criteria for linking other code with + the library. + + We call this license the "Lesser" General Public License because it + does Less to protect the user's freedom than the ordinary General + Public License. It also provides other free software developers Less of + an advantage over competing non-free programs. These disadvantages are + the reason we use the ordinary General Public License for many + libraries. However, the Lesser license provides advantages in certain + special circumstances. + + For example, on rare occasions, there may be a special need to + encourage the widest possible use of a certain library, so that it + becomes a de-facto standard. To achieve this, non-free programs must be + allowed to use the library. A more frequent case is that a free library + does the same job as widely used non-free libraries. In this case, + there is little to gain by limiting the free library to free software + only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free + programs enables a greater number of people to use a large body of free + software. For example, permission to use the GNU C Library in non-free + programs enables many more people to use the whole GNU operating + system, as well as its variant, the GNU/Linux operating system. + + Although the Lesser General Public License is Less protective of the + users' freedom, it does ensure that the user of a program that is + linked with the Library has the freedom and the wherewithal to run that + program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, whereas the latter must + be combined with the library in order to run. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other + program which contains a notice placed by the copyright holder or other + authorized party saying it may be distributed under the terms of this + Lesser General Public License (also called "this License"). Each + licensee is addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work which + has been distributed under these terms. A "work based on the Library" + means either the Library or any derivative work under copyright law: + that is to say, a work containing the Library or a portion of it, + either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control + compilation and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the + Library (independent of the use of the Library in a tool for writing + it). Whether that is true depends on what the Library does and what the + program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the + notices that refer to this License and to the absence of any warranty; + and distribute a copy of this License along with the Library. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Library or any portion of + it, thus forming a work based on the Library, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + * a) The modified work must itself be a software library. + * b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + * c) You must cause the whole of the work to be licensed at no charge + to all third parties under the terms of this License. + * d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility is + invoked, then you must make a good faith effort to ensure that, in + the event an application does not supply such function or table, + the facility still operates, and performs whatever part of its + purpose remains meaningful. + (For example, a function in a library to compute square roots has a + purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square root + function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for that + copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of the + Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or derivative + of it, under Section 2) in object code or executable form under the + terms of Sections 1 and 2 above provided that you accompany it with the + complete corresponding machine-readable source code, which must be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange. + + If distribution of object code is made by offering access to copy from + a designated place, then offering equivalent access to copy the source + code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 5. A program that contains no derivative of any portion of the Library, + but is designed to work with the Library by being compiled or linked + with it, is called a "work that uses the Library". Such a work, in + isolation, is not a derivative work of the Library, and therefore falls + outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. Section + 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data structure + layouts and accessors, and small macros and small inline functions (ten + lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. + (Executables containing this object code plus portions of the Library + will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, whether + or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or link + a "work that uses the Library" with the Library to produce a work + containing portions of the Library, and distribute that work under + terms of your choice, provided that the terms permit modification of + the work for the customer's own use and reverse engineering for + debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + * a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + * b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + * c) Accompany the work with a written offer, valid for at least + three years, to give the same user the materials specified in + Subsection 6a, above, for a charge no more than the cost of + performing this distribution. + * d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + * e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the materials to be distributed need not include anything that is + normally distributed (in either source or binary form) with the major + components (compiler, kernel, and so on) of the operating system on + which the executable runs, unless that component itself accompanies the + executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise permitted, + and provided that you do these two things: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities. + This must be distributed under the terms of the Sections above. + * b) Give prominent notice with the combined library of the fact that + part of it is a work based on the Library, and explaining where to + find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute the + Library except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense, link with, or distribute the + Library is void, and will automatically terminate your rights under + this License. However, parties who have received copies, or rights, + from you under this License will not have their licenses terminated so + long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties with + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent license + would not permit royalty-free redistribution of the Library by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply, and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is implemented + by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Lesser General Public License from time to time. Such + new versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a license + version number, you may choose any version ever published by the Free + Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free Software + Foundation; we sometimes make exceptions for this. Our decision will be + guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse + of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH + YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of + the ordinary General Public License). + + To apply these terms, attach the following notices to the library. It + is safest to attach them to the start of each source file to most + effectively convey the exclusion of warranty; and each file should have + at least the "copyright" line and a pointer to where the full notice is + found. +one line to give the library's name and an idea of what it does. +Copyright (C) year name of author + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Also add information on how to contact you by electronic and paper + mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +signature of Ty Coon, 1 April 1990 +Ty Coon, President of Vice + + That's all there is to it! + + GNU Library General Public License Version 2 + + Version 2, June 1991 +Copyright (C) 1991 Free Software Foundation, Inc. +51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is +numbered 2 because it goes with version 2 of the ordinary GPL.] + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public Licenses + are intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some + specially designated Free Software Foundation software, and to any + other libraries whose authors decide to use it. You can use it for your + libraries, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid anyone + to deny you these rights or to ask you to surrender the rights. These + restrictions translate to certain responsibilities for you if you + distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis or + for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link a program with the library, you must provide complete + object files to the recipients so that they can relink them with the + library, after making changes to the library and recompiling it. And + you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright the + library, and (2) offer you this license which gives you legal + permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain that + everyone understands that there is no warranty for this free library. + If the library is modified by someone else and passed on, we want its + recipients to know that what they have is not the original version, so + that any problems introduced by others will not reflect on the original + authors' reputations. + + Finally, any free program is threatened constantly by software patents. + We wish to avoid the danger that companies distributing free software + will individually obtain patent licenses, thus in effect transforming + the program into proprietary software. To prevent this, we have made it + clear that any patent must be licensed for everyone's free use or not + licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary + GNU General Public License, which was designed for utility programs. + This license, the GNU Library General Public License, applies to + certain designated libraries. This license is quite different from the + ordinary one; be sure to read it in full, and don't assume that + anything in it is the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that + they blur the distinction we usually make between modifying or adding + to a program and simply using it. Linking a program with a library, + without changing the library, is in some sense simply using the + library, and is analogous to running a utility program or application + program. However, in a textual and legal sense, the linked executable + is a combined work, a derivative of the original library, and the + ordinary General Public License treats it as such. + + Because of this blurred distinction, using the ordinary General Public + License for libraries did not effectively promote software sharing, + because most developers did not use the libraries. We concluded that + weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the + users of those programs of all benefit from the free status of the + libraries themselves. This Library General Public License is intended + to permit developers of non-free programs to use free libraries, while + preserving your freedom as a user of such programs to change the free + libraries that are incorporated in them. (We have not seen how to + achieve this as regards changes in header files, but we have achieved + it as regards changes in the actual functions of the Library.) The hope + is that this will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, while the latter only + works together with the library. + + Note that it is possible for a library to be covered by the ordinary + General Public License rather than by this special one. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which + contains a notice placed by the copyright holder or other authorized + party saying it may be distributed under the terms of this Library + General Public License (also called "this License"). Each licensee is + addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work which + has been distributed under these terms. A "work based on the Library" + means either the Library or any derivative work under copyright law: + that is to say, a work containing the Library or a portion of it, + either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control + compilation and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the + Library (independent of the use of the Library in a tool for writing + it). Whether that is true depends on what the Library does and what the + program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the + notices that refer to this License and to the absence of any warranty; + and distribute a copy of this License along with the Library. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Library or any portion of + it, thus forming a work based on the Library, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + * a) The modified work must itself be a software library. + * b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + * c) You must cause the whole of the work to be licensed at no charge + to all third parties under the terms of this License. + * d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility is + invoked, then you must make a good faith effort to ensure that, in + the event an application does not supply such function or table, + the facility still operates, and performs whatever part of its + purpose remains meaningful. + (For example, a function in a library to compute square roots has a + purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square root + function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for that + copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of the + Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or derivative + of it, under Section 2) in object code or executable form under the + terms of Sections 1 and 2 above provided that you accompany it with the + complete corresponding machine-readable source code, which must be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange. + + If distribution of object code is made by offering access to copy from + a designated place, then offering equivalent access to copy the source + code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 5. A program that contains no derivative of any portion of the Library, + but is designed to work with the Library by being compiled or linked + with it, is called a "work that uses the Library". Such a work, in + isolation, is not a derivative work of the Library, and therefore falls + outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. Section + 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data structure + layouts and accessors, and small macros and small inline functions (ten + lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. + (Executables containing this object code plus portions of the Library + will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, whether + or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or link + a "work that uses the Library" with the Library to produce a work + containing portions of the Library, and distribute that work under + terms of your choice, provided that the terms permit modification of + the work for the customer's own use and reverse engineering for + debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + * a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + * b) Accompany the work with a written offer, valid for at least + three years, to give the same user the materials specified in + Subsection 6a, above, for a charge no more than the cost of + performing this distribution. + * c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + * d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the source code distributed need not include anything that is normally + distributed (in either source or binary form) with the major components + (compiler, kernel, and so on) of the operating system on which the + executable runs, unless that component itself accompanies the + executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise permitted, + and provided that you do these two things: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities. + This must be distributed under the terms of the Sections above. + * b) Give prominent notice with the combined library of the fact that + part of it is a work based on the Library, and explaining where to + find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute the + Library except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense, link with, or distribute the + Library is void, and will automatically terminate your rights under + this License. However, parties who have received copies, or rights, + from you under this License will not have their licenses terminated so + long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties to + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent license + would not permit royalty-free redistribution of the Library by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply, and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is implemented + by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Library General Public License from time to time. Such + new versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a license + version number, you may choose any version ever published by the Free + Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free Software + Foundation; we sometimes make exceptions for this. Our decision will be + guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse + of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH + YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of + the ordinary General Public License). + + To apply these terms, attach the following notices to the library. It + is safest to attach them to the start of each source file to most + effectively convey the exclusion of warranty; and each file should have + at least the "copyright" line and a pointer to where the full notice is + found. +one line to give the library's name and an idea of what it does. +Copyright (C) year name of author + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. + + Also add information on how to contact you by electronic and paper + mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +signature of Ty Coon, 1 April 1990 +Ty Coon, President of Vice + + That's all there is to it! + + GNU General Public License Version 3 + + Copyright © 2007 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + +Preamble + + The GNU General Public License is a free, copyleft license for software + and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains + free software for all its users. We, the Free Software Foundation, use + the GNU General Public License for most of our software; it applies + also to any other work released this way by its authors. You can apply + it to your programs, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for them if + you wish), that you receive source code or can get it if you want it, + that you can change the software or use pieces of it in new free + programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or + if you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must pass on to the recipients the same freedoms that + you received. You must make sure that they, too, receive or can get the + source code. And you must show them these terms so they know their + rights. + + Developers that use the GNU GPL protect your rights with two steps: (1) + assert copyright on the software, and (2) offer you this License giving + you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the + manufacturer can do so. This is fundamentally incompatible with the aim + of protecting users' freedom to change the software. The systematic + pattern of such abuse occurs in the area of products for individuals to + use, which is precisely where it is most unacceptable. Therefore, we + have designed this version of the GPL to prohibit the practice for + those products. If such problems arise substantially in other domains, + we stand ready to extend this provision to those domains in future + versions of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + “This License” refers to version 3 of the GNU General Public License. + + “Copyright” also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + “The Program” refers to any copyrightable work licensed under this + License. Each licensee is addressed as “you”. “Licensees” and + “recipients” may be individuals or organizations. + + To “modify” a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of + an exact copy. The resulting work is called a “modified version” of the + earlier work or a work “based on” the earlier work. + + A “covered work” means either the unmodified Program or a work based on + the Program. + + To “propagate” a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To “convey” a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays “Appropriate Legal Notices” to + the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If the + interface presents a list of user commands or options, such as a menu, + a prominent item in the list meets this criterion. + + 1. Source Code. + + The “source code” for a work means the preferred form of the work for + making modifications to it. “Object code” means any non-source form of + a work. + + A “Standard Interface” means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that is + widely used among developers working in that language. + + The “System Libraries” of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A “Major + Component”, in this context, means a major essential component (kernel, + window system, and so on) of the specific operating system (if any) on + which the executable work runs, or a compiler used to produce the work, + or an object code interpreter used to run it. + + The “Corresponding Source” for a work in object code form means all the + source code needed to generate, install, and (for an executable work) + run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same + work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not convey, + without conditions so long as your license otherwise remains in force. + You may convey covered works to others for the sole purpose of having + them make modifications exclusively for you, or provide you with + facilities for running those works, provided that you comply with the + terms of this License in conveying all material for which you do not + control copyright. Those thus making or running the covered works for + you must do so exclusively on your behalf, under your direction and + control, on terms that prohibit them from making any copies of your + copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under the + conditions stated below. Sublicensing is not allowed; section 10 makes + it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar + laws prohibiting or restricting circumvention of such measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such + circumvention is effected by exercising rights under this License with + respect to the covered work, and you disclaim any intention to limit + operation or modification of the work as a means of enforcing, against + the work's users, your or third parties' legal rights to forbid + circumvention of technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, and + you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the terms + of section 4, provided that you also meet all of these conditions: + * a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + * b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to “keep + intact all notices”. + * c) You must license the entire work, as a whole, under this License + to anyone who comes into possession of a copy. This License will + therefore apply, along with any applicable section 7 additional + terms, to the whole of the work, and all its parts, regardless of + how they are packaged. This License gives no permission to license + the work in any other way, but it does not invalidate such + permission if you have separately received it. + * d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your work + need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, in + or on a volume of a storage or distribution medium, is called an + “aggregate” if the compilation and its resulting copyright are not used + to limit the access or legal rights of the compilation's users beyond + what the individual works permit. Inclusion of a covered work in an + aggregate does not cause this License to apply to the other parts of + the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms of + sections 4 and 5, provided that you also convey the machine-readable + Corresponding Source under the terms of this License, in one of these + ways: + * a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium customarily + used for software interchange. + * b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as long + as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding Source + from a network server at no charge. + * c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This alternative + is allowed only occasionally and noncommercially, and only if you + received the object code with such an offer, in accord with + subsection 6b. + * d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + * e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be included + in conveying the object code work. + + A “User Product” is either (1) a “consumer product”, which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is a + consumer product, doubtful cases shall be resolved in favor of + coverage. For a particular product received by a particular user, + “normally used” refers to a typical or common use of that class of + product, regardless of the status of the particular user or of the way + in which the particular user actually uses, or expects or is expected + to use, the product. A product is a consumer product regardless of + whether the product has substantial commercial, industrial or + non-consumer uses, unless such uses represent the only significant mode + of use of the product. + + “Installation Information” for a User Product means any methods, + procedures, authorization keys, or other information required to + install and execute modified versions of a covered work in that User + Product from a modified version of its Corresponding Source. The + information must suffice to ensure that the continued functioning of + the modified object code is in no case prevented or interfered with + solely because modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied by + the Installation Information. But this requirement does not apply if + neither you nor any third party retains the ability to install modified + object code on the User Product (for example, the work has been + installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or + updates for a work that has been modified or installed by the + recipient, or for the User Product in which it has been modified or + installed. Access to a network may be denied when the modification + itself materially and adversely affects the operation of the network or + violates the rules and protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + “Additional permissions” are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option remove + any additional permissions from that copy, or from any part of it. + (Additional permissions may be written to require their own removal in + certain cases when you modify the work.) You may place additional + permissions on material, added by you to a covered work, for which you + have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders + of that material) supplement the terms of this License with terms: + * a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + * b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + * c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + * d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + * e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + * f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + + All other non-permissive additional terms are considered “further + restrictions” within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains a + further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the additional + terms that apply to those files, or a notice indicating where to find + the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; the + above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your license + from a particular copyright holder is reinstated (a) provisionally, + unless and until the copyright holder explicitly and finally terminates + your license, and (b) permanently, if the copyright holder fails to + notify you of the violation by some reasonable means prior to 60 days + after the cessation. + + Moreover, your license from a particular copyright holder is reinstated + permanently if the copyright holder notifies you of the violation by + some reasonable means, this is the first time you have received notice + of violation of this License (for any work) from that copyright holder, + and you cure the violation prior to 30 days after your receipt of the + notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or run + a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission to + receive a copy likewise does not require acceptance. However, nothing + other than this License grants you permission to propagate or modify + any covered work. These actions infringe copyright if you do not accept + this License. Therefore, by modifying or propagating a covered work, + you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An “entity transaction” is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that transaction + who receives a copy of the work also receives whatever licenses to the + work the party's predecessor in interest had or could give under the + previous paragraph, plus a right to possession of the Corresponding + Source of the work from the predecessor in interest, if the predecessor + has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may not + impose a license fee, royalty, or other charge for exercise of rights + granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A “contributor” is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's “contributor version”. + + A contributor's “essential patent claims” are all patent claims owned + or controlled by the contributor, whether already acquired or hereafter + acquired, that would be infringed by some manner, permitted by this + License, of making, using, or selling its contributor version, but do + not include claims that would be infringed only as a consequence of + further modification of the contributor version. For purposes of this + definition, “control” includes the right to grant patent sublicenses in + a manner consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a “patent license” is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To “grant” such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone to + copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. “Knowingly relying” means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is “discriminatory” if it does not include within the + scope of its coverage, prohibits the exercise of, or is conditioned on + the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you + are a party to an arrangement with a third party that is in the + business of distributing software, under which you make payment to the + third party based on the extent of your activity of conveying the work, + and under which the third party grants, to any of the parties who would + receive the covered work from you, a discriminatory patent license (a) + in connection with copies of the covered work conveyed by you (or + copies made from those copies), or (b) primarily for and in connection + with specific products or compilations that contain the covered work, + unless you entered into that arrangement, or that patent license was + granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting any + implied license or other defenses to infringement that may otherwise be + available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence + you may not convey it at all. For example, if you agree to terms that + obligate you to collect a royalty for further conveying from those to + whom you convey the Program, the only way you could satisfy both those + terms and this License would be to refrain entirely from conveying the + Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in + detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License “or any later version” applies to it, you have the option of + following the terms and conditions either of that numbered version or + of any later version published by the Free Software Foundation. If the + Program does not specify a version number of the GNU General Public + License, you may choose any version ever published by the Free Software + Foundation. + + If the Program specifies that a proxy can decide which future versions + of the GNU General Public License can be used, that proxy's public + statement of acceptance of a version permanently authorizes you to + choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE + OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR + CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, + INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES + ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT + NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES + SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO + OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively state + the exclusion of warranty; and each file should have at least the + “copyright” line and a pointer to where the full notice is found. + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper + mail. + + If the program does terminal interaction, make it output a short notice + like this when it starts in an interactive mode: + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, your + program's commands might be different; for a GUI interface, you would + use an “about box”. + + You should also get your employer (if you work as a programmer) or + school, if any, to sign a “copyright disclaimer” for the program, if + necessary. For more information on this, and how to apply and follow + the GNU GPL, see . + + The GNU General Public License does not permit incorporating your + program into proprietary programs. If your program is a subroutine + library, you may consider it more useful to permit linking proprietary + applications with the library. If this is what you want to do, use the + GNU Lesser General Public License instead of this License. But first, + please read . + + GNU General Public License Version 2 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public License is + intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. This + General Public License applies to most of the Free Software + Foundation's software and to any other program whose authors commit to + using it. (Some other Free Software Foundation software is covered by + the GNU Lesser General Public License instead.) You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid anyone + to deny you these rights or to ask you to surrender the rights. These + restrictions translate to certain responsibilities for you if you + distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must give the recipients all the rights that you + have. You must make sure that they, too, receive or can get the source + code. And you must show them these terms so they know their rights. + + We protect your rights with two steps: (1) copyright the software, and + (2) offer you this license which gives you legal permission to copy, + distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain + that everyone understands that there is no warranty for this free + software. If the software is modified by someone else and passed on, we + want its recipients to know that what they have is not the original, so + that any problems introduced by others will not reflect on the original + authors' reputations. + + Finally, any free program is threatened constantly by software patents. + We wish to avoid the danger that redistributors of a free program will + individually obtain patent licenses, in effect making the program + proprietary. To prevent this, we have made it clear that any patent + must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and + modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains a + notice placed by the copyright holder saying it may be distributed + under the terms of this General Public License. The "Program", below, + refers to any such program or work, and a "work based on the Program" + means either the Program or any derivative work under copyright law: + that is to say, a work containing the Program or a portion of it, + either verbatim or with modifications and/or translated into another + language. (Hereinafter, translation is included without limitation in + the term "modification".) Each licensee is addressed as "you". + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + the Program is not restricted, and the output from the Program is + covered only if its contents constitute a work based on the Program + (independent of having been made by running the Program). Whether that + is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's source + code as you receive it, in any medium, provided that you conspicuously + and appropriately publish on each copy an appropriate copyright notice + and disclaimer of warranty; keep intact all the notices that refer to + this License and to the absence of any warranty; and give any other + recipients of the Program a copy of this License along with the + Program. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion of + it, thus forming a work based on the Program, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + b) You must cause any work that you distribute or publish, that + in whole or in part contains or is derived from the Program or + any part thereof, to be licensed as a whole at no charge to all + third parties under the terms of this License. + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you + provide a warranty) and that users may redistribute the program + under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is + interactive but does not normally print such an announcement, + your work based on the Program is not required to print an + announcement.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Program, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Program, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Program. + + In addition, mere aggregation of another work not based on the Program + with the Program (or with a work based on the Program) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, + under Section 2) in object code or executable form under the terms of + Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of + Sections 1 and 2 above on a medium customarily used for software + interchange; or, + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a + medium customarily used for software interchange; or, + c) Accompany it with the information you received as to the + offer to distribute corresponding source code. (This alternative + is allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + + The source code for a work means the preferred form of the work for + making modifications to it. For an executable work, complete source + code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to control + compilation and installation of the executable. However, as a special + exception, the source code distributed need not include anything that + is normally distributed (in either source or binary form) with the + major components (compiler, kernel, and so on) of the operating system + on which the executable runs, unless that component itself accompanies + the executable. + + If distribution of executable or object code is made by offering access + to copy from a designated place, then offering equivalent access to + copy the source code from the same place counts as distribution of the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program + except as expressly provided under this License. Any attempt otherwise + to copy, modify, sublicense or distribute the Program is void, and will + automatically terminate your rights under this License. However, + parties who have received copies, or rights, from you under this + License will not have their licenses terminated so long as such parties + remain in full compliance. + + 5. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Program or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Program (or any work based on the + Program), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the + Program), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Program subject to + these terms and conditions. You may not impose any further restrictions + on the recipients' exercise of the rights granted herein. You are not + responsible for enforcing compliance by third parties to this License. + + 7. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Program at all. For example, if a patent license + would not permit royalty-free redistribution of the Program by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Program. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system, which is + implemented by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Program under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions + of the General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail + to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Program does not specify a version + number of this License, you may choose any version ever published by + the Free Software Foundation. + + 10. If you wish to incorporate parts of the Program into other free + programs whose distribution conditions are different, write to the + author to ask for permission. For software which is copyrighted by the + Free Software Foundation, write to the Free Software Foundation; we + sometimes make exceptions for this. Our decision will be guided by the + two goals of preserving the free status of all derivatives of our free + software and of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH + YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively convey + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. +one line to give the program's name and an idea of what it does. +Copyright (C) yyyy name of author + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + Also add information on how to contact you by electronic and paper + mail. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome +to redistribute it under certain conditions; type `show c' +for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, the + commands you use may be called something other than `show w' and `show + c'; they could even be mouse-clicks or menu items--whatever suits your + program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright +interest in the program `Gnomovision' +(which makes passes at compilers) written +by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice + + This General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU + Lesser General Public License instead of this License. + + Mozilla Public License Version 1.1 + +1. Definitions. + + 1.0.1. "Commercial Use" + means distribution or otherwise making the Covered Code + available to a third party. + + 1.1. "Contributor" + means each entity that creates or contributes to the creation of + Modifications. + + 1.2. "Contributor Version" + means the combination of the Original Code, prior Modifications + used by a Contributor, and the Modifications made by that + particular Contributor. + + 1.3. "Covered Code" + means the Original Code or Modifications or the combination of + the Original Code and Modifications, in each case including + portions thereof. + + 1.4. "Electronic Distribution Mechanism" + means a mechanism generally accepted in the software development + community for the electronic transfer of data. + + 1.5. "Executable" + means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" + means the individual or entity identified as the Initial + Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" + means a work which combines Covered Code or portions thereof + with code not governed by the terms of this License. + + 1.8. "License" + means this document. + + 1.8.1. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" + means any addition to or deletion from the substance or + structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of + files, a Modification is: + + a. + Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + b. + Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" + means Source Code of computer software code which is described + in the Source Code notice required by Exhibit A as Original + Code, and which, at the time of its release under this License + is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" + means any patent claim(s), now owned or hereafter acquired, + including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.11. "Source Code" + means the preferred form of the Covered Code for making + modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or + another well known, available Covered Code of the Contributor's + choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software + is widely available for no charge. + + 1.12. "You" (or "Your") + means an individual or a legal entity exercising rights under, + and complying with all of the terms of, this License or a future + version of this License issued under Section 6.1. For legal + entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes + of this definition, "control" means (a) the power, direct or + indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + a. under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer to use, reproduce, modify, display, + perform, sublicense and distribute the Original Code (or portions + thereof) with or without Modifications, and/or as part of a Larger + Work; and + b. under Patents Claims infringed by the making, using or selling of + Original Code, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Code (or + portions thereof). + c. the licenses granted in this Section 2.1 (a) and (b) are effective + on the date Initial Developer first distributes Original Code under + the terms of this License. + d. Notwithstanding Section 2.1 (b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused by: + i) the modification of the Original Code or ii) the combination of + the Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + a. under intellectual property rights (other than patent or trademark) + Licensable by Contributor, to use, reproduce, modify, display, + perform, sublicense and distribute the Modifications created by + such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of + a Larger Work; and + b. under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or + portions thereof); and 2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions of such + combination). + c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective + on the date Contributor first makes Commercial Use of the Covered + Code. + d. Notwithstanding Section 2.2 (b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; 3) + for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made by + that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be distributed + only under the terms of this License or a future version of this + License released under Section 6.1, and You must include a copy of this + License with every copy of the Source Code You distribute. You may not + offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' + rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that the + Modification is derived, directly or indirectly, from Original Code + provided by the Initial Developer and including the name of the Initial + Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims + + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights granted + by such Contributor under Sections 2.1 or 2.2, Contributor must include + a text file with the Source Code distribution titled "LEGAL" which + describes the claim and the party making the claim in sufficient detail + that a recipient will know whom to contact. If Contributor obtains such + knowledge after the Modification is made available as described in + Section 3.2, Contributor shall promptly modify the LEGAL file in all + copies Contributor makes available thereafter and shall take other + steps (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered Code + that new knowledge has been obtained. + + (b) Contributor APIs + + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which are + reasonably necessary to implement that API, Contributor must also + include this information in the legal file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section + 3.4 (a) above, Contributor believes that Contributor's Modifications + are Contributor's original creation(s) and/or Contributor has + sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely to + look for such a notice. If You created one or more Modification(s) You + may add your name as a Contributor to the notice described in Exhibit + A. You must also duplicate this License in any documentation for the + Source Code where You describe recipients' rights or ownership rights + relating to Covered Code. You may choose to offer, and to charge a fee + for, warranty, support, indemnity or liability obligations to one or + more recipients of Covered Code. However, You may do so only on Your + own behalf, and not on behalf of the Initial Developer or any + Contributor. You must make it absolutely clear than any such warranty, + support, indemnity or liability obligation is offered by You alone, and + You hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or such + Contributor as a result of warranty, support, indemnity or liability + terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the + requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for + that Covered Code, and if You include a notice stating that the Source + Code version of the Covered Code is available under the terms of this + License, including a description of how and where You have fulfilled + the obligations of Section 3.2. The notice must be conspicuously + included in any notice in an Executable version, related documentation + or collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered Code + or ownership rights under a license of Your choice, which may contain + terms different from this License, provided that You are in compliance + with the terms of this License and that the license for the Executable + version does not attempt to limit or alter the recipient's rights in + the Source Code version from the rights set forth in this License. If + You distribute the Executable version under a different license You + must make it absolutely clear that any terms which differ from this + License are offered by You alone, not by the Initial Developer or any + Contributor. You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer + or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute, + judicial order, or regulation then You must: (a) comply with the terms + of this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be included + in the legal file described in Section 3.4 and must be included with + all distributions of the Source Code. Except to the extent prohibited + by statute or regulation, such description must be sufficiently + detailed for a recipient of ordinary skill to be able to understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions + + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version will + be given a distinguishing version number. + + 6.2. Effect of New Versions + + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works + + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that the + phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or + any confusingly similar phrase do not appear in your license (except to + note that your license differs from this License) and (b) otherwise + make it clear that Your version of the license contains terms which + differ from the Mozilla Public License and Netscape Public License. + (Filling in the name of the Initial Developer, Original Code or + Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.) + +7. Disclaimer of warranty + + Covered code is provided under this license on an "as is" basis, + without warranty of any kind, either expressed or implied, including, + without limitation, warranties that the covered code is free of + defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the covered code + is with you. Should any covered code prove defective in any respect, + you (not the initial developer or any other contributor) assume the + cost of any necessary servicing, repair or correction. This disclaimer + of warranty constitutes an essential part of this license. No use of + any covered code is authorized hereunder except under this disclaimer. + +8. Termination + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declaratory judgment actions) against Initial + Developer or a Contributor (the Initial Developer or Contributor + against whom You file such action is referred to as "Participant") + alleging that: + a. such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate + prospectively, unless if within 60 days after receipt of notice You + either: (i) agree in writing to pay Participant a mutually + agreeable reasonable royalty for Your past and future use of + Modifications made by such Participant, or (ii) withdraw Your + litigation claim with respect to the Contributor Version against + such Participant. If within 60 days of notice, a reasonable royalty + and payment arrangement are not mutually agreed upon in writing by + the parties or the litigation claim is not withdrawn, the rights + granted by Participant to You under Sections 2.1 and/or 2.2 + automatically terminate at the expiration of the 60 day notice + period specified above. + b. any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, + then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first + made, used, sold, distributed, or had made, Modifications made by + that Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. Limitation of liability + + Under no circumstances and under no legal theory, whether tort + (including negligence), contract, or otherwise, shall you, the initial + developer, any other contributor, or any distributor of covered code, + or any supplier of any of such parties, be liable to any person for any + indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all other + commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of + liability shall not apply to liability for death or personal injury + resulting from such party's negligence to the extent applicable law + prohibits such limitation. Some jurisdictions do not allow the + exclusion or limitation of incidental or consequential damages, so this + exclusion and limitation may not apply to you. + +10. U.S. government end users + + The Covered Code is a "commercial item," as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" + and "commercial computer software documentation," as such terms are + used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 + and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. + Government End Users acquire Covered Code with only those rights set + forth herein. + +11. Miscellaneous + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if any, + provides otherwise), excluding its conflict-of-law provisions. With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in the United States of + America, any litigation relating to this License shall be subject to + the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with + the losing party responsible for costs, including without limitation, + court costs and reasonable attorneys' fees and expenses. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any law or + regulation which provides that the language of a contract shall be + construed against the drafter shall not apply to this License. + +12. Responsibility for claims + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. Multiple-licensed code + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the MPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +Exhibit A - Mozilla Public License. + +"The contents of this file are subject to the Mozilla Public License +Version 1.1 (the "License"); you may not use this file except in +compliance with the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" +basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +License for the specific language governing rights and limitations +under the License. + +The Original Code is ______________________________________. + +The Initial Developer of the Original Code is ________________________. +Portions created by ______________________ are Copyright (C) ______ +_______________________. All Rights Reserved. + +Contributor(s): ______________________________________. + +Alternatively, the contents of this file may be used under the terms +of the _____ license (the "[___] License"), in which case the +provisions of [______] License are applicable instead of those +above. If you wish to allow use of your version of this file only +under the terms of the [____] License and not to allow others to use +your version of this file under the MPL, indicate your decision by +deleting the provisions above and replace them with the notice and +other provisions required by the [___] License. If you do not delete +the provisions above, a recipient may use your version of this file +under either the MPL or the [___] License." + + NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications. + + Mozilla Public License Version 2.0 + +1. Definitions + + 1.1. “Contributor” + means each individual or legal entity that creates, contributes + to the creation of, or owns Covered Software. + + 1.2. “Contributor Version” + means the combination of the Contributions of others (if any) + used by a Contributor and that particular Contributor’s + Contribution. + + 1.3. “Contribution” + means Covered Software of a particular Contributor. + + 1.4. “Covered Software” + means Source Code Form to which the initial Contributor has + attached the notice in Exhibit A, the Executable Form of such + Source Code Form, and Modifications of such Source Code Form, in + each case including portions thereof. + + 1.5. “Incompatible With Secondary Licenses” + means + + a. + that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + b. + that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms + of a Secondary License. + + 1.6. “Executable Form” + means any form of the work other than Source Code Form. + + 1.7. “Larger Work” + means a work that combines Covered Software with other material, + in a separate file or files, that is not Covered Software. + + 1.8. “License” + means this document. + + 1.9. “Licensable” + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any + and all of the rights conveyed by this License. + + 1.10. “Modifications” + means any of the following: + + a. + any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; + or + b. + any new file in Source Code Form that contains any Covered + Software. + + 1.11. “Patent Claims” of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, + having made, import, or transfer of either its Contributions or + its Contributor Version. + + 1.12. “Secondary License” + means either the GNU General Public License, Version 2.0, the + GNU Lesser General Public License, Version 2.1, the GNU Affero + General Public License, Version 3.0, or any later versions of + those licenses. + + 1.13. “Source Code Form” + means the form of the work preferred for making modifications. + + 1.14. “You” (or “Your”) + means an individual or a legal entity exercising rights under + this License. For legal entities, “You” includes any entity that + controls, is controlled by, or is under common control with You. + For purposes of this definition, “control” means (a) the power, + direct or indirect, to cause the direction or management of such + entity, whether by contract or otherwise, or (b) ownership of + more than fifty percent (50%) of the outstanding shares or + beneficial ownership of such entity. + +2. License Grants and Conditions + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, + or as part of a Larger Work; and + b. under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor + first distributes such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted + under this License. No additional rights or licenses will be implied + from the distribution or licensing of Covered Software under this + License. Notwithstanding Section 2.1(b) above, no patent license is + granted by a Contributor: + a. for any code that a Contributor has removed from Covered Software; + or + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its + Contributor Version); or + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. + + This License does not grant any rights in the trademarks, service + marks, or logos of any Contributor (except as may be necessary to + comply with the notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License + (if permitted under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights + to grant the rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. + + 2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted + in Section 2.1. + +3. Responsibilities + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients’ rights in the Source Code + Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + a. such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients + of the Executable Form how they can obtain a copy of such Source + Code Form by reasonable means in a timely manner, at a charge no + more than the cost of distribution to the recipient; and + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients’ rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and + the Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, + or limitations of liability) contained within the Source Code Form of + the Covered Software, except that You may alter any license notices to + the extent required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered + by You alone, and You hereby agree to indemnify every Contributor for + any liability incurred by such Contributor as a result of warranty, + support, indemnity or liability terms You offer. You may include + additional disclaimers of warranty and limitations of liability + specific to any jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Software due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be placed in a text file included with all distributions of the + Covered Software under this License. Except to the extent prohibited by + statute or regulation, such description must be sufficiently detailed + for a recipient of ordinary skill to be able to understand it. + +5. Termination + + 5.1. The rights granted under this License will terminate automatically + if You fail to comply with any of its terms. However, if You become + compliant, then the rights granted under this License from a particular + Contributor are reinstated (a) provisionally, unless and until such + Contributor explicitly and finally terminates Your grants, and (b) on + an ongoing basis, if such Contributor fails to notify You of the + non-compliance by some reasonable means prior to 60 days after You have + come back into compliance. Moreover, Your grants from a particular + Contributor are reinstated on an ongoing basis if such Contributor + notifies You of the non-compliance by some reasonable means, this is + the first time You have received notice of non-compliance with this + License from such Contributor, and You become compliant prior to 30 + days after Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a + patent infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under + Section 2.1 of this License shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or Your distributors under this + License prior to termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is + free of defects, merchantable, fit for a particular purpose or + non-infringing. The entire risk as to the quality and performance of + the Covered Software is with You. Should any Covered Software prove + defective in any respect, You (not any Contributor) assume the cost of + any necessary servicing, repair, or correction. This disclaimer of + warranty constitutes an essential part of this License. No use of any + Covered Software is authorized under this License except under this + disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort + (including negligence), contract, or otherwise, shall any Contributor, + or anyone who distributes Covered Software as permitted above, be + liable to You for any direct, indirect, special, incidental, or + consequential damages of any character including, without limitation, + damages for lost profits, loss of goodwill, work stoppage, computer + failure or malfunction, or any and all other commercial damages or + losses, even if such party shall have been informed of the possibility + of such damages. This limitation of liability shall not apply to + liability for death or personal injury resulting from such party’s + negligence to the extent applicable law prohibits such limitation. Some + jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply + to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the + courts of a jurisdiction where the defendant maintains its principal + place of business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. + Nothing in this Section shall prevent a party’s ability to bring + cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides + that the language of a contract shall be construed against the drafter + shall not be used to construe this License against a Contributor. + +10. Versions of the License + + 10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in + Section 10.3, no one other than the license steward has the right to + modify or publish new versions of this License. Each version will be + given a distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered + Software, or under the terms of any subsequent version published by the + license steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses + + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to look + for such a notice. + + You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible With Secondary Licenses”, as + defined by the Mozilla Public License, v. 2.0. + + SIL Open Font License Version 1.1 – 26 February 2007 + + PREAMBLE The goals of the Open Font License (OFL) are to stimulate + worldwide development of collaborative font projects, to support the + font creation efforts of academic and linguistic communities, and to + provide a free and open framework in which fonts may be shared and + improved in partnership with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that the font + names of derivative works are changed. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply to + any document created using the fonts or their derivatives. + + DEFINITIONS "Font Software" refers to the set of files released by the + Copyright Holder(s) under this license and clearly marked as such. This + may include source files, build scripts and documentation. + + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + + "Original Version" refers to the collection of Font Software components + as distributed by the Copyright Holder(s). + + "Modified Version" refers to any derivative made by adding to, + deleting, or substituting – in part or in whole -- any of the + components of the Original Version, by changing formats or by porting + the Font Software to a new environment. + + "Author" refers to any designer, engineer, programmer, technical writer + or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS Permission is hereby granted, free of charge, + to any person obtaining a copy of the Font Software, to use, study, + copy, merge, embed, modify, redistribute, and sell modified and + unmodified copies of the Font Software, subject to the following + conditions: + + 1) Neither the Font Software nor any of its individual components, in + Original or Modified Versions, may be sold by itself. + + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or in + the appropriate machine-readable metadata fields within text or binary + files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the + corresponding Copyright Holder. This restriction only applies to the + primary font name as presented to the users. + + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, must + be distributed entirely under this license, and must not be distributed + under any other license. The requirement for fonts to remain under this + license does not apply to any document created using the Font Software. + + TERMINATION This license becomes null and void if any of the above + conditions are not met. + + DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO + EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Apache License + + Version 2.0, January 2004 + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by the + copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all other + entities that control, are controlled by, or are under common control + with that entity. For the purposes of this definition, "control" means + (i) the power, direct or indirect, to cause the direction or management + of such entity, whether by contract or otherwise, or (ii) ownership of + fifty percent (50%) or more of the outstanding shares, or (iii) + beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity exercising + permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but not + limited to compiled object code, generated documentation, and + conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or Object + form, made available under the License, as indicated by a copyright + notice that is included in or attached to the work (an example is + provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including the + original version of the Work and any modifications or additions to that + Work or Derivative Works thereof, that is intentionally submitted to + Licensor for inclusion in the Work by the copyright owner or by an + individual or Legal Entity authorized to submit on behalf of the + copyright owner. For the purposes of this definition, "submitted" means + any form of electronic, verbal, or written communication sent to the + Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity on + behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, publicly + display, publicly perform, sublicense, and distribute the Work and such + Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this + License, each Contributor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as stated + in this section) patent license to make, have made, use, offer to sell, + sell, import, and otherwise transfer the Work, where such license + applies only to those patent claims licensable by such Contributor that + are necessarily infringed by their Contribution(s) alone or by + combination of their Contribution(s) with the Work to which such + Contribution(s) was submitted. If You institute patent litigation + against any entity (including a cross-claim or counterclaim in a + lawsuit) alleging that the Work or a Contribution incorporated within + the Work constitutes direct or contributory patent infringement, then + any patent licenses granted to You under this License for that Work + shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work + or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You meet the + following conditions: + 1. You must give any other recipients of the Work or Derivative Works + a copy of this License; and + 2. You must cause any modified files to carry prominent notices + stating that You changed the files; and + 3. You must retain, in the Source form of any Derivative Works that + You distribute, all copyright, patent, trademark, and attribution + notices from the Source form of the Work, excluding those notices + that do not pertain to any part of the Derivative Works; and + 4. If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained within + such NOTICE file, excluding those notices that do not pertain to + any part of the Derivative Works, in at least one of the following + places: within a NOTICE text file distributed as part of the + Derivative Works; within the Source form or documentation, if + provided along with the Derivative Works; or, within a display + generated by the Derivative Works, if and wherever such third-party + notices normally appear. The contents of the NOTICE file are for + informational purposes only and do not modify the License. You may + add Your own attribution notices within Derivative Works that You + distribute, alongside or as an addendum to the NOTICE text from the + Work, provided that such additional attribution notices cannot be + construed as modifying the License. You may add Your own copyright + statement to Your modifications and may provide additional or + different license terms and conditions for use, reproduction, or + distribution of Your modifications, or for any such Derivative + Works as a whole, provided Your use, reproduction, and distribution + of the Work otherwise complies with the conditions stated in this + License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work by + You to the Licensor shall be under the terms and conditions of this + License, without any additional terms or conditions. Notwithstanding + the above, nothing herein shall supersede or modify the terms of any + separate license agreement you may have executed with Licensor + regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed + to in writing, Licensor provides the Work (and each Contributor + provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied, including, without + limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, + MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely + responsible for determining the appropriateness of using or + redistributing the Work and assume any risks associated with Your + exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, unless + required by applicable law (such as deliberate and grossly negligent + acts) or agreed to in writing, shall any Contributor be liable to You + for damages, including any direct, indirect, special, incidental, or + consequential damages of any character arising as a result of this + License or out of the use or inability to use the Work (including but + not limited to damages for loss of goodwill, work stoppage, computer + failure or malfunction, or any and all other commercial damages or + losses), even if such Contributor has been advised of the possibility + of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the + Work or Derivative Works thereof, You may choose to offer, and charge a + fee for, acceptance of support, warranty, indemnity, or other liability + obligations and/or rights consistent with this License. However, in + accepting such obligations, You may act only on Your own behalf and on + Your sole responsibility, not on behalf of any other Contributor, and + only if You agree to indemnify, defend, and hold each Contributor + harmless for any liability incurred by, or claims asserted against, + such Contributor by reason of your accepting any such warranty or + additional liability. + + END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "" replaced + with your own identifying information. (Don't include the brackets!) + The text should be enclosed in the appropriate comment syntax for the + file format. We also recommend that a file or class name and + description of purpose be included on the same "printed page" as the + copyright notice for easier identification within third-party archives. + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + The LaTeX Project Public License + +LPPL Version 1.3c 2008-05-04 + +Copyright 1999 2002-2008 LaTeX3 Project + Everyone is allowed to distribute verbatim copies of this + license document, but modification of it is not allowed. + + +PREAMBLE +======== + +The LaTeX Project Public License (LPPL) is the primary license under +which the LaTeX kernel and the base LaTeX packages are distributed. + +You may use this license for any work of which you hold the copyright +and which you wish to distribute. This license may be particularly +suitable if your work is TeX-related (such as a LaTeX package), but +it is written in such a way that you can use it even if your work is +unrelated to TeX. + +The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE', +below, gives instructions, examples, and recommendations for authors +who are considering distributing their works under this license. + +This license gives conditions under which a work may be distributed +and modified, as well as conditions under which modified versions of +that work may be distributed. + +We, the LaTeX3 Project, believe that the conditions below give you +the freedom to make and distribute modified versions of your work +that conform with whatever technical specifications you wish while +maintaining the availability, integrity, and reliability of +that work. If you do not see how to achieve your goal while +meeting these conditions, then read the document `cfgguide.tex' +and `modguide.tex' in the base LaTeX distribution for suggestions. + + +DEFINITIONS +=========== + +In this license document the following terms are used: + + `Work' + Any work being distributed under this License. + + `Derived Work' + Any work that under any applicable law is derived from the Work. + + `Modification' + Any procedure that produces a Derived Work under any applicable + law -- for example, the production of a file containing an + original file associated with the Work or a significant portion of + such a file, either verbatim or with modifications and/or + translated into another language. + + `Modify' + To apply any procedure that produces a Derived Work under any + applicable law. + + `Distribution' + Making copies of the Work available from one person to another, in + whole or in part. Distribution includes (but is not limited to) + making any electronic components of the Work accessible by + file transfer protocols such as FTP or HTTP or by shared file + systems such as Sun's Network File System (NFS). + + `Compiled Work' + A version of the Work that has been processed into a form where it + is directly usable on a computer system. This processing may + include using installation facilities provided by the Work, + transformations of the Work, copying of components of the Work, or + other activities. Note that modification of any installation + facilities provided by the Work constitutes modification of the Work. + + `Current Maintainer' + A person or persons nominated as such within the Work. If there is + no such explicit nomination then it is the `Copyright Holder' under + any applicable law. + + `Base Interpreter' + A program or process that is normally needed for running or + interpreting a part or the whole of the Work. + + A Base Interpreter may depend on external components but these + are not considered part of the Base Interpreter provided that each + external component clearly identifies itself whenever it is used + interactively. Unless explicitly specified when applying the + license to the Work, the only applicable Base Interpreter is a + `LaTeX-Format' or in the case of files belonging to the + `LaTeX-format' a program implementing the `TeX language'. + + + +CONDITIONS ON DISTRIBUTION AND MODIFICATION +=========================================== + +1. Activities other than distribution and/or modification of the Work +are not covered by this license; they are outside its scope. In +particular, the act of running the Work is not restricted and no +requirements are made concerning any offers of support for the Work. + +2. You may distribute a complete, unmodified copy of the Work as you +received it. Distribution of only part of the Work is considered +modification of the Work, and no right to distribute such a Derived +Work may be assumed under the terms of this clause. + +3. You may distribute a Compiled Work that has been generated from a +complete, unmodified copy of the Work as distributed under Clause 2 +above, as long as that Compiled Work is distributed in such a way that +the recipients may install the Compiled Work on their system exactly +as it would have been installed if they generated a Compiled Work +directly from the Work. + +4. If you are the Current Maintainer of the Work, you may, without +restriction, modify the Work, thus creating a Derived Work. You may +also distribute the Derived Work without restriction, including +Compiled Works generated from the Derived Work. Derived Works +distributed in this manner by the Current Maintainer are considered to +be updated versions of the Work. + +5. If you are not the Current Maintainer of the Work, you may modify +your copy of the Work, thus creating a Derived Work based on the Work, +and compile this Derived Work, thus creating a Compiled Work based on +the Derived Work. + +6. If you are not the Current Maintainer of the Work, you may +distribute a Derived Work provided the following conditions are met +for every component of the Work unless that component clearly states +in the copyright notice that it is exempt from that condition. Only +the Current Maintainer is allowed to add such statements of exemption +to a component of the Work. + + a. If a component of this Derived Work can be a direct replacement + for a component of the Work when that component is used with the + Base Interpreter, then, wherever this component of the Work + identifies itself to the user when used interactively with that + Base Interpreter, the replacement component of this Derived Work + clearly and unambiguously identifies itself as a modified version + of this component to the user when used interactively with that + Base Interpreter. + + b. Every component of the Derived Work contains prominent notices + detailing the nature of the changes to that component, or a + prominent reference to another file that is distributed as part + of the Derived Work and that contains a complete and accurate log + of the changes. + + c. No information in the Derived Work implies that any persons, + including (but not limited to) the authors of the original version + of the Work, provide any support, including (but not limited to) + the reporting and handling of errors, to recipients of the + Derived Work unless those persons have stated explicitly that + they do provide such support for the Derived Work. + + d. You distribute at least one of the following with the Derived Work: + + 1. A complete, unmodified copy of the Work; + if your distribution of a modified component is made by + offering access to copy the modified component from a + designated place, then offering equivalent access to copy + the Work from the same or some similar place meets this + condition, even though third parties are not compelled to + copy the Work along with the modified component; + + 2. Information that is sufficient to obtain a complete, + unmodified copy of the Work. + +7. If you are not the Current Maintainer of the Work, you may +distribute a Compiled Work generated from a Derived Work, as long as +the Derived Work is distributed to all recipients of the Compiled +Work, and as long as the conditions of Clause 6, above, are met with +regard to the Derived Work. + +8. The conditions above are not intended to prohibit, and hence do not +apply to, the modification, by any method, of any component so that it +becomes identical to an updated version of that component of the Work as +it is distributed by the Current Maintainer under Clause 4, above. + +9. Distribution of the Work or any Derived Work in an alternative +format, where the Work or that Derived Work (in whole or in part) is +then produced by applying some process to that format, does not relax or +nullify any sections of this license as they pertain to the results of +applying that process. + +10. a. A Derived Work may be distributed under a different license + provided that license itself honors the conditions listed in + Clause 6 above, in regard to the Work, though it does not have + to honor the rest of the conditions in this license. + + b. If a Derived Work is distributed under a different license, that + Derived Work must provide sufficient documentation as part of + itself to allow each recipient of that Derived Work to honor the + restrictions in Clause 6 above, concerning changes from the Work. + +11. This license places no restrictions on works that are unrelated to +the Work, nor does this license place any restrictions on aggregating +such works with the Work by any means. + +12. Nothing in this license is intended to, or may be used to, prevent +complete compliance by all parties with all applicable laws. + + +NO WARRANTY +=========== + +There is no warranty for the Work. Except when otherwise stated in +writing, the Copyright Holder provides the Work `as is', without +warranty of any kind, either expressed or implied, including, but not +limited to, the implied warranties of merchantability and fitness for a +particular purpose. The entire risk as to the quality and performance +of the Work is with you. Should the Work prove defective, you assume +the cost of all necessary servicing, repair, or correction. + +In no event unless required by applicable law or agreed to in writing +will The Copyright Holder, or any author named in the components of the +Work, or any other party who may distribute and/or modify the Work as +permitted above, be liable to you for damages, including any general, +special, incidental or consequential damages arising out of any use of +the Work or out of inability to use the Work (including, but not limited +to, loss of data, data being rendered inaccurate, or losses sustained by +anyone as a result of any failure of the Work to operate with any other +programs), even if the Copyright Holder or said author or said other +party has been advised of the possibility of such damages. + + +MAINTENANCE OF THE WORK +======================= + +The Work has the status `author-maintained' if the Copyright Holder +explicitly and prominently states near the primary copyright notice in +the Work that the Work can only be maintained by the Copyright Holder +or simply that it is `author-maintained'. + +The Work has the status `maintained' if there is a Current Maintainer +who has indicated in the Work that they are willing to receive error +reports for the Work (for example, by supplying a valid e-mail +address). It is not required for the Current Maintainer to acknowledge +or act upon these error reports. + +The Work changes from status `maintained' to `unmaintained' if there +is no Current Maintainer, or the person stated to be Current +Maintainer of the work cannot be reached through the indicated means +of communication for a period of six months, and there are no other +significant signs of active maintenance. + +You can become the Current Maintainer of the Work by agreement with +any existing Current Maintainer to take over this role. + +If the Work is unmaintained, you can become the Current Maintainer of +the Work through the following steps: + + 1. Make a reasonable attempt to trace the Current Maintainer (and + the Copyright Holder, if the two differ) through the means of + an Internet or similar search. + + 2. If this search is successful, then enquire whether the Work + is still maintained. + + a. If it is being maintained, then ask the Current Maintainer + to update their communication data within one month. + + b. If the search is unsuccessful or no action to resume active + maintenance is taken by the Current Maintainer, then announce + within the pertinent community your intention to take over + maintenance. (If the Work is a LaTeX work, this could be + done, for example, by posting to comp.text.tex.) + + 3a. If the Current Maintainer is reachable and agrees to pass + maintenance of the Work to you, then this takes effect + immediately upon announcement. + + b. If the Current Maintainer is not reachable and the Copyright + Holder agrees that maintenance of the Work be passed to you, + then this takes effect immediately upon announcement. + + 4. If you make an `intention announcement' as described in 2b. above + and after three months your intention is challenged neither by + the Current Maintainer nor by the Copyright Holder nor by other + people, then you may arrange for the Work to be changed so as + to name you as the (new) Current Maintainer. + + 5. If the previously unreachable Current Maintainer becomes + reachable once more within three months of a change completed + under the terms of 3b) or 4), then that Current Maintainer must + become or remain the Current Maintainer upon request provided + they then update their communication data within one month. + +A change in the Current Maintainer does not, of itself, alter the fact +that the Work is distributed under the LPPL license. + +If you become the Current Maintainer of the Work, you should +immediately provide, within the Work, a prominent and unambiguous +statement of your status as Current Maintainer. You should also +announce your new status to the same pertinent community as +in 2b) above. + + +WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE +====================================================== + +This section contains important instructions, examples, and +recommendations for authors who are considering distributing their +works under this license. These authors are addressed as `you' in +this section. + +Choosing This License or Another License +---------------------------------------- + +If for any part of your work you want or need to use *distribution* +conditions that differ significantly from those in this license, then +do not refer to this license anywhere in your work but, instead, +distribute your work under a different license. You may use the text +of this license as a model for your own license, but your license +should not refer to the LPPL or otherwise give the impression that +your work is distributed under the LPPL. + +The document `modguide.tex' in the base LaTeX distribution explains +the motivation behind the conditions of this license. It explains, +for example, why distributing LaTeX under the GNU General Public +License (GPL) was considered inappropriate. Even if your work is +unrelated to LaTeX, the discussion in `modguide.tex' may still be +relevant, and authors intending to distribute their works under any +license are encouraged to read it. + +A Recommendation on Modification Without Distribution +----------------------------------------------------- + +It is wise never to modify a component of the Work, even for your own +personal use, without also meeting the above conditions for +distributing the modified component. While you might intend that such +modifications will never be distributed, often this will happen by +accident -- you may forget that you have modified that component; or +it may not occur to you when allowing others to access the modified +version that you are thus distributing it and violating the conditions +of this license in ways that could have legal implications and, worse, +cause problems for the community. It is therefore usually in your +best interest to keep your copy of the Work identical with the public +one. Many works provide ways to control the behavior of that work +without altering any of its licensed components. + +How to Use This License +----------------------- + +To use this license, place in each of the components of your work both +an explicit copyright notice including your name and the year the work +was authored and/or last substantially modified. Include also a +statement that the distribution and/or modification of that +component is constrained by the conditions in this license. + +Here is an example of such a notice and statement: + + %% pig.dtx + %% Copyright 2005 M. Y. Name + % + % This work may be distributed and/or modified under the + % conditions of the LaTeX Project Public License, either version 1.3 + % of this license or (at your option) any later version. + % The latest version of this license is in + % http://www.latex-project.org/lppl.txt + % and version 1.3 or later is part of all distributions of LaTeX + % version 2005/12/01 or later. + % + % This work has the LPPL maintenance status `maintained'. + % + % The Current Maintainer of this work is M. Y. Name. + % + % This work consists of the files pig.dtx and pig.ins + % and the derived file pig.sty. + +Given such a notice and statement in a file, the conditions +given in this license document would apply, with the `Work' referring +to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being +generated from `pig.dtx' using `pig.ins'), the `Base Interpreter' +referring to any `LaTeX-Format', and both `Copyright Holder' and +`Current Maintainer' referring to the person `M. Y. Name'. + +If you do not want the Maintenance section of LPPL to apply to your +Work, change `maintained' above into `author-maintained'. +However, we recommend that you use `maintained', as the Maintenance +section was added in order to ensure that your Work remains useful to +the community even when you can no longer maintain and support it +yourself. + +Derived Works That Are Not Replacements +--------------------------------------- + +Several clauses of the LPPL specify means to provide reliability and +stability for the user community. They therefore concern themselves +with the case that a Derived Work is intended to be used as a +(compatible or incompatible) replacement of the original Work. If +this is not the case (e.g., if a few lines of code are reused for a +completely different task), then clauses 6b and 6d shall not apply. + + +Important Recommendations +------------------------- + + Defining What Constitutes the Work + + The LPPL requires that distributions of the Work contain all the + files of the Work. It is therefore important that you provide a + way for the licensee to determine which files constitute the Work. + This could, for example, be achieved by explicitly listing all the + files of the Work near the copyright notice of each file or by + using a line such as: + + % This work consists of all files listed in manifest.txt. + + in that place. In the absence of an unequivocal list it might be + impossible for the licensee to determine what is considered by you + to comprise the Work and, in such a case, the licensee would be + entitled to make reasonable conjectures as to which files comprise + the Work. + + Creative Commons Attribution-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES + RESULTING FROM ITS USE. + +License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS + CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS + PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK + OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS + PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND + AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS + LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE + RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS + AND CONDITIONS. + + 1. Definitions + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may + be recast, transformed, or adapted including in any form + recognizably derived from the original, except that a work that + constitutes a Collection will not be considered an Adaptation for + the purpose of this License. For the avoidance of doubt, where the + Work is a musical work, performance or phonogram, the + synchronization of the Work in timed-relation with a moving image + ("synching") will be considered an Adaptation for the purpose of + this License. + b. "Collection" means a collection of literary or artistic works, such + as encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works + listed in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, + in which the Work is included in its entirety in unmodified form + along with one or more other contributions, each constituting + separate and independent works in themselves, which together are + assembled into a collective whole. A work that constitutes a + Collection will not be considered an Adaptation (as defined below) + for the purposes of this License. + c. "Creative Commons Compatible License" means a license that is + listed at http://creativecommons.org/compatiblelicenses that has + been approved by Creative Commons as being essentially equivalent + to this License, including, at a minimum, because that license: (i) + contains terms that have the same purpose, meaning and effect as + the License Elements of this License; and, (ii) explicitly permits + the relicensing of adaptations of works made available under that + license under this License or a Creative Commons jurisdiction + license with the same License Elements as this License. + d. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + e. "License Elements" means the following high-level license + attributes as selected by Licensor and indicated in the title of + this License: Attribution, ShareAlike. + f. "Licensor" means the individual, individuals, entity or entities + that offer(s) the Work under the terms of this License. + g. "Original Author" means, in the case of a literary or artistic + work, the individual, individuals, entity or entities who created + the Work or if no individual or entity can be identified, the + publisher; and in addition (i) in the case of a performance the + actors, singers, musicians, dancers, and other persons who act, + sing, deliver, declaim, play in, interpret or otherwise perform + literary or artistic works or expressions of folklore; (ii) in the + case of a phonogram the producer being the person or legal entity + who first fixes the sounds of a performance or other sounds; and, + (iii) in the case of broadcasts, the organization that transmits + the broadcast. + h. "Work" means the literary and/or artistic work offered under the + terms of this License including without limitation any production + in the literary, scientific and artistic domain, whatever may be + the mode or form of its expression including digital form, such as + a book, pamphlet and other writing; a lecture, address, sermon or + other work of the same nature; a dramatic or dramatico-musical + work; a choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which + are assimilated works expressed by a process analogous to + cinematography; a work of drawing, painting, architecture, + sculpture, engraving or lithography; a photographic work to which + are assimilated works expressed by a process analogous to + photography; a work of applied art; an illustration, map, plan, + sketch or three-dimensional work relative to geography, topography, + architecture or science; a performance; a broadcast; a phonogram; a + compilation of data to the extent it is protected as a + copyrightable work; or a work performed by a variety or circus + performer to the extent it is not otherwise considered a literary + or artistic work. + i. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License + with respect to the Work, or who has received express permission + from the Licensor to exercise rights under this License despite a + previous violation. + j. "Publicly Perform" means to perform public recitations of the Work + and to communicate to the public those public recitations, by any + means or process, including by wire or wireless means or public + digital performances; to make available to the public Works in such + a way that members of the public may access these Works from a + place and at a place individually chosen by them; to perform the + Work to the public by any means or process and the communication to + the public of the performances of the Work, including by public + digital performance; to broadcast and rebroadcast the Work by any + means including signs, sounds or images. + k. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage + of a protected performance or phonogram in digital form or other + electronic medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such + Adaptation, including any translation in any medium, takes + reasonable steps to clearly label, demarcate or otherwise identify + that changes were made to the original Work. For example, a + translation could be marked "The original work was translated from + English to Spanish," or a modification could indicate "The original + work has been modified."; + c. to Distribute and Publicly Perform the Work including as + incorporated in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + i. Non-waivable Compulsory License Schemes. In those + jurisdictions in which the right to collect royalties through + any statutory or compulsory licensing scheme cannot be waived, + the Licensor reserves the exclusive right to collect such + royalties for any exercise by You of the rights granted under + this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives + the exclusive right to collect such royalties for any exercise + by You of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that + the Licensor is a member of a collecting society that + administers voluntary licensing schemes, via that society, + from any exercise by You of the rights granted under this + License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights + in other media and formats. Subject to Section 8(f), all rights not + expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly + made subject to and limited by the following restrictions: + a. You may Distribute or Publicly Perform the Work only under the + terms of this License. You must include a copy of, or the Uniform + Resource Identifier (URI) for, this License with every copy of the + Work You Distribute or Publicly Perform. You may not offer or + impose any terms on the Work that restrict the terms of this + License or the ability of the recipient of the Work to exercise the + rights granted to that recipient under the terms of the License. + You may not sublicense the Work. You must keep intact all notices + that refer to this License and to the disclaimer of warranties with + every copy of the Work You Distribute or Publicly Perform. When You + Distribute or Publicly Perform the Work, You may not impose any + effective technological measures on the Work that restrict the + ability of a recipient of the Work from You to exercise the rights + granted to that recipient under the terms of the License. This + Section 4(a) applies to the Work as incorporated in a Collection, + but this does not require the Collection apart from the Work itself + to be made subject to the terms of this License. If You create a + Collection, upon notice from any Licensor You must, to the extent + practicable, remove from the Collection any credit as required by + Section 4(c), as requested. If You create an Adaptation, upon + notice from any Licensor You must, to the extent practicable, + remove from the Adaptation any credit as required by Section 4(c), + as requested. + b. You may Distribute or Publicly Perform an Adaptation only under the + terms of: (i) this License; (ii) a later version of this License + with the same License Elements as this License; (iii) a Creative + Commons jurisdiction license (either this or a later license + version) that contains the same License Elements as this License + (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons + Compatible License. If you license the Adaptation under one of the + licenses mentioned in (iv), you must comply with the terms of that + license. If you license the Adaptation under the terms of any of + the licenses mentioned in (i), (ii) or (iii) (the "Applicable + License"), you must comply with the terms of the Applicable License + generally and the following provisions: (I) You must include a copy + of, or the URI for, the Applicable License with every copy of each + Adaptation You Distribute or Publicly Perform; (II) You may not + offer or impose any terms on the Adaptation that restrict the terms + of the Applicable License or the ability of the recipient of the + Adaptation to exercise the rights granted to that recipient under + the terms of the Applicable License; (III) You must keep intact all + notices that refer to the Applicable License and to the disclaimer + of warranties with every copy of the Work as included in the + Adaptation You Distribute or Publicly Perform; (IV) when You + Distribute or Publicly Perform the Adaptation, You may not impose + any effective technological measures on the Adaptation that + restrict the ability of a recipient of the Adaptation from You to + exercise the rights granted to that recipient under the terms of + the Applicable License. This Section 4(b) applies to the Adaptation + as incorporated in a Collection, but this does not require the + Collection apart from the Adaptation itself to be made subject to + the terms of the Applicable License. + c. If You Distribute, or Publicly Perform the Work or any Adaptations + or Collections, You must, unless a request has been made pursuant + to Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) + the name of the Original Author (or pseudonym, if applicable) if + supplied, and/or if the Original Author and/or Licensor designate + another party or parties (e.g., a sponsor institute, publishing + entity, journal) for attribution ("Attribution Parties") in + Licensor's copyright notice, terms of service or by other + reasonable means, the name of such party or parties; (ii) the title + of the Work if supplied; (iii) to the extent reasonably + practicable, the URI, if any, that Licensor specifies to be + associated with the Work, unless such URI does not refer to the + copyright notice or licensing information for the Work; and (iv) , + consistent with Ssection 3(b), in the case of an Adaptation, a + credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(c) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, + at a minimum such credit will appear, if a credit for all + contributing authors of the Adaptation or Collection appears, then + as part of these credits and in a manner at least as prominent as + the credits for the other contributing authors. For the avoidance + of doubt, You may only use the credit required by this Section for + the purpose of attribution in the manner set out above and, by + exercising Your rights under this License, You may not implicitly + or explicitly assert or imply any connection with, sponsorship or + endorsement by the Original Author, Licensor and/or Attribution + Parties, as appropriate, of You or Your use of the Work, without + the separate, express prior written permission of the Original + Author, Licensor and/or Attribution Parties. + d. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute + or Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify + or take other derogatory action in relation to the Work which would + be prejudicial to the Original Author's honor or reputation. + Licensor agrees that in those jurisdictions (e.g. Japan), in which + any exercise of the right granted in Section 3(b) of this License + (the right to make Adaptations) would be deemed to be a distortion, + mutilation, modification or other derogatory action prejudicial to + the Original Author's honor and reputation, the Licensor will waive + or not assert, as appropriate, this Section, to the fullest extent + permitted by the applicable national law, to enable You to + reasonably exercise Your right under Section 3(b) of this License + (right to make Adaptations) but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF + ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW + THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO + YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or + Collections from You under this License, however, will not have + their licenses terminated provided such individuals or entities + remain in full compliance with those licenses. Sections 1, 2, 5, 6, + 7, and 8 will survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here + is perpetual (for the duration of the applicable copyright in the + Work). Notwithstanding the above, Licensor reserves the right to + release the Work under different license terms or to stop + distributing the Work at any time; provided, however that any such + election will not serve to withdraw this License (or any other + license that has been, or is required to be, granted under the + terms of this License), and this License will continue in full + force and effect unless terminated as stated above. + + 8. Miscellaneous + a. Each time You Distribute or Publicly Perform the Work or a + Collection, the Licensor offers to the recipient a license to the + Work on the same terms and conditions as the license granted to You + under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, + Licensor offers to the recipient a license to the original Work on + the same terms and conditions as the license granted to You under + this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability + of the remainder of the terms of this License, and without further + action by the parties to this agreement, such provision shall be + reformed to the minimum extent necessary to make such provision + valid and enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in + writing and signed by the party to be charged with such waiver or + consent. + e. This License constitutes the entire agreement between the parties + with respect to the Work licensed here. There are no + understandings, agreements or representations with respect to the + Work not specified here. Licensor shall not be bound by any + additional provisions that may appear in any communication from + You. This License may not be modified without the mutual written + agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in + this License were drafted utilizing the terminology of the Berne + Convention for the Protection of Literary and Artistic Works (as + amended on September 28, 1979), the Rome Convention of 1961, the + WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms + Treaty of 1996 and the Universal Copyright Convention (as revised + on July 24, 1971). These rights and subject matter take effect in + the relevant jurisdiction in which the License terms are sought to + be enforced according to the corresponding provisions of the + implementation of those treaty provisions in the applicable + national law. If the standard suite of rights granted under + applicable copyright law includes additional rights not granted + under this License, such additional rights are deemed to be + included in the License; this License is not intended to restrict + the license of any rights under applicable law. + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior written + consent of Creative Commons. Any permitted use will be in compliance + with Creative Commons' then-current trademark usage guidelines, as may + be published on its website or otherwise made available upon request + from time to time. For the avoidance of doubt, this trademark + restriction does not form part of the License. + + Creative Commons may be contacted at http://creativecommons.org/. + diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/pdfium.txt b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/pdfium.txt new file mode 100644 index 00000000..8b4ed6dd --- /dev/null +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio-boot/src/main/resources/licenses/3rd-party/pdfium.txt @@ -0,0 +1,27 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml b/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml index 44da39d8..e28b96cd 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio/pom.xml @@ -8,7 +8,7 @@ alfresco-transform-core org.alfresco - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/AIOTransformRegistry.java b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/AIOTransformRegistry.java index c9b2ef80..3e86fc87 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/AIOTransformRegistry.java +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/main/java/org/alfresco/transformer/AIOTransformRegistry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Transform Core * %% - * Copyright (C) 2005 - 2020 Alfresco Software Limited + * Copyright (C) 2005 - 2021 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -29,6 +29,7 @@ package org.alfresco.transformer; import com.fasterxml.jackson.databind.ObjectMapper; import org.alfresco.transform.client.model.config.TransformConfig; import org.alfresco.transform.client.registry.AbstractTransformRegistry; +import org.alfresco.transform.client.registry.CombinedTransformConfig; import org.alfresco.transform.client.registry.TransformCache; import org.alfresco.transformer.executors.Transformer; import org.slf4j.Logger; @@ -52,7 +53,7 @@ public class AIOTransformRegistry extends AbstractTransformRegistry private static final String ENGINE_CONFIG_LOCATION_POSTFIX = "_engine_config.json"; - private TransformConfig aggregatedConfig = new TransformConfig(); + private CombinedTransformConfig combinedTransformConfig = new CombinedTransformConfig(); // Holds the structures used by AbstractTransformRegistry to look up what is supported. // Unlike other sub classes this class does not extend Data or replace it at run time. @@ -64,34 +65,40 @@ public class AIOTransformRegistry extends AbstractTransformRegistry private Map transformerEngineMapping = new HashMap(); /** - * The registration will go through all supported sub transformers and map them to the transformer implementation. + * Adds a transformer's (T-Engine) config to the configuration and creates a map of transforms to the T-Engine. + * The name of this method is now misleading as the registry of transforms takes place in + * {@link #registerCombinedTransformers()} . * @param transformer The transformer implementation, this could be a single transformer * or a transformer managing multiple sub transformers. The transformer's configuration file will * be read based on the {@link Transformer#getTransformerId()} value. - * @throws Exception Exception is thrown if a mapping for a transformer name already exists. */ public void registerTransformer(final Transformer transformer) throws Exception { // Load config for the transformer String location = getTransformConfigLocation(transformer); TransformConfig transformConfig = loadTransformConfig(location); + String transformerId = transformer.getTransformerId(); + combinedTransformConfig.addTransformConfig(transformConfig, location, transformerId, this); // Map all of the transforms defined in the config to this Transformer implementation for (org.alfresco.transform.client.model.config.Transformer transformerConfig : transformConfig.getTransformers()) { String transformerName = transformerConfig.getTransformerName(); - if (transformerEngineMapping.containsKey(transformerName)) + // A later tEngine 'might' override one that has already been defined. That is fine. + Transformer originalTEngine = transformerEngineMapping.get(transformerName); + if (originalTEngine != null) { - throw new Exception("Transformer name " + transformerName + " is already registered."); + log.debug("Overriding transform with name: '{}' originally defined in '{}'.", transformerName, originalTEngine.getTransformerId()); } transformerEngineMapping.put(transformerName, transformer); - log.debug("Registered transformer with name: '{}'.", transformerName); + log.debug("Registered transform with name: '{}' defined in '{}'.", transformerName, transformerId); } + } - // Add the new transformer configuration to the aggregate config - aggregatedConfig.getTransformers().addAll(transformConfig.getTransformers()); - aggregatedConfig.getTransformOptions().putAll(transformConfig.getTransformOptions()); - registerAll(transformConfig, location, location); + public void registerCombinedTransformers() + { + combinedTransformConfig.combineTransformerConfig(this); + combinedTransformConfig.registerCombinedTransformers(this); } /** @@ -110,7 +117,7 @@ public class AIOTransformRegistry extends AbstractTransformRegistry */ public TransformConfig getTransformConfig() { - return aggregatedConfig; + return combinedTransformConfig.buildTransformConfig(); } protected String getTransformConfigLocation(final Transformer transformer) @@ -158,4 +165,10 @@ public class AIOTransformRegistry extends AbstractTransformRegistry { log.error(msg); } + + @Override + protected void logWarn(String msg) + { + log.warn(msg); + } } diff --git a/alfresco-transform-core-aio/alfresco-transform-core-aio/src/test/java/org/alfresco/transformer/AIOTransformRegistryTest.java b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/test/java/org/alfresco/transformer/AIOTransformRegistryTest.java index 8fa9a309..f54b5196 100644 --- a/alfresco-transform-core-aio/alfresco-transform-core-aio/src/test/java/org/alfresco/transformer/AIOTransformRegistryTest.java +++ b/alfresco-transform-core-aio/alfresco-transform-core-aio/src/test/java/org/alfresco/transformer/AIOTransformRegistryTest.java @@ -71,7 +71,7 @@ public class AIOTransformRegistryTest { aioTransformerRegistry.registerTransformer(new SelectingTransformer()); aioTransformerRegistry.registerTransformer(new TikaJavaExecutor()); - + aioTransformerRegistry.registerCombinedTransformers(); } private void writeToFile(File file, String content, String encoding) throws Exception @@ -155,15 +155,6 @@ public class AIOTransformRegistryTest } } - @Test - public void testDuplicateTransformsException() throws Exception - { - assertThrows(Exception.class, () ->{ - // The Misc transformers are already registered - aioTransformerRegistry.registerTransformer(new SelectingTransformer()); - }); - } - // Test copied from Misc (HtmlParserContentTransformerTest) See ATS-712 aioTransformerRegistry - html @Test public void testMiscHtml() throws Exception diff --git a/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/Dockerfile b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/Dockerfile index eaf11384..cdf322e3 100644 --- a/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/Dockerfile +++ b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/Dockerfile @@ -2,14 +2,13 @@ # ImageMagick is from ImageMagick Studio LLC. See the license at http://www.imagemagick.org/script/license.php or in /ImageMagick-license.txt. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 ARG IMAGEMAGICK_VERSION=7.0.10-59 ENV IMAGEMAGICK_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/imagemagick/imagemagick-distribution/${IMAGEMAGICK_VERSION}/imagemagick-distribution-${IMAGEMAGICK_VERSION}-linux.rpm ENV IMAGEMAGICK_LIB_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/imagemagick/imagemagick-distribution/${IMAGEMAGICK_VERSION}/imagemagick-distribution-${IMAGEMAGICK_VERSION}-libs-linux.rpm ENV IMAGEMAGICK_DEP_RPM_URL=https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -ENV IMAGEMAGICK_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/ImageMagick-license.txt ENV JAVA_OPTS="" # Set default user information @@ -23,7 +22,6 @@ COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \ curl -s -S $IMAGEMAGICK_RPM_URL -o imagemagick-distribution-linux.rpm && \ curl -s -S $IMAGEMAGICK_LIB_RPM_URL -o imagemagick-distribution-libs-linux.rpm && \ - curl -s -S $IMAGEMAGICK_LICENSE_FILE -o ImageMagick-license.txt && \ curl -s -S $IMAGEMAGICK_DEP_RPM_URL -o imagemagick-epel-dep.rpm && \ yum localinstall -y imagemagick-epel-dep.rpm && \ yum localinstall -y imagemagick-distribution-*linux.rpm && \ @@ -33,6 +31,7 @@ RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${ ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${IMAGEUSERNAME} && \ diff --git a/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/pom.xml b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/pom.xml index aa1050fd..6bcf7089 100644 --- a/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/pom.xml +++ b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt new file mode 100644 index 00000000..f16ade13 --- /dev/null +++ b/alfresco-transform-imagemagick/alfresco-transform-imagemagick-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt @@ -0,0 +1,110 @@ +The authoritative ImageMagick license can be found at +http://www.imagemagick.org/script/license.php and ImageMagick notices at +http://www.imagemagick.org/www/Notice.html. + +Before we get to the text of the license, lets just review what the license says in simple terms: + +It allows you to: + + * freely download and use ImageMagick software, in whole or in part, for personal, company internal, or commercial purposes; + * use ImageMagick software in packages or distributions that you create; + * link against a library under a different license; + * link code under a different license against a library under this license; + * merge code into a work under a different license; + * extend patent grants to any code using code under this license; + *and extend patent protection. + +It forbids you to: + + * redistribute any piece of ImageMagick-originated software without proper attribution; + * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that ImageMagick Studio LLC endorses your distribution; + * use any marks owned by ImageMagick Studio LLC in any way that might state or imply that you created the ImageMagick software in question. + +It requires you to: + + * include a copy of the license in any redistribution you may make that includes ImageMagick software; + * provide clear attribution to ImageMagick Studio LLC for any distributions that include ImageMagick software. + +It does not require you to: + + * include the source of the ImageMagick software itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it; + * submit changes that you make to the software back to the ImageMagick Studio LLC (though such feedback is encouraged). + +A few other clarifications include: + * ImageMagick is freely available without charge; + * you may include ImageMagick on any digital media as long as you comply with the terms of the license; + * you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; + * the license is compatible with the GPL V3. + * when exporting the ImageMagick software, review its export classification. + +Terms and Conditions for Use, Reproduction, and Distribution + +The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: + +Copyright © 1999-2018 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + a. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + b. You must cause any modified files to carry prominent notices stating that You changed the files; and + + c. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + d. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +How to Apply the License to your Work + +To apply the ImageMagick License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information (don't include the brackets). The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the ImageMagick License (the "License"); you may not use + this file except in compliance with the License. You may obtain a copy + of the License at + + https://www.imagemagick.org/script/license.php + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. \ No newline at end of file diff --git a/alfresco-transform-imagemagick/alfresco-transform-imagemagick/LICENSES.md b/alfresco-transform-imagemagick/alfresco-transform-imagemagick/LICENSES.md index c8506825..8a36c4ea 100644 --- a/alfresco-transform-imagemagick/alfresco-transform-imagemagick/LICENSES.md +++ b/alfresco-transform-imagemagick/alfresco-transform-imagemagick/LICENSES.md @@ -1,5 +1,5 @@ ### Licenses * ImageMagick is from ImageMagick Studio LLC. See the license at [http://www.imagemagick.org/script/license.php](http://www.imagemagick.org/script/license.php) -or the [ImageMagick-license.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/zip/src/main/resources/licenses/3rd-party/ImageMagick-license.txt) +or the [ImageMagick-license.txt](../alfresco-transform-imagemagick-boot/src/main/resources/licenses/3rd-party/ImageMagick-license.txt) file placed in the root directory of the docker image. diff --git a/alfresco-transform-imagemagick/alfresco-transform-imagemagick/pom.xml b/alfresco-transform-imagemagick/alfresco-transform-imagemagick/pom.xml index f7e7b5e8..00c98f5a 100644 --- a/alfresco-transform-imagemagick/alfresco-transform-imagemagick/pom.xml +++ b/alfresco-transform-imagemagick/alfresco-transform-imagemagick/pom.xml @@ -8,7 +8,7 @@ alfresco-transform-core org.alfresco - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/Dockerfile b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/Dockerfile index 913963a3..43e270d2 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/Dockerfile +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/Dockerfile @@ -2,12 +2,11 @@ # LibreOffice is from The Document Foundation. See the license at https://www.libreoffice.org/download/license/ or in /libreoffice.txt. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 -ARG LIBREOFFICE_VERSION=6.3.5 +ARG LIBREOFFICE_VERSION=7.0.6 ENV LIBREOFFICE_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/libreoffice/libreoffice-dist/${LIBREOFFICE_VERSION}/libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz -ENV LIBREOFFICE_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/libreoffice.txt ENV JAVA_OPTS="" # Set default user information @@ -19,11 +18,10 @@ ARG USERID=33003 COPY target/${env.project_artifactId}-${env.project_version}.jar libreoffice-dist-*-linux.gz / RUN ln /${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \ - yum install -y cairo cups-libs libSM && \ + yum install -y cairo cups-libs libSM libGLU && \ test -f libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz && \ ln -s libreoffice-dist-${LIBREOFFICE_VERSION}-linux.gz libreoffice-dist-linux.gz || \ curl -s -S $LIBREOFFICE_RPM_URL -o libreoffice-dist-linux.gz && \ - curl -s -S $LIBREOFFICE_LICENSE_FILE -o libreoffice.txt && \ tar xzf libreoffice-dist-linux.gz && \ yum localinstall -y LibreOffice*/RPMS/*.rpm && \ rm -rf libreoffice-dist-*linux.gz LibreOffice_*_Linux_x86-64_rpm && \ @@ -32,6 +30,7 @@ RUN ln /${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.proj ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${LIBREUSERNAME} && \ diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/LICENSES.md b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/LICENSES.md index 3afa9da0..e18b29b7 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/LICENSES.md +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/LICENSES.md @@ -2,5 +2,5 @@ * This transformer uses LibreOffice from The Document Foundation. See the license at [https://www.libreoffice.org/download/license/](https://www.libreoffice.org/download/license/) - or the [libreoffice.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/zip/src/main/resources/licenses/3rd-party/libreoffice.txt) + or the [libreoffice.txt](src/main/resources/licenses/3rd-party/libreoffice.txt) file placed in the root directory of the docker image. \ No newline at end of file diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/pom.xml b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/pom.xml index d0650b7d..3febb40b 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/pom.xml +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/application-default.yaml b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/application-default.yaml index 2bcbaaf0..2c286ef4 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/application-default.yaml +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/application-default.yaml @@ -5,7 +5,7 @@ transform: config: location: classpath:libreoffice_engine_config.json libreoffice: - path: ${LIBREOFFICE_HOME:/opt/libreoffice6.3} + path: ${LIBREOFFICE_HOME:/opt/libreoffice7.0} maxTasksPerProcess: ${LIBREOFFICE_MAX_TASKS_PER_PROCESS:200} timeout: ${LIBREOFFICE_TIMEOUT:1200000} portNumbers: ${LIBREOFFICE_PORT_NUMBERS:8100} diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/licenses/3rd-party/libreoffice.txt b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/licenses/3rd-party/libreoffice.txt new file mode 100644 index 00000000..a82e6b62 --- /dev/null +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/main/resources/licenses/3rd-party/libreoffice.txt @@ -0,0 +1,9428 @@ + + Licensing and Legal information + + This product is made available subject to the terms of the Mozilla + Public License, v. 2.0. A copy of the MPL Version 2 license can be + found below. + + See MPL Version 2 below + + Third Party Code Additional copyright notices and license terms + applicable to portions of the Software can be found below in this + document. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + + Copyright © 2000, 2014 LibreOffice contributors. All rights reserved. + + This product is based on OpenOffice.org. Portions of this software are + copyright © 2000-2011, Oracle and/or its affiliates. + + This product has been created by The Document Foundation, incorporating + many modifications from different contributors, see + http://www.libreoffice.org/ for more details. + + Note: Do not translate or localize this document. Only English version + is legally binding. + + Contents + + Libraries + + Extensions + + Fonts + + Dictionaries + + Artwork + + Miscellaneous + + GNU Lesser General Public License Version 3 + + GNU Lesser General Public License Version 2.1 + + GNU Library General Public License Version 2 + + GNU General Public License Version 3 + + GNU General Public License Version 2 + + Mozilla Public License Version 1.1 + + Mozilla Public License Version 2.0 + + SIL Open Font License Version 1.1 – 26 February 2007 + + Apache License + + The LaTeX Project Public License + + Creative Commons Attribution-ShareAlike 3.0 Unported + + Third Party Code Additional Copyright Notices and License Terms + + Libraries + +Apache Commons + + The following software may be included in this product: Apache Commons + (codec, httpclient, lang, logging). Use of any of this software is + governed by the terms of the license below: + + See Apache License Version 2.0 below + +beanshell + + The following software may be included in this product: beanshell. Use + of any of this software is governed by the terms of the license below: + + This file is part of the BeanShell Java Scripting distribution. + Documentation and updates may be found at http://www.beanshell.org/ + + Sun Public License Notice: + + The contents of this file are subject to the Sun Public License Version + 1.0 (the "License"); you may not use this file except in compliance + with the License. A copy of the License is available at + http://www.sun.com + + The Original Code is BeanShell. The Initial Developer of the Original + Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright + (C) 2000. All Rights Reserved. + + GNU Public License Notice: + + Alternatively, the contents of this file may be used under the terms of + the GNU Lesser General Public License (the "LGPL"), in which case the + provisions of LGPL are applicable instead of those above. If you wish + to allow use of your version of this file only under the terms of the + LGPL and not to allow others to use your version of this file under the + SPL, indicate your decision by deleting the provisions above and + replace them with the notice and other provisions required by the LGPL. + If you do not delete the provisions above, a recipient may use your + version of this file under either the SPL or the LGPL. + + Patrick Niemeyer (pat@pat.net) Author of Learning Java, O'Reilly & + Associates http://www.pat.net/~pat/ + + See LGPL Version 3 below + +C++ Boost Library + + The following software may be included in this product: C++ Boost + Library. Use of any of this software is governed by the terms of the + license below: + + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or + organization obtaining a copy of the software and accompanying + documentation covered by this license (the "Software") to use, + reproduce, display, distribute, execute, and transmit the Software, and + to prepare derivative works of the Software, and to permit + third-parties to whom the Software is furnished to do so, all subject + to the following: + + The copyright notices in the Software and this entire statement, + including the above license grant, this restriction and the following + disclaimer, must be included in all copies of the Software, in whole or + in part, and all derivative works of the Software, unless such copies + or derivative works are solely in the form of machine-executable object + code generated by a source language processor. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND + NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE + DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, + WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Cairo + + The following software may be included in this product: Cairo. Use of + any of this software is governed by the terms of the license below: + + Cairo is free software. + + Every source file in the implementation[*] of cairo is available to be + redistributed and/or modified under the terms of either the GNU Lesser + General Public License (LGPL) version 2.1 or the Mozilla Public License + (MPL) version 1.1. Some files are available under more liberal terms, + but we believe that in all cases, each file may be used under either + the LGPL or the MPL. + + See the following files in this directory for the precise terms and + conditions of either license: + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Please see each file in the implementation for copyright and licensing + information, (in the opening comment of each file). + + [*] The implementation of cairo is contained entirely within the "src" + and "pixman" directories of the cairo source distribution. There are + other components of the cairo source distribution (such as the "test" + and "perf") that are auxiliary to the library itself. None of the + source code in these directories contributes to a build of the cairo + library itself, (libcairo.so or cairo.dll or similar). + + These auxilary components are also free software, but may be under + different license terms than cairo itself. For example, most of the + test cases in the perf and test directories are made available under a + MIT license to simplify any use of this code for reference purposes in + using cairo itself. Other files might be available under the GNU + General Public License (GPL), for example. Again, please see the + opening comment of each file for copyright and licensing information. + +CLucene + + The following software may be included in this product: CLucene. Use of + any of this software is governed by the terms of the license below: + + CLucene is distributed under the GNU Lesser General Public License + (LGPL) or the Apache License, Version 2.0 + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +expat XML Parser Toolkit + + The following software may be included in this product: expat XML + Parser Toolkit. Use of any of this software is governed by the terms of + the license below: + + Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and + Clark Cooper + + Copyright (c) 2001, 2002, 2003 Expat maintainers. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Flute + + The following software may be included in this product: Flute. Use of + any of this software is governed by the terms of the license below: + + W3C IPR SOFTWARE NOTICE + + Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of + Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. + + Note: The original version of the W3C Software Copyright Notice and + License could be found at + http://www.w3.org/Consortium/Legal/copyright-software-19980720 + + Copyright © 1994-2000 World Wide Web Consortium, (Massachusetts + Institute of Technology, Institut National de Recherche en + Informatique et en Automatique, Keio University). All Rights + Reserved. http://www.w3.org/Consortium/Legal/ + + This W3C work (including software, documents, or other related items) + is being provided by the copyright holders under the following license. + By obtaining, using and/or copying this work, you (the licensee) agree + that you have read, understood, and will comply with the following + terms and conditions: + + Permission to use, copy, and modify this software and its + documentation, with or without modification, for any purpose and + without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the software and documentation or portions + thereof, including modifications, that you make: + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or + terms and conditions. If none exist, a short notice of the + following form (hypertext is preferred, text is permitted) should + be used within the body of any redistributed or derivative code: + "Copyright © 2002 World Wide Web Consortium, (Massachusetts + Institute of Technology, Institut National de Recherche en + Informatique et en Automatique, Keio University). All Rights + Reserved. http://www.w3.org/Consortium/Legal/" + 3. Notice of any changes or modifications to the W3C files, including + the date changes were made. (We recommend you provide URIs to the + location from which the code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT + HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR + DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL + OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR + DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in + advertising or publicity pertaining to the software without specific, + written prior permission. Title to copyright in this software and any + associated documentation will at all times remain with copyright + holders. + + Freetype Library + + The following software may be included in this product: Freetype. Use + of any of this software is governed by the terms of the license below: + + 0. Definitions + + Throughout this license, the terms `package', `FreeType Project', and + `FreeType archive' refer to the set of files originally distributed by + the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the + `FreeType Project', be they named as alpha, beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source code + as well as linking it to form a `program' or `executable'. This program + is referred to as `a program using the FreeType engine'. + + This license applies to all files distributed in the original FreeType + Project, including all source code, binaries and documentation, unless + otherwise stated in the file in its original, unmodified form as + distributed in the original archive. If you are unsure whether or not a + particular file is covered by this license, you must contact us to + verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert + Wilhelm, and Werner Lemberg. All rights reserved except as specified + below. + + 1. No Warranty + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL + ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES + CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. + + 2. Redistribution + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and sublicense + the FreeType Project (in both source and object code forms) and + derivative works thereof for any purpose; and to authorize others to + exercise some or all of the rights granted herein, subject to the + following conditions: + * Redistribution of source code must retain this license file + ('FTL.TXT') unaltered; any additions, deletions or changes to the + original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, original + files must be preserved in all copies of source files. + * Redistribution in binary form must provide a disclaimer that states + that the software is based in part of the work of the FreeType + Team, in the distribution documentation. We also encourage you to + put an URL to the FreeType web page in your documentation, though + this isn't mandatory. + + These conditions apply to any software derived from or based on the + FreeType Project, not just the unmodified files. If you use our work, + you must acknowledge us. However, no fee need be paid to us. + + 3. Advertising + + Neither the FreeType authors and contributors nor you shall use the + name of the other for commercial, advertising, or promotional purposes + without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation or + advertising materials: `FreeType Project', `FreeType Engine', `FreeType + library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to accept it. + However, as the FreeType Project is copyrighted material, only this + license, or another one contracted with the authors, grants you the + right to use, distribute, and modify it. Therefore, by using, + distributing, or modifying the FreeType Project, you indicate that you + understand and accept all the terms of this license. + + 4. Contacts + + There are two mailing lists related to FreeType: + * freetype@freetype.org + + Discusses general use and applications of FreeType, as well as future + and wanted additions to the library and distribution. If you are + looking for support, start in this list if you haven't found anything + to help you in the documentation. + * devel@freetype.org + + Discusses bugs, as well as engine internals, design issues, specific + licenses, porting, etc. + * http://www.freetype.org + + Holds the current FreeType web page, which will allow you to download + our latest development version and read online documentation. + + You can also contact us individually at: + + David Turner + Robert Wilhelm + Werner Lemberg + +GNU ISO C++ Library + + The following software may be included in this product: GNU ISO C++ + Library. Use of any of this software is governed by the terms of the + license below: + + © Free Software Foundation, Inc. + + See GPL Version 2 below + + Additional License(s) + +libstdc++: +// Explicit instantiation file. + +// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 +// Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 2, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING. If not, write to the Free +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, +// USA. + +// As a special exception, you may use this file as part of a free +software +// library without restriction. Specifically, if other files instantiate +// templates or use macros or inline functions from this file, or you +compile +// this file and link it with other files to produce an executable, this +// file does not by itself cause the resulting executable to be covered by +// the GNU General Public License. This exception does not however +// invalidate any other reasons why the executable file might be +covered by +// the GNU General Public License. + +libgcc: +// +// ISO C++ 14882: +// + +/* Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Contributed by Jakub Jelinek . + + This file is part of GNU CC. + + GNU CC is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + GNU CC is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNU CC; see the file COPYING. If not, write to + the Free Software Foundation, 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +/* As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable + to be covered by the GNU General Public License. + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public +License. */ + +/* Locate the FDE entry for a given address, using PT_GNU_EH_FRAME ELF + segment and dl_iterate_phdr to avoid register/deregister calls at + DSO load/unload. */ + +Firebird + + The applicable and approved licenses for the source files of the + Firebird RDBMS project are: + + 1) InterBase Public License (IPL), version 1.0 + + 2) Initial Developer's Public License (IDPL), version 1.0 + + The IPL is copyright of Borland Corp., the other licenses are copyright + by the source code authors and contributors. Both are variants of the + Mozilla Public License V.1.1 (MPL). See + http://www.firebirdsql.org/en/licensing/ + +fontconfig + + The following software may be included in this product: fontconfig. Use + of any of this software is governed by the terms of the license below: + + Copyright © 2002 Keith Packard + + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of the author(s) not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. The authors make + no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + + THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO + EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF + USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + +Graphite2 + + The following software may be included in this product: Graphite2. Use + of any of this software is governed by the terms of the license below: + + Copyright 2010, SIL International All rights reserved. + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 2.1 of License, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser + General Public License for more details. + + You should also have received a copy of the GNU Lesser General Public + License along with this library in the file named "LICENSE". If not, + write to the Free Software Foundation, Inc., 59 Temple Place, Suite + 330, Boston, MA 02111-1307, USA or visit their web page on the internet + at http://www.fsf.org/licenses/lgpl.html. + + Alternatively, you may use this library under the terms of the Mozilla + Public License (http://mozilla.org/MPL) or under the GNU General + Public License, as published by the Free Sofware Foundation; either + version 2 of the license or (at your option) any later version. + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +HarfBuzz + + HarfBuzz is licensed under the so-called "Old MIT" license. Details + follow. For parts of HarfBuzz that are licensed under different + licenses see individual files names COPYING in subdirectories where + applicable. + + Copyright © 2010,2011,2012 Google, Inc. + Copyright © 2012 Mozilla Foundation + Copyright © 2011 Codethink Limited + Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) + Copyright © 2009 Keith Stribley + Copyright © 2009 Martin Hosken and SIL International + Copyright © 2007 Chris Wilson + Copyright © 2006 Behdad Esfahbod + Copyright © 2005 David Turner + Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. + Copyright © 1998-2004 David Turner and Werner Lemberg + + For full copyright notices consult the individual files in the package. + + Permission is hereby granted, without written agreement and without + license or royalty fees, to use, copy, modify, and distribute this + software and its documentation for any purpose, provided that the above + copyright notice and the following two paragraphs appear in all copies + of this software. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING + OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE + COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON + AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE + MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +HSQLDB + + The following software may be included in this product: HSQLDB. Use of + any of this software is governed by the terms of the license below: + + ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt") + + For content, code, and products originally developed by Thomas Mueller + and the Hypersonic SQL Group: + + Copyright (c) 1995-2000 by the Hypersonic SQL Group. All rights + reserved. Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the following + conditions are met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the Hypersonic SQL Group nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL + GROUP, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + This software consists of voluntary contributions made by many + individuals on behalf of the Hypersonic SQL Group. + + For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt) + + Copyright (c) 2001-2004, The HSQL Development Group All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + Neither the name of the HSQL Development Group nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT + GROUP, HSQLDB.ORG, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS + OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +Hunspell + + The following software may be included in this product: Hunspell. Use + of any of this software is governed by the terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") or + (excepting the LGPLed GNU gettext library in the intl/ directory) the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +Hyphen + + The following software may be included in this product: Hyphen. Use of + any of this software is governed by the terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") or + (excepting the LGPLed GNU gettext library in the intl/ directory) the + Mozilla Public License Version 1.1 or later (the "MPL"). + + The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth has a + non MPL/LGPL compatible license, but freely redistributable: "Unlimited + copying and redistribution of this file are permitted as long as this + file is not modified. Modifications are permitted, but only if the + resulting file is not named hyphen.tex." + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +IAccessible2 + + The following software may be included in this product: IAccessible2 + API. + + IAccessible2 IDL Specification + + Copyright (c) 2007, 2013 Linux Foundation + Copyright (c) 2006 IBM Corporation + Copyright (c) 2000, 2006 Sun Microsystems, Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 1. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + + 1. Neither the name of the Linux Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This BSD License conforms to the Open Source Initiative "Simplified BSD + License" as published at: + http://www.opensource.org/licenses/bsd-license.php + + IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 + mark may be used in accordance with the Linux Foundation Trademark + Policy to indicate compliance with the IAccessible2 specification. + + Find out more about IAccessible2 at + http://accessibility.linuxfoundation.org/. + +ICU + + The following software may be included in this product: ICU. Use of any + of this software is governed by the terms of the license below: + + ICU License - ICU 1.8.1 and later + + COPYRIGHT AND PERMISSION NOTICE + + Copyright (c) 1995-2002 International Business Machines Corporation and + others All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, and/or sell copies of the Software, and to permit persons + to whom the Software is furnished to do so, provided that the above + copyright notice(s) and this permission notice appear in all copies of + the Software and that both the above copyright notice(s) and this + permission notice appear in supporting documentation. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL + INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING + FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + + All trademarks and registered trademarks mentioned herein are the + property of their respective owners. + +IJG JPEG Library + + The following software may be included in this product: IJG JPEG + Library. Use of any of this software is governed by the terms of the + license below: + + In plain English: + 1. We don't promise that this software works. (But if you find any + bugs, please let us know!) + 2. You can use this software for whatever you want. You don't have to + pay us. + 3. You may not pretend that you wrote this software. If you use it in + a program, you must acknowledge somewhere in your documentation + that you've used the IJG code. + + In legalese: + + The authors make NO WARRANTY or representation, either express or + implied, with respect to this software, its quality, accuracy, + merchantability, or fitness for a particular purpose. This software is + provided "AS IS", and you, its user, assume the entire risk as to its + quality and accuracy. + + This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights + Reserved except as specified below. + + Permission is hereby granted to use, copy, modify, and distribute this + software (or portions thereof) for any purpose, without fee, subject to + these conditions: (1) If any part of the source code for this software + is distributed, then this README file must be included, with this + copyright and no-warranty notice unaltered; and any additions, + deletions, or changes to the original files must be clearly indicated + in accompanying documentation. (2) If only executable code is + distributed, then the accompanying documentation must state that "this + software is based in part on the work of the Independent JPEG Group". + (3) Permission for use of this software is granted only if the user + accepts full responsibility for any undesirable consequences; the + authors accept NO LIABILITY for damages of any kind. + + These conditions apply to any software derived from or based on the IJG + code, not just to the unmodified library. If you use our work, you + ought to acknowledge us. + + Permission is NOT granted for the use of any IJG author's name or + company name in advertising or publicity relating to this software or + products derived from it. This software may be referred to only as "the + Independent JPEG Group's software". + + We specifically permit and encourage the use of this software as the + basis of commercial products, provided that all warranty or liability + claims are assumed by the product vendor. + + ansi2knr.c is included in this distribution by permission of L. Peter + Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises + of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and + conditions, but instead by the usual distribution terms of the Free + Software Foundation; principally, that you must include source code if + you redistribute it. (See the file ansi2knr.c for full details.) + However, since ansi2knr.c is not needed as part of any program + generated from the IJG code, this does not limit you more than the + foregoing paragraphs do. + + The Unix configuration script "configure" was produced with GNU + Autoconf. It is copyright by the Free Software Foundation but is freely + distributable. The same holds for its supporting scripts (config.guess, + config.sub, ltconfig, ltmain.sh). Another support script, install-sh, + is copyright by M.I.T. but is also freely distributable. + + It appears that the arithmetic coding option of the JPEG spec is + covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic + coding cannot legally be used without obtaining one or more licenses. + For this reason, support for arithmetic coding has been removed from + the free JPEG software. (Since arithmetic coding provides only a + marginal gain over the unpatented Huffman mode, it is unlikely that + very many implementations will support it.) So far as we are aware, + there are no patent restrictions on the remaining code. + + The IJG distribution formerly included code to read and write GIF + files. To avoid entanglement with the Unisys LZW patent, GIF reading + support has been removed altogether, and the GIF writer has been + simplified to produce "uncompressed GIFs". This technique does not use + the LZW algorithm; the resulting GIF files are larger than usual, but + are readable by all standard GIF decoders. + + We are required to state that + + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + +JDOM + + The following software may be included in this product: JDOM. Use of + any of this software is governed by the terms of the license below: + + Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin. All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions, and the following disclaimer. + + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions, and the disclaimer that follows these + conditions in the documentation and/or other materials provided with + the distribution. + + 3. The name "JDOM" must not be used to endorse or promote products + derived from this software without prior written permission. For + written permission, please contact . + + 4. Products derived from this software may not be called "JDOM", nor + may "JDOM" appear in their name, without prior written permission from + the JDOM Project Management . + + In addition, we request (but do not require) that you include in the + end-user documentation provided with the redistribution and/or in the + software itself an acknowledgement equivalent to the following: + + "This product includes software developed by the JDOM Project + (http://www.jdom.org/)." + + Alternatively, the acknowledgment may be graphical using the logos + available at http://www.jdom.org/images/logos. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This software consists of voluntary contributions made by many + individuals on behalf of the JDOM Project and was originally created by + Jason Hunter and Brett McLaughlin + . For more information on the JDOM Project, + please see http://www.jdom.org/. + +libatomic-ops + + The following software may be included in this product: libatomic-ops. + Use of any of this software is governed by the terms of the license + below: + + See GPL Version 2 below + +libcdr + + The following software may be included in this product: libcdr. Use of + any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libcmis + + The following software may be included in this product: libcmis. Use of + any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libcurl + + The following software may be included in this product: libcurl. Use of + any of this software is governed by the terms of the license below: + + Copyright (c) 1996 - 2009, Daniel Stenberg, . + + All rights reserved. + + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization + of the copyright holder. + +libeot + + The following software may be included in this product: libeot. Use of + any of this software is governed by the terms of the license below: + + See MPL Version 2 below + +libe-book + + The following software may be included in this product: libe-book. Use + of any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2+ + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libetonyek + + The following software may be included in this product: libetonyek. Use + of any of this software is governed by the terms of the license below: + + See MPL Version 2 below + +libexttextcat + + The following software may be included in this product: libexttextcat. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2003, WiseGuys Internet B.V. + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + - Redistribution of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + - Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the WiseGuys Internet B.V. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +libfreehand + + The following software may be included in this product: libfreehand. + Use of any of this software is governed by the terms of the license + below: + + See MPL Version 2 below + +liblangtag + + The following software may be included in this product: liblangtag. Use + of any of this software is governed by the terms of the license below: + + See LGPL Version 3 below + +libmspub + + The following software may be included in this product: libmspub. Use + of any of this software is governed by the terms of the license below: + + MPL 1.1 / LGPL v2+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2 below + + See MPL Version 1.1 below + +libmwaw + + The following software may be included in this product: libmwaw. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libodfgen + + The following software may be included in this product: libodfgen. Use + of any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +liborcus + + The following software may be included in this product: liborcus. Use + of any of this software is governed by the terms of the license below: + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +libpng + + The following software may be included in this product: libpng. Use of + any of this software is governed by the terms of the license below: + + This copy of the libpng notices is provided for your convenience. In + case of + any discrepancy between this copy and the notices in the file png.h + that is + included in the libpng distribution, the latter shall prevail. + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + If you modify libpng you may insert additional notices immediately + following + this sentence. + This code is released under the libpng license. + libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3, + 2011, are + Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-1.2.5 + with the following individual added to the list of Contributing Authors + Cosmin Truta + libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, + are + Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-1.0.6 + with the following individuals added to the list of Contributing + Authors + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + and with the following additions to the disclaimer: + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are + Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as + libpng-0.96, + with the following individuals added to the list of Contributing + Authors: + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + libpng versions 0.89, June 1996, through 0.96, May 1997, are + Copyright (c) 1996, 1997 Andreas Dilger + Distributed according to the same disclaimer and license as + libpng-0.88, + with the following individuals added to the list of Contributing + Authors: + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + libpng versions 0.5, May 1995, through 0.88, January 1996, are + Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + The PNG Reference Library is supplied "AS IS". The Contributing Authors + and Group 42, Inc. disclaim all warranties, expressed or implied, + including, without limitation, the warranties of merchantability and of + fitness for any purpose. The Contributing Authors and Group 42, Inc. + assume no liability for direct, indirect, incidental, special, + exemplary, + or consequential damages, which may result from the use of the PNG + Reference Library, even if advised of the possibility of such damage. + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + 1. The origin of this source code must not be misrepresented. + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + The Contributing Authors and Group 42, Inc. specifically permit, + without + fee, and encourage the use of this source code as a component to + supporting the PNG file format in commercial products. If you use this + source code in a product, acknowledgment is not required but would be + appreciated. + A "png_get_copyright" function is available, for convenient use in + "about" + boxes and the like: + printf("%s",png_get_copyright(NULL)); + Also, the PNG logo (in PNG format, of course) is supplied in the + files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + Libpng is OSI Certified Open Source Software. OSI Certified Open Source + is a + certification mark of the Open Source Initiative. + Glenn Randers-Pehrson + glennrp at users.sourceforge.net + February 3, 2011 + +libvisio + + The following software may be included in this product: libvisio. Use + of any of this software is governed by the terms of the license below: + + MPL 1.1+ / LGPL v2.1+ / GPL v2+ + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +libwpd + + The following software may be included in this product: libwpd. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libwpg + + The following software may be included in this product: libwpg. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libwps + + The following software may be included in this product: libwps. Use of + any of this software is governed by the terms of the license below: + + LGPL v2.1+ / MPL 2 + + See LGPL Version 2.1 below + + See MPL Version 2 below + +libxml2 + + The following software may be included in this product: libxml2. Use of + any of this software is governed by the terms of the license below: + + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar license but + with different Copyright notices) all the files are: + + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in this Software without prior written authorization + from him. + +libxslt + + The following software may be included in this product: libxslt. Use of + any of this software is governed by the terms of the license below: + + License for libxslt except libexslt + + Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Daniel Veillard shall + not be used in advertising or otherwise to promote the sale, use or + other dealings in this Software without prior written authorization + from him. + + License for libexslt + + Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel + Veillard. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of the authors shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + +Little CMS (lcms2) + + The following software may be included in this product: Little CMS + (lcms2). Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 1998-2011 Marti Maria Saguer + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +lpsolve + + The following software may be included in this product: lpsolve. Use of + any of this software is governed by the terms of the license below: + + See LGPL Version 2.1 below + +mdds + + The following software may be included in this product: mdds. Use of + any of this software is governed by the terms of the license below: + + Copyright (c) 2010 Kohei Yoshida + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Mesa + + The following software may be included in this product: The Mesa 3D + Graphics Library. The default Mesa license is as follows: + + Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + + Ext headers + + Copyright (c) 2007 The Khronos Group Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and/or associated documentation files (the + "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Materials, and to + permit persons to whom the Materials are furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + +Microsoft Visual C++ 2010 Runtime Libraries + + The following software may be included in this product: Microsoft + Visual C++ 2010 Runtime Libraries. Use of any of this software is + governed by the terms of the license below: + + MICROSOFT SOFTWARE LICENSE TERMS + + MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES WITH SERVICE PACK 1 + + These license terms are an agreement between Microsoft Corporation (or + based on where you live, one of its affiliates) and you. Please read + them. They apply to the software named above, which includes the media + on which you received it, if any. The terms also apply to any Microsoft + * updates, + * supplements, + * Internet-based services, and + * support services + + for this software, unless other terms accompany those items. If so, + those terms apply. + + BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT + THEM, DO NOT USE THE SOFTWARE. + + If you comply with these license terms, you have the rights below. + 1. INSTALLATION AND USE RIGHTS. You may install and use any number of + copies of the software on your devices. + 2. SCOPE OF LICENSE. The software is licensed, not sold. This + agreement only gives you some rights to use the software. Microsoft + reserves all other rights. Unless applicable law gives you more + rights despite this limitation, you may use the software only as + expressly permitted in this agreement. In doing so, you must comply + with any technical limitations in the software that only allow you + to use it in certain ways. You may not + + * disclose the results of any benchmark tests of the software to any + third party without Microsoft’s prior written approval; + * work around any technical limitations in the software; + * reverse engineer, decompile or disassemble the software, except and + only to the extent that applicable law expressly permits, despite + this limitation; + * make more copies of the software than specified in this agreement + or allowed by applicable law, despite this limitation; + * publish the software for others to copy; + * rent, lease or lend the software; + * transfer the software or this agreement to any third party; or + * use the software for commercial software hosting services. + + 3. BACKUP COPY. You may make one backup copy of the software. You may + use it only to reinstall the software. + 4. DOCUMENTATION. Any person that has valid access to your computer or + internal network may copy and use the documentation for your + internal, reference purposes. + 5. EXPORT RESTRICTIONS. The software is subject to United States + export laws and regulations. You must comply with all domestic and + international export laws and regulations that apply to the + software. These laws include restrictions on destinations, end + users and end use. For additional information, see + www.microsoft.com/exporting. + 6. SUPPORT SERVICES. Because this software is “as is,” we may not + provide support services for it. + 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, + updates, Internet-based services and support services that you use, + are the entire agreement for the software and support services. + 8. APPLICABLE LAW. + + a. United States. If you acquired the software in the United States, + Washington state law governs the interpretation of this agreement + and applies to claims for breach of it, regardless of conflict of + laws principles. The laws of the state where you live govern all + other claims, including claims under state consumer protection + laws, unfair competition laws, and in tort. + b. Outside the United States. If you acquired the software in any + other country, the laws of that country apply. + + 9. LEGAL EFFECT. This agreement describes certain legal rights. You + may have other rights under the laws of your country. You may also + have rights with respect to the party from whom you acquired the + software. This agreement does not change your rights under the laws + of your country if the laws of your country do not permit it to do + so. + 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR + THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, + GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS + UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE + EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE + IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NON-INFRINGEMENT. + 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN + RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO + U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING + CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL + DAMAGES. + + This limitation applies to + * anything related to the software, services, content (including + code) on third party Internet sites, or third party programs; and + * claims for breach of contract, breach of warranty, guarantee or + condition, strict liability, negligence, or other tort to the + extent permitted by applicable law. + + It also applies even if Microsoft knew or should have known about the + possibility of the damages. The above limitation or exclusion may not + apply to you because your country may not allow the exclusion or + limitation of incidental, consequential or other damages. + +Mozilla + + The following software may be included in this product: Mozilla, + Mozilla Address Book, NP SDK. Use of any of this software is governed + by the terms of the license below: + + See MPL 1.1 below + +MySQL Connector/C++ + + The following software may be included in this product: + MySQL Connector/C++. Use of any of this software is governed by the + terms of the license below: + + Copyright 2007-2008 MySQL AB, 2008-2009 Sun Microsystems Inc. + + See GPL Version 2 below + +MyThes + + The following software may be included in this product: MyThes. Use of + any of this software is governed by the terms of the license below: + + Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada And + Contributors. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. All modifications to the source code must be clearly marked as such. + Binary redistribution based on modified source code must be clearly + marked as modified versions in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KEVIN B. HENDRICKS + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +neon + + The following software may be included in this product: neon. Use of + any of this software is governed by the terms of the license below: + + neon is Copyright (C) 1999-2007 Joe Orton + Portions are: + Copyright (C) 1999-2000 Tommi Komulainen + Copyright (C) 1999-2000 Peter Boos + Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 2004 Aleix Conchillo Flaque + Copyright (C) 2004 Jiang Lei + Copyright (C) 2004-2005 Vladimir Berezniker @ + http://public.xdi.org/=vmpn + + See LGPL Version 2.1 below + +Network Security Services (NSS) + + The following software may be included in this product: Network + Security Services (NSS). Use of any of this software is governed by the + terms of the license below: + + See MPL 1.1 below + +OpenLDAP + + The following software may be included in this product: OpenLDAP. Use + of any of this software is governed by the terms of the license below: + + The OpenLDAP Public License + + Version 2.8, 17 August 2003 + + Redistribution and use of this software and associated documentation + ("Software"), with or without modification, are permitted provided that + the following conditions are met: + 1. Redistributions in source form must retain copyright statements and + notices, + 2. Redistributions in binary form must reproduce applicable copyright + statements and notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution, and + 3. Redistributions must contain a verbatim copy of this document. + + The OpenLDAP Foundation may revise this license from time to time. Each + revision is distinguished by a version number. You may use this + Software under terms of this license revision or under the terms of any + subsequent revision of the license. + + THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS + CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE + AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + The names of the authors and copyright holders must not be used in + advertising or otherwise to promote the sale, use or other dealing in + this Software without specific, written prior permission. Title to + copyright in this Software shall at all times remain with copyright + holders. + + OpenLDAP is a registered trademark of the OpenLDAP Foundation. + + Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, + USA. All Rights Reserved. Permission to copy and distribute verbatim + copies of this document is granted. + +OpenSSL + + The following software may be included in this product: OpenSSL. Use of + any of this software is governed by the terms of the license below: + + The OpenSSL toolkit stays under a dual license, i.e. both the + conditions of the OpenSSL License and the original SSLeay license apply + to the toolkit. + + See below for the actual license texts. Actually both licenses are + BSD-style Open Source licenses. In case of any license issues related + to OpenSSL please contact openssl-core@openssl.org. + + OpenSSL License + + Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: "This product + includes software developed by the OpenSSL Project for use in the + OpenSSL Toolkit. (http://www.openssl.org/)" + 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used + to endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + 5. Products derived from this software may not be called "OpenSSL" nor + may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + 6. Redistribution of any form whatsoever must retain the following + acknowledgment: "This product includes software developed by the + OpenSSL Project for use in the OpenSSL Toolkit + (http://www.openssl.org/)" + + THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + This product includes cryptographic software written by Eric Young + (eay@cryptsoft.com). This product includes software written by Tim + Hudson (tjh@cryptsoft.com). + + Original SSLeay License + + Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) All rights + reserved. + + This package is an SSL implementation written by Eric Young + (eay@cryptsoft.com). + The implementation was written so as to conform with Netscapes SSL. + + This library is free for commercial and non-commercial use as long as + the following conditions are aheared to. The following conditions apply + to all code found in this distribution, be it the RC4, RSA, lhash, DES, + etc., code; not just the SSL code. The SSL documentation included with + this distribution is covered by the same copyright terms except that + the holder is Tim Hudson (tjh@cryptsoft.com). + + Copyright remains Eric Young's, and as such any Copyright notices in + the code are not to be removed. If this package is used in a product, + Eric Young should be given attribution as the author of the parts of + the library used. This can be in the form of a textual message at + program startup or in documentation (online or textual) provided with + the package. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the copyright notice, + this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: "This product + includes cryptographic software written by Eric Young + (eay@cryptsoft.com)" The word 'cryptographic' can be left out if + the routines from the library being used are not cryptographic + related :-). + 4. If you include any Windows specific code (or a derivative thereof) + from the apps directory (application code) you must include an + acknowledgment: "This product includes software written by Tim + Hudson (tjh@cryptsoft.com)" + + THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + The license and distribution terms for any publicly available version + or derivative of this code cannot be changed. i.e. this code cannot + simply be copied and put under another distribution license [including + the GNU Public License.] + +Pentaho Reporting Flow Engine + + The following software may be included in this product: Pentaho + Reporting Flow Engine (including core, flow-engine, libbase, libfonts, + libformula, liblayout, libloader, librepository, libserializer, and + libxml). Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Pixman + + The following software may be included in this product: Pixman + (libpixman). Use of any of this software is governed by the terms of + the license below: + + The following is the MIT license, agreed upon by most contributors. + + Copyright holders of new code should use this license statement where + possible. They may also add themselves to the list below. + + Copyright 1987, 1988, 1989, 1998 The Open Group + Copyright 1987, 1988, 1989 Digital Equipment Corporation + Copyright 1999, 2004, 2008 Keith Packard + Copyright 2000 SuSE, Inc. + Copyright 2000 Keith Packard, member of The XFree86 Project, Inc. + Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc. + Copyright 2004 Nicholas Miell + Copyright 2005 Lars Knoll & Zack Rusin, Trolltech + Copyright 2005 Trolltech AS + Copyright 2007 Luca Barbato + Copyright 2008 Aaron Plattner, NVIDIA Corporation + Copyright 2008 Rodrigo Kumpera + Copyright 2008 André Tupinambá + Copyright 2008 Mozilla Corporation + Copyright 2008 Frederic Plourde + Copyright 2009, Oracle and/or its affiliates. All rights reserved. + Copyright 2009, 2010 Nokia Corporation + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: The above copyright notice and this + permission notice (including the next paragraph) shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +poppler + + The following software may be included in this product: poppler. Use of + any of this software is governed by the terms of the license below: + + See GPL Version 2 below + +PostgreSQL + + The following software may be included in this product: PostgreSQL. Use + of any of this software is governed by the terms of the license below: + + PostgreSQL is released under the PostgreSQL License, a liberal Open + Source license, similar to the BSD or MIT licenses. + + PostgreSQL Database Management System + (formerly known as Postgres, then as Postgres95) + + Portions Copyright (c) 1996-2012, The PostgreSQL Global Development + Group + + Portions Copyright (c) 1994, The Regents of the University of + California + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose, without fee, and without a written + agreement is hereby granted, provided that the above copyright notice + and this paragraph and the following two paragraphs appear in all + copies. + + IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY + FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, + INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS + DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + + THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE + PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF + CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, + ENHANCEMENTS, OR MODIFICATIONS. + +Python + + The following software may be included in this product: Python. Use of + any of this software is governed by the terms of the license below: + + PSF LICENSE AGREEMENT FOR PYTHON 2.3 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation + ("PSF"), and the Individual or Organization ("Licensee") accessing and + otherwise using Python 2.3 software in source or binary form and its + associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF + hereby grants Licensee a nonexclusive, royalty-free, world-wide license + to reproduce, analyze, test, perform and/or display publicly, prepare + derivative works, distribute, and otherwise use Python 2.3 alone or in + any derivative version, provided, however, that PSF's License Agreement + and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, + 2004 Python Software Foundation; All Rights Reserved" are retained in + Python 2.3 alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or + incorporates Python 2.3 or any part thereof, and wants to make the + derivative work available to others as provided herein, then Licensee + hereby agrees to include in any such work a brief summary of the + changes made to Python 2.3. + + 4. PSF is making Python 2.3 available to Licensee on an "AS IS" basis. + PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY + OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT INFRINGE ANY + THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.3 + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A + RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3, OR + ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between PSF and + Licensee. This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python 2.3, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + + BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an + office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the + Individual or Organization ("Licensee") accessing and otherwise using + this software in source or binary form and its associated documentation + ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License + Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, + world-wide license to reproduce, analyze, test, perform and/or display + publicly, prepare derivative works, distribute, and otherwise use the + Software alone or in any derivative version, provided, however, that + the BeOpen Python License is retained in the Software, alone or in any + derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" + basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE + SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all + respects by the law of the State of California, excluding conflict of + law provisions. Nothing in this License Agreement shall be deemed to + create any relationship of agency, partnership, or joint venture + between BeOpen and Licensee. This License Agreement does not grant + permission to use BeOpen trademarks or trade names in a trademark sense + to endorse or promote products or services of Licensee, or any third + party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the + permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 + + 1. This LICENSE AGREEMENT is between the Corporation for National + Research Initiatives, having an office at 1895 Preston White Drive, + Reston, VA 20191 ("CNRI"), and the Individual or Organization + ("Licensee") accessing and otherwise using Python 1.6.1 software in + source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, CNRI + hereby grants Licensee a nonexclusive, royalty-free, world-wide license + to reproduce, analyze, test, perform and/or display publicly, prepare + derivative works, distribute, and otherwise use Python 1.6.1 alone or + in any derivative version, provided, however, that CNRI's License + Agreement and CNRI's notice of copyright, i.e., "Copyright (c) + 1995-2001 Corporation for National Research Initiatives; All Rights + Reserved" are retained in Python 1.6.1 alone or in any derivative + version prepared by Licensee. Alternately, in lieu of CNRI's License + Agreement, Licensee may substitute the following text (omitting the + quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement. This Agreement together with + Python 1.6.1 may be located on the Internet using the following unique, + persistent identifier (known as a handle): 1895.22/1013. This Agreement + may also be obtained from a proxy server on the Internet using the + following URL: http://hdl.handle.net/1895.22/1013". + + 3. In the event Licensee prepares a derivative work that is based on or + incorporates Python 1.6.1 or any part thereof, and wants to make the + derivative work available to others as provided herein, then Licensee + hereby agrees to include in any such work a brief summary of the + changes made to Python 1.6.1. + + 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" + basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. + BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY + REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE + ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. This License Agreement shall be governed by the federal intellectual + property law of the United States, including without limitation the + federal copyright law, and, to the extent such U.S. federal law does + not apply, by the law of the Commonwealth of Virginia, excluding + Virginia's conflict of law provisions. Notwithstanding the foregoing, + with regard to derivative works based on Python 1.6.1 that incorporate + non-separable material that was previously distributed under the GNU + General Public License (GPL), the law of the Commonwealth of Virginia + shall govern this License Agreement only as to issues arising under or + with respect to Paragraphs 4, 5, and 7 of this License Agreement. + Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between CNRI and + Licensee. This License Agreement does not grant permission to use CNRI + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, + installing or otherwise using Python 1.6.1, Licensee agrees to be bound + by the terms and conditions of this License Agreement. + + ACCEPT + + CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + + Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, + The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR + ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Raptor RDF Parser Library + + The following software may be included in this product: Raptor RDF + Parser Library. Use of any of this software is governed by the terms of + the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Rasqal RDF Query Library + + The following software may be included in this product: Rasqal RDF + Query Library. Use of any of this software is governed by the terms of + the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Redland RDF Application Framework + + The following software may be included in this product: Redland RDF + Application Framework. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2000-2008 David Beckett + Copyright (C) 2000-2005 University of Bristol. All Rights + Reserved. + + All the licenses below are alternatives and if you select one license, + that one alone applies. + + See LGPL Version 2.1 below + + See Apache License Version 2.0 below + +Remote Control Wrapper + + The following software may be included in this product: Remote Control + Wrapper. Use of any of this software is governed by the terms of the + license below: + + Created by Martin Kahr under a MIT-style license. Copyright (c) + 2006/2007 martinkahr.com. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Rhino + + The following software may be included in this product: Rhino. Use of + any of this software is governed by the terms of the license below: + + See MPL Version 1.1 below + +SANE + + The following software may be included in this product: SANE. Use of + any of this software is governed by the terms of the license below: + + sane - Scanner Access Now Easy. Copyright (C) 1997-1999 David + Mosberger-Tang and Andreas Beck + + This file is part of the SANE package. + + This file is in the public domain. You may use and modify it as you see + fit, as long as this copyright message is included and that there is an + indication as to what modifications have been made (if any). + + SANE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. + + This file declares SANE application interface. See the SANE standard + for a detailed explanation of the interface. + +STLPort + + The following software may be included in this product:STLport. Use of + any of this software is governed by the terms of the license below: + + License Agreement + + Boris Fomitchev grants Licensee a non-exclusive, non-transferable, + royalty-free license to use STLport and its documentation without fee. + + By downloading, using, or copying STLport or any portion thereof, + Licensee agrees to abide by the intellectual property laws and all + other applicable laws of the United States of America, and to all of + the terms and conditions of this Agreement. + + Licensee shall maintain the following copyright and permission notices + on STLport sources and its documentation unchanged: + + Copyright 1999,2000 Boris Fomitchev + + This material is provided "as is", with absolutely no warranty + expressed or implied. Any use is at your own risk. + + Permission to use or copy this software for any purpose is hereby + granted without fee, provided the above notices are retained on all + copies. Permission to modify the code and to distribute modified code + is granted, provided the above notices are retained, and a notice that + the code was modified is included with the above copyright notice. + + The Licensee may distribute binaries compiled with STLport (whether + original or modified) without any royalties or restrictions. + + The Licensee may distribute original or modified STLport sources, + provided that: + * The conditions indicated in the above permission notice are met; + * The following copyright notices are retained when present, and + conditions provided in accompanying permission notices are met: + + Copyright 1994 Hewlett-Packard Company + + Copyright 1996,97 Silicon Graphics Computer Systems, Inc. + + Copyright 1997 Moscow Center for SPARC Technology. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Hewlett-Packard Company makes no + representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Silicon Graphics makes no representations + about the suitability of this software for any purpose. It is + provided "as is" without express or implied warranty. + + Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Moscow Center for SPARC Technology makes + no representations about the suitability of this software for any + purpose. It is provided "as is" without express or implied warranty. + +TWAIN + + The following software may be included in this product: TWAIN. Use of + any of this software is governed by the terms of the license below: + + The TWAIN License + + The TWAIN Working Group grants customer ("Customer") the worldwide, + royalty-free, non-exclusive license to reproduce and distribute the + software and documentation of the TWAIN toolkit ("TWAIN Toolkit"). The + TWAIN Toolkit was designed to be used by third parties to assist them + in becoming compliant with the TWAIN standard, but it has not been + developed to the standards of a commercial product. Consequently, the + TWAIN toolkit is provided AS IS without any warranty. THE TWAIN Working + Group disclaims all warranties in the TWAIN toolkit whether implied, + express or statutory, including, without limitation, the implied + warranties of merchantability, non infringement of third party rights + and fitness for a particular purpose. The TWAIN Working Group disclaims + all liability for damages, whether direct, indirect, special, + incidental, or consequential, arising from the reproduction, + distribution, modification, or other use of the TWAIN Toolkit. + + As a condition of this license, Customer agrees to include in software + programs based in whole or in part on the TWAIN Toolkit the following + provisions in (i) the header or similar file in such software and (ii) + prominently in its documentation and to require its sublicensees to + include these provisions in similar locations: The TWAIN Toolkit is + distributed as is. The developer and distributors of the TWAIN Toolkit + expressly disclaim all implied, express or statutory warranties + including, without limitation, the implied warranties of + merchantability, non infringement of third party rights and fitness for + a particular purpose. Neither the developers nor the distributors will + be liable for damages, whether direct, indirect, special, incidental, + or consequential, as a result of the reproduction, modification, + distribution or other use of the TWAIN Toolkit. + +Unicode CLDR data repository + + The following software may be included in this product: Unicode's CLDR + data repository. Use of any of this software is governed by the terms + of the license below: + + Copyright 1991-2005 Unicode, Inc. All rights reserved. Distributed + under the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the Unicode data files and any associated documentation (the + "Data Files") or Unicode software and any associated documentation (the + "Software") to deal in the Data Files or Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Data Files or Software, + and to permit persons to whom the Data Files or Software are furnished + to do so, provided that (a) the above copyright notice(s) and this + permission notice appear with all copies of the Data Files or Software, + (b) both the above copyright notice(s) and this permission notice + appear in associated documentation, and (c) there is clear notice in + each modified Data File or in the Software as well as in the + documentation associated with the Data File(s) or Software that the + data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR + ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR + SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in these Data Files or Software without prior written + authorization of the copyright holder. + +UnixODBC + + The following software may be included in this product: unixODBC. Use + of any of this software is governed by the terms of the license below: + + See LGPL Version 2.1 below + +vigra + + The following software may be included in this product: vigra. Use of + any of this software is governed by the terms of the license below: + + The VIGRA Artistic License + + (modeled after the Perl Artistic License) + + Preamble + + The intent of this document is to state the conditions under which + VIGRA may be copied, such that the author maintains some semblance of + artistic control over the development of the library, while giving the + users of the library the right to use and distribute VIGRA in a + more-or-less customary fashion, plus the right to make reasonable + modifications. + + Definitions + + "Copyright Holder" of the VIGRA library is Ullrich Koethe, Cognitive + Systems Group, University of Hamburg, Germany. + + "Library" refers to the collection of files distributed by the + Copyright Holder under the name "VIGRA" (including this LICENSE file + and all accompanying documentation), and derivatives of that collection + of files created through textual modification. + + "Standard Version" refers to the Library if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder as specified below. + + "You" is you, if you're thinking about using, copying, modifying or + distributing this Library. + + "Freely Available" means that no fee is charged for the item. It also + means that recipients of the item may redistribute it under the same + conditions they received it. + + "Reasonable copying fee" is whatever you can justify on the basis of + media cost, duplication charges, time of people involved, and so on. + (You will not be required to justify it to the Copyright Holder, but + only to the computing community at large as a market that must bear the + fee.) + + License terms + + 1. You may make and give away verbatim copies of the Standard Version + of this Library without restriction, provided that you duplicate all of + the original copyright notices, this license, and associated + disclaimers. + + 2. The Standard Version of the Library may be distributed as part of a + collection of software, provided no more than a reasonable copying fee + is charged for the software collection. + + 3. You may apply bug fixes and portability fixes derived from the + Public Domain or from the Copyright Holder. A Library modified in such + a way shall still be considered the Standard Version. + + 4. You may otherwise modify your copy of this Library in any way, + provided that you insert a prominent notice in each changed file + stating how and when you changed that file, and provided that you do at + least ONE of the following: + + a. place your modifications in the Public Domain or otherwise make them + Freely Available, for example by allowing the Copyright Holder to + include your modifications in the Standard Version of the Library. + + b. use the modified Library only within your corporation or + organization. + + c. make other distribution arrangements with the Copyright Holder. + + 5. You may distribute programs which use this Library in object code or + executable form without restriction. + + 6. Any object code generated as a result of using this Library does not + fall under the copyright of this Library, but belongs to whomever + generated it, and may be sold commercially. + + 7. The name of the Copyright Holder or the Library may not be used to + endorse or promote products derived from this software without specific + prior written permission. + + 8. THIS LIBRARY IS PROVIDED AS IS AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, + INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND OR ANY + DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER + OR NOT ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR ON ANY THEORY OF + LIABILITY ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS LIBRARY. + +W3C Simple API for CSS (SAC) + + The following software may be included in this product: W3C Simple API + for CSS (SAC). Use of any of this software is governed by the terms of + the license below: + + W3C IPR SOFTWARE NOTICE + + Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of + Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. + + Note: The original version of the W3C Software Copyright Notice and + License could be found at + http://www.w3.org/Consortium/Legal/copyright-software-19980720 + + Copyright © 1994-2002 World Wide Web Consortium, + (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University). All + Rights Reserved. http://www.w3.org/Consortium/Legal/ + + This W3C work (including software, documents, or other related items) + is being provided by the copyright holders under the following license. + By obtaining, using and/or copying this work, you (the licensee) agree + that you have read, understood, and will comply with the following + terms and conditions: + + Permission to use, copy, and modify this software and its + documentation, with or without modification, for any purpose and + without fee or royalty is hereby granted, provided that you include the + following on ALL copies of the software and documentation or portions + thereof, including modifications, that you make: + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or + terms and conditions. If none exist, a short notice of the + following form (hypertext is preferred, text is permitted) should + be used within the body of any redistributed or derivative code: + "Copyright © 2002 World Wide Web Consortium, + (Massachusetts Institute of Technology, Institut National + de Recherche en Informatique et en Automatique, Keio + University). All Rights Reserved. + http://www.w3.org/Consortium/Legal/" + 3. Notice of any changes or modifications to the W3C files, including + the date changes were made. (We recommend you provide URIs to the + location from which the code is derived.) + + THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT + HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR + DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL + OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR + DOCUMENTATION. + + The name and trademarks of copyright holders may NOT be used in + advertising or publicity pertaining to the software without specific, + written prior permission. Title to copyright in this software and any + associated documentation will at all times remain with copyright + holders. + + X11 XRender Extension + + The following software may be included in this product: X11 XRender + Extension. Use of any of this software is governed by the terms of the + license below: + + Copyright © 2000 SuSE, Inc. + + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of SuSE not be used in + advertising or publicity pertaining to distribution of the software + without specific, written prior permission. SuSE makes no + representations about the suitability of this software for any purpose. + It is provided "as is" without express or implied warranty. + + SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING + ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT + SHALL SuSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. + +Xalan + + The following software may be included in this product: Xalan. Use of + any of this software is governed by the terms of the license below: + + See Apache License Version 2.0 below + +XML Security Library (xmlsec) + + The following software may be included in this product: XML Security + Library (xmlsec). Use of any of this software is governed by the terms + of the license below: + + xmlsec, xmlsec-openssl, xmlsec-gnutls libraries + + Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE ALEKSEY SANIN BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Aleksey Sanin shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + + xmlsec-nss library + + Copyright (C) 2002-2003 Aleksey Sanin. All Rights Reserved. + + Copyright (c) 2003 America Online, Inc. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + Portions of the Software were created using source code and/or APIs + governed by the Mozilla Public License (MPL). The MPL is available at + http://www.mozilla.org/MPL/MPL-1.1.html. The MPL permits such + portions to be distributed with code not governed by MPL, as long as + the requirements of MPL are fulfilled for such portions. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE ALEKSEY SANIN BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + Except as contained in this notice, the name of Aleksey Sanin shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Software without prior written authorization from him. + +XSLT MathML Library + + The following software may be included in this product: XSLT MathML + Library. Use of any of this software is governed by the terms of the + license below: + + Copyright + + Copyright (C) 2001-2003 Vasil Yaroshevich + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + ``Software''), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + Except as contained in this notice, the names of individuals credited + with contribution to this software shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Software + without prior written authorization from the individuals in question. + + Any stylesheet derived from this Software that is publicly distributed + will be identified with a different name and the version strings in any + derived Software will be changed so that no possibility of confusion + between the derived package and this Software will exist. + + Warranty + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH + THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +zlib + + The following software may be included in this product: zlib. Use of + any of this software is governed by the terms of the license below: + + (C) 1995-2002 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software in + a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source + distribution. + + Extensions + + Only third party extensions are listed here whose source code is not in + the LibreOffice tree. + +Barcode + + The following software may be included in this product: Barcode. Use of + any of this software is governed by the terms of the license below: + + Copyright (C) Dániel Darabos and Kálmán Szalai + + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation, either version 3 of the License, or (at your + option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + See GPL Version 3 below + +Convert Text to Number + + The following software may be included in this product: Convert Text to + Number. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2008/2009 - Cor Nouws + + See LGPL Version 3 below + +OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, WebDAV + + The following software may be included in this product: + OpenOffice.org2GoogleDocs - export & import to Google Docs, Zoho, + WebDAV. Use of any of this software is governed by the terms of the + license below: + + Copyright © Przemyslaw Rumik + + See LGPL Version 3 below + +Hungarian cross-reference toolbar + + The following software may be included in this product: Hungarian + cross-reference toolbar. Use of any of this software is governed by the + terms of the license below: + + 2009-2010 (c) László Németh, license: GNU LGPL + + See LGPL Version 3 below + +LanguageTool Grammar Checker + + The following software may be included in this product: LanguageTool + Grammar Checker. Use of any of this software is governed by the terms + of the license below: + + See LGPL Version 3 below + +Numbertext + + The following software may be included in this product: Numbertext. Use + of any of this software is governed by the terms of the license below: + + License: LGPL/BSD dual-license, 2009-2010 (C) László Németh (nemeth at + openoffice dot org) + + Numbertext language data (Soros programs): + + LGPL/BSD dual-license, 2009-2010 (C) László Németh et al. (see AUTHORS) + + Serbian modules: + + CC/LGPL/BSD tri-license, 2009 (C) Goran Rakić (grakic at devbase dot + net) + + Note: for full distribution with specifications, IDE and JavaScript + implementation, see http://NUMBERTEXT.org + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. + + See LGPL Version 3 below + +SmART Gallery (Diagram) + + The following software may be included in this product: SmART Gallery + (Diagram). Use of any of this software is governed by the terms of the + license below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + +Solver for Nonlinear Programming + + The following software may be included in this product: Solver for + Nonlinear Programming. Use of any of this software is governed by the + terms of the license below: + + Copyright 2009 by Sun Microsystems, Inc. + + See LGPL Version 3 below + +Typography Toolbar + + The following software may be included in this product: Typography + Toolbar. Use of any of this software is governed by the terms of the + license below: + + 2009-2010 (c) László Németh, license: GNU LGPL + + See LGPL Version 3 below + +Validator + + The following software may be included in this product: Validator. Use + of any of this software is governed by the terms of the license below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + +WatchWindow + + The following software may be included in this product: WatchWindow. + Use of any of this software is governed by the terms of the license + below: + + Copyright © Tibor Hornyák and OxygenOffice Professional Team - + http://ooop.sf.net/ + + See LGPL Version 3 below + + Fonts + +Adobe PostScript® AFM files + + The following software may be included in this product: PostScript® AFM + Files. Use of any of this software is governed by the terms of the + license below: + + Adobe Core 35 AFM Files with 314 Glyph Entries + + This file and the 35 PostScript® AFM files it accompanies may be used, + copied, and distributed for any purpose and without charge, with or + without modification, provided that all copyright notices are retained; + that the AFM files are not distributed without this file; that all + modifications to this file or any of the AFM files are prominently + noted in the modified file(s); and that this paragraph is not modified. + Adobe Systems has no responsibility or obligation to support the use of + the AFM files. + +Caladea + + Copyright (c) 2012 Huerta Tipografia + + This Font Software is licensed under the Apache License, Version 2.0 as + shown below. + + See Apache License Version 2.0 below + +Carlito + + Copyright (c) 2010-2013 by tyPoland Lukasz Dziedzic with Reserved Font + Name "Carlito". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1 as shown below. + + See SIL Open Font License, Version 1.1 below + +Deja Vu + + The following software may be included in this product: Deja Vu fonts. + Use of any of this software is governed by the terms of the license + below: + + Fonts are (c) Bitstream (see below). DejaVu changes are in public + domain. Glyphs imported from Arev fonts are (c) Tavmjong Bah (see + below) + + Bitstream Vera Fonts Copyright + + Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream + Vera is a trademark of Bitstream, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the Font Software, including without limitation the rights to use, + copy, merge, publish, distribute, and/or sell copies of the Font + Software, and to permit persons to whom the Font Software is furnished + to do so, subject to the following conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the Fonts, + only if the fonts are renamed to names not containing either the words + "Bitstream" or the word "Vera". + + This License becomes null and void to the extent applicable to Fonts or + Font Software that has been modified and is distributed under the + "Bitstream Vera" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the names of Gnome, the Gnome + Foundation, and Bitstream Inc., shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Font + Software without prior written authorization from the Gnome Foundation + or Bitstream Inc., respectively. For further information, contact: + fonts at gnome dot org. + + Arev Fonts Copyright + + Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the modifications to the Bitstream Vera Font Software, including + without limitation the rights to use, copy, merge, publish, distribute, + and/or sell copies of the Font Software, and to permit persons to whom + the Font Software is furnished to do so, subject to the following + conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the Fonts, + only if the fonts are renamed to names not containing either the words + "Tavmjong Bah" or the word "Arev". + + This License becomes null and void to the extent applicable to Fonts or + Font Software that has been modified and is distributed under the + "Tavmjong Bah Arev" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the name of Tavmjong Bah shall not + be used in advertising or otherwise to promote the sale, use or other + dealings in this Font Software without prior written authorization from + Tavmjong Bah. For further information, contact: tavmjong @ free . fr. + +Gentium + + The following software may be included in this product: Gentium fonts. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2003-2008 SIL International (http://www.sil.org/), + with Reserved Font Names "Gentium" and "SIL". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Liberation + + The following software may be included in this product: Liberation + fonts. Use of any of this software is governed by the terms of the + license below: + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY + LIBERATION FONT SOFTWARE + + This agreement governs the use of the Software and any updates to the + Software, regardless of the delivery mechanism. Subject to the + following terms, Red Hat, Inc. ("Red Hat") grants to the user + ("Client") a license to this work pursuant to the GNU General Public + License v.2 with the exceptions set forth below and such other terms as + are set forth in this End User License Agreement. + + 1. The Software and License Exception. LIBERATION font software (the + "Software") consists of TrueType-OpenType formatted font software for + rendering LIBERATION typefaces in sans-serif, serif, and monospaced + character styles. You are licensed to use, modify, copy, and distribute + the Software pursuant to the GNU General Public License v.2 with the + following exceptions: + + (a) As a special exception, if you create a document which uses this + font, and embed this font or unaltered portions of this font into the + document, this font does not by itself cause the resulting document to + be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the document might be covered + by the GNU General Public License. If you modify this font, you may + extend this exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. + + (b) As a further exception, any distribution of the object code of the + Software in a physical product must provide you the right to access and + modify the source code for the Software and to reinstall that modified + version of the Software in object code form on the same physical + product on which you received it. + + 2. Intellectual Property Rights. The Software and each of its + components, including the source code, documentation, appearance, + structure and organization are owned by Red Hat and others and are + protected under copyright and other laws. Title to the Software and any + component, or to any copy, modification, or merged portion shall remain + with the aforementioned, subject to the applicable license. The + "LIBERATION" trademark is a trademark of Red Hat, Inc. in the U.S. and + other countries. This agreement does not permit Client to distribute + modified versions of the Software using Red Hat's trademarks. If Client + makes a redistribution of a modified version of the Software, then + Client must modify the files names to remove any reference to the Red + Hat trademarks and must not use the Red Hat trademarks in any way to + reference or promote the modified Software. + + 3. Limited Warranty. To the maximum extent permitted under applicable + law, the Software is provided and licensed "as is" without warranty of + any kind, expressed or implied, including the implied warranties of + merchantability, non-infringement or fitness for a particular purpose. + Red Hat does not warrant that the functions contained in the Software + will meet Client's requirements or that the operation of the Software + will be entirely error free or appear precisely as described in the + accompanying documentation. + + 4. Limitation of Remedies and Liability. To the maximum extent + permitted by applicable law, Red Hat or any Red Hat authorized dealer + will not be liable to Client for any incidental or consequential + damages, including lost profits or lost savings arising out of the use + or inability to use the Software, even if Red Hat or such dealer has + been advised of the possibility of such damages. + + 5. General. If any provision of this agreement is held to be + unenforceable, that shall not affect the enforceability of the + remaining provisions. This agreement shall be governed by the laws of + the State of North Carolina and of the United States, without regard to + any conflict of laws provisions, except that the United Nations + Convention on the International Sale of Goods shall not apply. + + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a + trademark of Red Hat, Inc. + +Linux Libertine G and Linux Biolinum G + + This Font Software is Copyright (c) 2003-2006, Philipp H. Poll + (http://linuxlibertine.sf.net/). + All Rights Reserved. + "Linux Libertine" is a Reserved Font Name for this Font Software. + + Graphite extension of the original Linux Libertine font was made by + Laszlo Nemeth under the same license. + Our fonts are free in the sense of the GPL. In short: Changing the font + is allowed as long as the derivative work is published under the same + license again. Pedantics keep claiming that the embedded use of + GPL-fonts in i.e. PDFs requires the free publication of the PDF as + well. This is why our GPL contains the so called "font exception". + + See GPL version 2 below + + As a special exception, if you create a document which uses this font, + and embed this font or unaltered portions of this font into the + document, this font does not by itself cause the resulting document to + be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the document might be covered + by the GNU General Public License. If you modify this font, you may + extend this exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. + + Additionally our fonts are licensed under the Open Fonts License (see + below). + + This Font Software is licensed under the SIL Open Font License, Version + 1.0. No modification of the license is permitted, only verbatim copy is + allowed. This license is copied below, and is also available with a FAQ + at: http://scripts.sil.org/OFL + + SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 + + PREAMBLE The goals of the Open Font License (OFL) are to stimulate + worldwide development of cooperative font projects, to support the font + creation efforts of academic and linguistic communities, and to provide + an open framework in which fonts may be shared and improved in + partnership with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and sold with any software provided that the font names + of derivative works are changed. The fonts and derivatives, however, + cannot be released under any other type of license. + + DEFINITIONS "Font Software" refers to any and all of the following: - + font files - data files - source code - build scripts - documentation + + "Reserved Font Name" refers to the Font Software name as seen by users + and any other names as specified after the copyright statement. + + "Standard Version" refers to the collection of Font Software components + as distributed by the Copyright Holder. + + "Modified Version" refers to any derivative font software made by + adding to, deleting, or substituting -- in part or in whole -- any of + the components of the Standard Version, by changing formats or by + porting the Font Software to a new environment. + + "Author" refers to any designer, engineer, programmer, technical writer + or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS Permission is hereby granted, free of charge, + to any person obtaining a copy of the Font Software, to use, study, + copy, merge, embed, modify, redistribute, and sell modified and + unmodified copies of the Font Software, subject to the following + conditions: + + 1) Neither the Font Software nor any of its individual components, in + Standard or Modified Versions, may be sold by itself. + + 2) Standard or Modified Versions of the Font Software may be bundled, + redistributed and sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or in + the appropriate machine-readable metadata fields within text or binary + files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s), in part or in whole, unless explicit written permission is + granted by the Copyright Holder. This restriction applies to all + references stored in the Font Software, such as the font menu name and + other font description fields, which are used to differentiate the font + from others. + + 4) The name(s) of the Copyright Holder or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, must + be distributed using this license, and may not be distributed under any + other license. + + TERMINATION This license becomes null and void if any of the above + conditions are not met. + + DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO + EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + +Open Sans + + The following software may be included in this product: Open Sans + fonts. Use of any of this software is governed by the terms of the + license below: + + See Apache License Version 2.0 below + +PT Serif + + The following software may be included in this product: PT Serif fonts. + Use of any of this software is governed by the terms of the license + below: + + Copyright (c) 2010, ParaType Ltd. + (http://www.paratype.com/public), with Reserved Font Names "PT + Sans", "PT Serif" and "ParaType". + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Source Code Pro + + The following software may be included in this product: Source Code Pro + fonts. Use of any of this software is governed by the terms of the + license below: + + Copyright 2010, 2012 Adobe Systems Incorporated + (http://www.adobe.com/), with Reserved Font Name 'Source'. All + Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries. + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + +Source Sans Pro + + The following software may be included in this product: Source Sans Pro + fonts. Use of any of this software is governed by the terms of the + license below: + + Copyright 2010, 2012 Adobe Systems Incorporated + (http://www.adobe.com/), with Reserved Font Name 'Source'. All + Rights Reserved. Source is a trademark of Adobe Systems Incorporated in + the United States and/or other countries. + + This Font Software is licensed under the SIL Open Font License, Version + 1.1. This license is copied below, and is also available with a + FAQ at: http://scripts.sil.org/OFL + + See SIL Open Font License, Version 1.1 below + + Dictionaries + +Afrikaans + + Spelling dictionary + + The following software may be included in this product: Afrikaans + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Afrikaans Wordlist + + The Afrikaans wordlist used by MySpell is made up of multiple + wordlists. These are wither in the public domain, are used with the + authors permission or are licensed under the LGPL. The majority of + the words are derived from the Nieuwoudt and Viljoen list. + + The Nieuwoudt list was first published in this form in 1993 by Bernard + A Nieuwoudt. Contact details: origen at icon co za or bnieuwoudt at acm + org + + Copyright (C) 1993, 2003 Bernard A Nieuwoudt relicensed under the + LGPL. + + The Viljoen list is derived from the original Nieuwoudt list and is + used with permission of the author and relicensed under the LGPL. + + Copyright (C) 1998 Danie Viljoen + + MySpell Affix File + + Copyright (C) 2003 Dwayne Bailey under the LGPL based on the + original ispell list by Renier de Vos which was released under the BSD + license. + + Hyphenation patterns + + The following software may be included in this product: Afrikaans + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2005 Friedel Wolff + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2.1 of the + License, or (at your option) any later version. + +Arabic + + Spelling dictionary + + The following software may be included in this product: Arabic spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Author of Hunspell-ar, the arabic dictionary for Hunspell + (spellchecker): 2006-2008, Mohamed Kebdani, med.kebdani (at) gmail.com + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + + Thesaurus + + The following software may be included in this product: Arabic + thesaurus. Use of any of this software is governed by the terms of the + license below: + + 2006-2009, Taha Zerrouki, taha_zerrouki at gawab.com + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL") the + Mozilla Public License Version 1.1 or later (the "MPL"). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licenses for the specific language governing rights and limitations + under the licenses. + +Aragonese + + Spelling dictionary + + The following software may be included in this product: Aragonese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) 2011 Santiago Paricio (spariciogmailcom) + Copyright (c) 2011 Juan Pablo Martínez (jpmartunizares) + + MPL1.1/GPLv3+/LGPLv3+ Tri-licence + + Version 0.2 of the wordlist (an_ES.dic) has been built using free + corpuses have been used as Wikipedia in Aragonese + (http://an.wikipedia.org) and wordlists obtained from Apertium + dictionaries + (http://apertium.svn.sourceforge.net/viewvc/apertium/tags/apertium + -es-an/release-2.0/). + +Belarusian + + Spelling dictionary + + The following software may be included in this product: Belarusian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Creative Commons CC-BY-SA + + Author: Mikalai Udodau + Origin: Словазбор аўтарскі; арфаграфія паводле ТСБМ-2005 + +Bengali + + Spelling dictionary + + The following software may be included in this product: Bengali + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GNU GPL version 2.0 below + +Breton + + Spelling dictionary + + The following software may be included in this product: Breton spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + LICENSE: "An Drouizig" spelling dictionary: LGPL + +Bulgarian + + Spelling dictionary + + The following software may be included in this product: Bulgarian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GNU GPL version 2.0 below + + Hyphenation patterns + + The following software may be included in this product: Bulgarian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2001 Anton Zinoviev and Borislav Mitev + Maintained by Radostin Radnev + + See GNU GPL version 2.0 below + + Thesaurus + + The following software may be included in this product: Bulgarian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2001 Radostin Radnev + + See GNU GPL version 2.0 below + +Catalan + + Spelling dictionary + + The following software may be included in this product: Catalan + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2002-2008 Joan Moratinos + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. This program is distributed in the hope that + it will be useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + See the GNU General Public License for more details. You should have + received a copy of the GNU General Public License along with this + program; if not, write to the Free Software Foundation, Inc., 59 Temple + Place - Suite 330, Boston, MA 02111-1307, USA. + + See GPL version 3 below + + Hyphenation patterns + + The following software may be included in this product: Catalan + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL version 3 below + + Thesaurus + + The following software may be included in this product: Catalan + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2009 Joan Montané --- Softcatalà + + License: GPL/LGPL + + See GPL version 3 below + + See LGPL version 3 below + +Czech + + Thesaurus + + The following software may be included in this product: Czech + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 2002 Pavel Rychly, Pavel Smrz, {pary,smrz}@fi.muni.cz, + NLPlab, Faculty of Informatics, Masaryk University + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this data (the "Data"), to deal in the Data without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Data, and to permit persons to whom the Data is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Data. + + THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA + OR THE USE OR OTHER DEALINGS IN THE DATA. + +Croatian + + Spelling dictionary + + The following software may be included in this product: Croatian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Croatian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + These patterns were manually converted from TeX hyphenation patterns + using the guide at + http://wiki.services.openoffice.org/wiki/Documentation/SL/Using_Te + X_hyphenation_patterns_in_OpenOffice.org + + Original version: + http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8 + /patterns/txt/hyph-hr.pat.txt?revision=416 + + License: OpenOffice.org adaption of this file is licensed under the GNU + LGPL license. + + See LGPL Version 2.1 below + + Original license text: This file is part of hyph-utf8 package and + resulted from semi-manual conversions of hyphenation patterns into + UTF-8 in June 2008. + + Source: hrhyph.tex (1996-04-10) Author: Marinović Igor + + The above mentioned file should become obsolete, and the author of the + original file should preferably modify this file instead. + + Modifications were needed in order to support native UTF-8 engines, but + functionality (hopefully) didn't change in any way, at least not + intentionally. This file is no longer stand-alone; at least for 8-bit + engines you probably want to use loadhyph-foo.tex (which will load this + file) instead. + + Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur + Reutenauer with help & support from: - Karl Berry, who gave us free + hands and all resources - Taco Hoekwater, with useful macros - Hans + Hagen, who did the unicodifisation of patterns already long before and + helped with testing, suggestions and bug reports - Norbert Preining, + who tested & integrated patterns into TeX Live + + However, the "copyright/copyleft" owner of patterns remains the + original author. + + The copyright statement of this file is thus: + + Do with this file whatever needs to be done in future for the sake of + "a better world" as long as you respect the copyright of original file. + If you're the original author of patterns or taking over a new + revolution, please remove all of the TUG comments & credits that we + added here - you are the Queen / the King, we are only the servants. + + If you want to change this file, rather than uploading directly to + CTAN, we would be grateful if you could send it to us + (http://tug.org/tex-hyphen) or ask for credentials for SVN + repository and commit it yourself; we will then upload the whole + "package" to CTAN. + + Before a new "pattern-revolution" starts, please try to follow some + guidelines if possible: + + - \lccode is *forbidden*, and I really mean it - all the patterns + should be in UTF-8 - the only "allowed" TeX commands in this file are: + \patterns, \hyphenation, and if you really cannot do without, also + \input and \message - in particular, please no \catcode or \lccode + changes, they belong to loadhyph-foo.tex, and no \lefthyphenmin and + \righthyphenmin, they have no influence here and belong elsewhere - + \begingroup and/or \endinput is not needed - feel free to do whatever + you want inside comments + + We know that TeX is extremely powerful, but give a stupid parser at + least a chance to read your patterns. + + For more information see http://tug.org/tex-hyphen + +Danish + + Spelling dictionary + + The following software may be included in this product: Danish spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Stavekontrolden - Danish dictionary files for Hunspell + + Version 1.6 - 2010-09-19 + + da_DK.dic, da_DK.aff: © 2010 Foreningen for frit tilgængelige + sprogværktøjer + + http://www.stavekontrolden.dk + + These files are published under the following open source licenses: + * GNU GPL version 2.0 + * GNU LGPL version 2.1 + * Mozilla MPL version 1.1 + + This dictionary is based on data from Det Danske Sprog- og + Litteraturselskab + + (The Danish Society for Language and Literature), + http://www.dsl.dk. + + Hyphenation patterns + + The following software may be included in this product: Danish + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Thesaurus + + The following software may be included in this product: Danish + thesaurus. Use of any of this software is governed by the terms of the + license below: + * GNU GPL version 2.0 + * GNU LGPL version 2.1 + * Mozilla MPL version 1.1 + + Stavekontrolden - Danish thesaurus files for OpenOffice.org 3.0. + + Den Danske Ordbog - Synonymer + + DanNet - leksikalsk-semantisk ordnet fra Det Danske Sprog- og + Litteraturselskab og Center for Sprogteknologi, Københavns Universitet + + © 2007 Foreningen for frit tilgængelige sprogværktøjer + +Dutch + + Spelling dictionary and hyphenation patterns + + The following software may be included in this product: Dutch spelling + dictionary and hyphenation patterns. Use of any of this software is + governed by the terms of the license below: + + 1. Name: Dutch word list for spell checking - OpenTaal + + 2. Version of words list: 2.10G; version of spell checking: 2.10G. + + 3. Requirements: Hunspell 1.2.8 and higher + + 4. Spelling Seal of Dutch Language Union: The OpenTaal list of lemmas + has received the Spelling Seal of Approval from the Dutch Language + Union, the formal Dutch language institute. For more information please + see: http://www.taalunieversum.org/keurmerk/ + + 5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., © + 1996 Nederlandstalige Tex Gebruikersgroep + + 6. Licenses: OpenTaal aims to create and publish free Dutch language + files. To enable the broadest (re)use the language files are freely + available under the below, liberal licenses at the discretion of the + user. We strongly recommend to read the applicable license before + usage. + + A. BSD (revised version): + + - Full license text: + http://creativecommons.org/licenses/BSD/legalcode + + - Summary: http://creativecommons.org/licenses/BSD/deed.en + + B. Creative Commons, Attribution 3.0 (unported) + + - Full license text: + http://creativecommons.org/licenses/by/3.0/legalcode + + - Summary: http://creativecommons.org/licenses/by/3.0/deed.en + + 7. Support OpenTaal: OpenTaal is a non-profit volunteer project. With + your (small) financial support OpenTaal will further expand its + activities and enhance its professionalism. Your donation is welcome at + account number: 15.62.32.782, BIC: RABONL2U, IBAN: NL88RABO0156232782 + of Stichting OpenTaal / OpenTaal Foundation. In the Netherlands your + donations are tax deductible. OpenTaal Foundation has been designated + by the Dutch Tax Administration as an Institution for General Benefit + (algemeen nut beogende instelling or ANBI). Please see: + http://belastingdienst.nl/anbi/ + + 8. Participate: Everyone is welcome to participate. Please give + feedback, discuss on the mailing list or run Harvester. By contributing + to the project you agree that your contribution is available under free + or/open source licenses. In case you wish, your name will be mentioned + on the website. Your are invited to send us your written request. + + 9. Rights of third parties: OpenTaal respects the rights of third + parties and aims to keep its data freely available. Therefore you may + no use protected sources of third parties, i.e. dictionaries, without + their permission when you contribute to the project. It is permitted to + use the materials of the Dutch Language Union, i.e. their spelling + instruction and word list. In case you believe OpenTaal is violating + your rights, we ask you to send us a written notice as soon as + possible. + + 10.Contact: OpenTaal Foundation, http://www.opentaal.org, + bestuur@opentaal.org + +German + + Spelling dictionary + + The following software may be included in this product: German spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Author: Franz Michael Baumann + + License: GNU GPL Version 2 or GPL Version 3 or OASIS 0.1 + + The "frami"-dictionary contains the complete word list of Björn Jacke's + "igerman98" + + (Version: 2011-03-21) and numerous supplements by Franz Michael Baumann + according to the reform of 2006-08-01. + + OASIS distribution license agreement 0.1 from 2005-11-10 + + Without any modifications this dictionary may be distributed with + programs that support the OASIS Open Document Format for Office + Applications and whose PRIMARY format for saving documents is the Open + Document Format. + + This requires that all licenses and copyright files are also + distributed together with the package the dictionary is shipped with. + + Any modifications of the dictionary files are not allowed for this + agreement, modifications require the use of the GNU GENERAL PUBLIC + LICENSE. + + If you have questions or don't get along with this, send me your + comments/questions/ideas to Bjoern Jacke + + See GPL version 3 below + + See GPL version 2 below + + Hyphenation patterns + + The following software may be included in this product: German + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Authors: Marco Huggenberger / Daniel Naber + + Version: 2011-05-05 (author and license information in source file + added) + + License: GNU LGPL + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: German + thesaurus. Use of any of this software is governed by the terms of the + license below: + + OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen + + Version: 2011-05-04 AT + + License: GNU LGPL + + See LGPL Version 2.1 below + +Greek + + Spelling dictionary + + The following software may be included in this product: Greek spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + Hyphenation patterns + + The following software may be included in this product: Greek + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See LGPL Version 2.1 below + +English (Australia) + + Spelling dictionary + + The following software may be included in this product: English + (Australia) spelling dictionary. Use of any of this software is + governed by the terms of the license below: + + Copyright (C) 2006 Cameron Roy + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL version 2 below + +English (Canada) + + Spelling dictionary + + The following software may be included in this product: English + (Canada) spelling dictionary. Use of any of this software is governed + by the terms of the license below: +Wordlist en_CA spelling and morphological dictionary for OpenOffice.org +Version 2008-12-18 + +Based on Wordlist Hunspell dictionaries version 2008-12-05 +and Wordlist POS and AGID data created by Kevin Atkinson +and released on http://wordlist.sourceforge.net. + +Other fixes: + +OOo Issue 48060 - add numbers with affixes by COMPOUNDRULE (1st, 111th, 1990s et +c.) +New REP items (better suggestions for accented words and a few mistakes) +OOo Issue 63541 - remove *dessicated, *dessication + +László Németh + +Original license: + +2008-12-05 Release + +README file for en_US and en_CA Hunspell dictionaries + +These dictionaries are created using the speller/make-hunspell-dict +dictionary in SCOWL, SVN revision 74. + +The NOSUGGEST flag was added to certain taboo words. While I made an +honest attempt to flag the strongest taboo words with the NOSUGGEST +flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD. +The list was originally derived from Németh László, however I removed +some words which, while being considered taboo by some dictionaries, +are not really considered swear words in today's society. + +You can find SCOWL and friend at http://wordlist.sourceforge.net/. +Bug reports should go to the Issue Tracker found on the previously +mentioned web site. General discussion should go to the +wordlist-devel at sourceforge net mailing list. + +COPYRIGHT, SOURCES, and CREDITS: + +The en_US and en_CA dictionaries come directly from SCOWL (up to level +60) and is thus under the same copyright of SCOWL. The affix file is +a heavily modified version of the original english.aff file which was +released as part of Geoff Kuenning's Ispell and as such is covered by +his BSD license. Part of SCOWL is also based on Ispell thus the +Ispell copyright is included with the SCOWL copyright. + +The collective work is Copyright 2000-2007 by Kevin Atkinson as well +as any of the copyrights mentioned below: + + Copyright 2000-2007 by Kevin Atkinson + + Permission to use, copy, modify, distribute and sell these word + lists, the associated scripts, the output created from the scripts, + and its documentation for any purpose is hereby granted without fee, + provided that the above copyright notice appears in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation. Kevin Atkinson makes no representations + about the suitability of this array for any purpose. It is provided + "as is" without express or implied warranty. + +Alan Beale also deserves special credit as he has, +in addition to providing the 12Dicts package and being a major +contributor to the ENABLE word list, given me an incredible amount of +feedback and created a number of special lists (those found in the +Supplement) in order to help improve the overall quality of SCOWL. + +The 10 level includes the 1000 most common English words (according to +the Moby (TM) Words II [MWords] package), a subset of the 1000 most +common words on the Internet (again, according to Moby Words II), and +frequently class 16 from Brian Kelk's "UK English Wordlist +with Frequency Classification". + +The MWords package was explicitly placed in the public domain: + + The Moby lexicon project is complete and has + been place into the public domain. Use, sell, + rework, excerpt and use in any way on any platform. + + Placing this material on internal or public servers is + also encouraged. The compiler is not aware of any + export restrictions so freely distribute world-wide. + + You can verify the public domain status by contacting + + Grady Ward + 3449 Martha Ct. + Arcata, CA 95521-4884 + + grady@netcom.com + grady@northcoast.com + +The "UK English Wordlist With Frequency Classification" is also in the +Public Domain: + + Date: Sat, 08 Jul 2000 20:27:21 +0100 + From: Brian Kelk + + > I was wondering what the copyright status of your "UK English + > Wordlist With Frequency Classification" word list as it seems to + > be lacking any copyright notice. + + There were many many sources in total, but any text marked + "copyright" was avoided. Locally-written documentation was one + source. An earlier version of the list resided in a filespace called + PUBLIC on the University mainframe, because it was considered public + domain. + + Date: Tue, 11 Jul 2000 19:31:34 +0100 + + > So are you saying your word list is also in the public domain? + + That is the intention. + +The 20 level includes frequency classes 7-15 from Brian's word list. + +The 35 level includes frequency classes 2-6 and words appearing in at +least 11 of 12 dictionaries as indicated in the 12Dicts package. All +words from the 12Dicts package have had likely inflections added via +my inflection database. + +The 12Dicts package and Supplement is in the Public Domain. + +The WordNet database, which was used in the creation of the +Inflections database, is under the following copyright: + + This software and database is being provided to you, the LICENSEE, + by Princeton University under the following license. By obtaining, + using and/or copying this software and database, you agree that you + have read, understood, and will comply with these terms and + conditions.: + + Permission to use, copy, modify and distribute this software and + database and its documentation for any purpose and without fee or + royalty is hereby granted, provided that you agree to comply with + the following copyright notice and statements, including the + disclaimer, and that the same appear on ALL copies of the software, + database and documentation, including modifications that you make + for internal use or for distribution. + + WordNet 1.6 Copyright 1997 by Princeton University. All rights + reserved. + + THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON + UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- + ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE + LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY + THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + + The name of Princeton University or Princeton may not be used in + advertising or publicity pertaining to distribution of the software + and/or database. Title to copyright in this software, database and + any associated documentation shall at all times remain with + Princeton University and LICENSEE agrees to preserve same. + +The 40 level includes words from Alan's 3esl list found in version 4.0 +of his 12dicts package. Like his other stuff the 3esl list is also in the +public domain. + +The 50 level includes Brian's frequency class 1, words words appearing +in at least 5 of 12 of the dictionaries as indicated in the 12Dicts +package, and uppercase words in at least 4 of the previous 12 +dictionaries. A decent number of proper names is also included: The +top 1000 male, female, and Last names from the 1990 Census report; a +list of names sent to me by Alan Beale; and a few names that I added +myself. Finally a small list of abbreviations not commonly found in +other word lists is included. + +The name files form the Census report is a government document which I +don't think can be copyrighted. + +The file special-jargon.50 uses common.lst and word.lst from the +"Unofficial Jargon File Word Lists" which is derived from "The Jargon +File". All of which is in the Public Domain. This file also contain +a few extra UNIX terms which are found in the file "unix-terms" in the +special/ directory. + +The 55 level includes words from Alan's 2of4brif list found in version +4.0 of his 12dicts package. Like his other stuff the 2of4brif is also +in the public domain. + +The 60 level includes Brian's frequency class 0 and all words +appearing in at least 2 of the 12 dictionaries as indicated by the +12Dicts package. A large number of names are also included: The 4,946 +female names and the 3,897 male names from the MWords package. + +The 70 level includes the 74,550 common dictionary words and the +21,986 names list from the MWords package The common dictionary words, +like those from the 12Dicts package, have had all likely inflections +added. The 70 level also included the 5desk list from version 4.0 of +the 12Dics package which is the public domain + +The 80 level includes the ENABLE word list, all the lists in the +ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics +Dictionary" (UKACD), the list of signature words in from YAWL package, +and the 10,196 places list from the MWords package. + +The ENABLE package, mainted by M\Cooper , +is in the Public Domain: + + The ENABLE master word list, WORD.LST, is herewith formally released + into the Public Domain. Anyone is free to use it or distribute it in + any manner they see fit. No fee or registration is required for its + use nor are "contributions" solicited (if you feel you absolutely + must contribute something for your own peace of mind, the authors of + the ENABLE list ask that you make a donation on their behalf to your + favorite charity). This word list is our gift to the Scrabble + community, as an alternate to "official" word lists. Game designers + may feel free to incorporate the WORD.LST into their games. Please + mention the source and credit us as originators of the list. Note + that if you, as a game designer, use the WORD.LST in your product, + you may still copyright and protect your product, but you may *not* + legally copyright or in any way restrict redistribution of the + WORD.LST portion of your product. This *may* under law restrict your + rights to restrict your users' rights, but that is only fair. + +UKACD, by J Ross Beresford , is under the +following copyright: + + Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved. + + The following restriction is placed on the use of this publication: + if The UK Advanced Cryptics Dictionary is used in a software package + or redistributed in any form, the copyright notice must be + prominently displayed and the text of this document must be included + verbatim. + + There are no other restrictions: I would like to see the list + distributed as widely as possible. + +The 95 level includes the 354,984 single words and 256,772 compound +words from the MWords package, ABLE.LST from the ENABLE Supplement, +and some additional words found in my part-of-speech database that +were not found anywhere else. + +Accent information was taken from UKACD. + +My VARCON package was used to create the American, British, and +Canadian word list. + +Since the original word lists used used in the VARCON package came +from the Ispell distribution they are under the Ispell copyright: + + Copyright 1993, Geoff Kuenning, Granada Hills, CA + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All modifications to the source code must be clearly marked as + such. Binary redistribution based on modified source code + must be clearly marked as modified versions in the documentation + and/or other materials provided with the distribution. + (clause 4 removed with permission from Geoff Kuenning) + 5. The name of Geoff Kuenning may not be used to endorse or promote + products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF + KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN + ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +English (South Africa) + + Spelling dictionary + + The following software may be included in this product: English (South + Africa) spelling dictionary. Use of any of this software is governed by + the terms of the license below: + + See LGPL Version 2.1 below + +English (United Kingdom) + + Spelling dictionary + + The following software may be included in this product: English (United + Kingdom) spelling dictionary. Use of any of this software is governed + by the terms of the license below: + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: English (United + Kingdom) hyphenation patterns. Use of any of this software is governed + by the terms of the license below: + + BSD-style. Unlimited copying, redistribution and modification of this + file is permitted with this copyright and license information. + +English (USA) + + Spelling dictionary + + The following software may be included in this product: English (USA) + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See English (Canada). + + Hyphenation patterns + + The following software may be included in this product: English (USA) + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + BSD-style. Unlimited copying, redistribution and modification of this + file + is permitted with this copyright and license information. + + Thesaurus + + The following software may be included in this product: English (USA) + thesaurus. Use of any of this software is governed by the terms of the + license below: + + WordNet Release 2.1 + + This software and database is being provided to you, the LICENSEE, by + Princeton University under the following license. By obtaining, using + and/or copying this software and database, you agree that you have + read, understood, and will comply with these terms and conditions.: + + Permission to use, copy, modify and distribute this software and + database and its documentation for any purpose and without fee or + royalty is hereby granted, provided that you agree to comply with the + following copyright notice and statements, including the disclaimer, + and that the same appear on ALL copies of the software, database and + documentation, including modifications that you make for internal use + or for distribution. + + WordNet 2.1 Copyright 2005 by Princeton University. All rights + reserved. + + THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON UNIVERSITY + MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF + EXAMPLE, BUT NOT LIMITATION, PRINCETON UNIVERSITY MAKES NO + REPRESENTATIONS OR WARRANTIES OF MERCHANT- ABILITY OR FITNESS FOR ANY + PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE, DATABASE + OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, + TRADEMARKS OR OTHER RIGHTS. + + The name of Princeton University or Princeton may not be used in + advertising or publicity pertaining to distribution of the software + and/or database. Title to copyright in this software, database and any + associated documentation shall at all times remain with Princeton + University and LICENSEE agrees to preserve same. + + English sentence checker for LibreOffice + + The following software may be included in this product: English + sentence checker. Use of any of this software is governed by the terms + of the license below: + + 2011-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+ + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Estonian + + Spelling dictionary + + The following software may be included in this product: Estonian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Dictionary is adapted to myspell by Jaak Pruulmann (jjpp@meso.ee, + http://www.meso.ee/~jjpp/speller/ ) on the base of word list + created and shared by IEL (Institute of the Estonian Language, + tarkvara@eki.ee). The original of EKI software license is available at + http://www.eki.ee/eki/licence.html. The work of Jaak Pruulmann is + licensed under LGPL (GNU Lesser General Public License). The copies of + licenses are added to current file. IEL is informed about the use of + this word list. + + Software License Agreement + + Institute of the Estonian Language + + Copyright © Institute of the Estonian Language + + E-mail: tarkvara@eki.ee + + URL: http://www.eki.ee/tarkvara/ + + The present License Agreement gives the user of this Software Product + (hereinafter: Product) the right to use the Product for whatever + purpose (incl. distribution, copying, altering, inclusion in other + software, and selling) on the following conditions: + + The present License Agreement should belong unaltered to each copy ever + made of this Product; + + Neither the Institute of the Estonian Language (hereinafter: IEL) nor + the author(s) of the Product will take responsibility for any + detriment, direct or indirect, possibly ensuing from the application of + the Product; + + The IEL is ready to share the Product with other users as we wish to + advance research on the Estonian language and to promote the use of + Estonian in IT-technology now rapidly developing, yet we refuse to bind + ourselves to any further obligation, which means that the IEL is not + obliged either to warrant the suitability of the Product for a concrete + use, to improve the program, or to provide a more detailed description + of the underlying algorithms. (Which does not mean, though, that we may + not do it.) + + Whenever you use the Product, we request that you inform us by writing + to the e-mail address tarkvara@eki.ee or to street address listed + below. + + Institute of the Estonian Language + + Roosikrantsi 6 + EE-10119 Tallinn + ESTONIA + + E-mail: eki@eki.ee + Phone & Fax: +372-6411443 + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Estonian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Hyphenation file is adapted to OpenOffice.org by Jaak Pruulmann + (jjpp@meso.ee, http://www.meso.ee/~jjpp/speller/) on the base of + the LaTeX hyphenation file created by Enn Saar (saar@aai.ee), who has + signed the JCA (Joint Copyright Agreement) allowing to use his work for + OpenOffice.org. The original file is available at address + http://www.cs.ut.ee/~tqnu/eehyph.tex and in the heading of the + file it is written that this file is licensed under LPPL. The work of + Jaak Pruulmann is licensed under LGPL (GNU Lesser General Public + License). + + See LPPL below + + See LGPL Version 2.1 below + +French + + Spelling dictionary + + The following software may be included in this product: French spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Olivier R. - dicollectefreefr + + Dicollecte: http://www.dicollecte.org/ + + Licenses: + * MPL: Mozilla Public License version 1.1 or higher + * GPL: GNU General Public License version 2.0 or higher + * LGPL: GNU Lesser General Public License version 2.1 or higher + + Hyphenation patterns + + The following software may be included in this product: French + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation tables frhyph.tex (V2.12) + <2002/12/11> + http://mirror.ctan.org/language/hyphenation/frhyph.tex + + The TeX hyphenation tables are released under the LaTeX Project Public + License (LPPL) + + See LPPL below + + License: OpenOffice.org adaptions of this package are licensed under + the GNU Lesser General Public License (LGPL) version 2.1 or higher. + + See LGPL Version 2.1 below + + Author: Conversion author is Paul Pichaureau + + + Based on a previous conversion by Blaise Drayer + + Thesaurus + + The following software may be included in this product: French + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Licence: LGPL: GNU Lesser General Public License version 2.1 or higher. + + See LGPL Version 2.1 below + +Galician + + Spelling dictionary + + The following software may be included in this product: Galician + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + This extension was made by Frco. Javier Rial Rodríguez for Mancomún, + Centro de Referencia e Servizos de Software Libre 2008 + + Spellchecker files (gl_ES.aff, gl_ES.dic) from Mar Castro Pereiro also + developed for Mancomún. + + Distributed under the GPL License. + + See GPL Version 3 below + +Gujarati + + Spelling dictionary + + The following software may be included in this product: Gujarati + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 3 below + +Hebrew + + Spelling dictionary + + The following software may be included in this product: Hebrew spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + This dictionary is Copyright (C) 2000-2009, Nadav Har'El + (nyh@math.technion.ac.il) and Dan Kenigsberg + (danken@cs.technion.ac.il). + + It is licensed under the GNU General Public License (GPL). + + See GPL Version 3 below + +Hindi + + The following software may be included in this product: Hindi spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GNU Aspell Hindi Word List Package + Copyright © 2005 Swapnil {Hajare, Sant} + + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + Conversion made by Laszlo Nemeth, for demonstration of Hunspell Unicode + support. + + See GPL Version 2 below + +Hungarian + + Spelling dictionary + + The following software may be included in this product: Hungarian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + The contents of this software may be used under the terms of the GNU + General Public License Version 2 or later (the "GPL"), or the GNU + Lesser General Public License Version 2.1 or later (the "LGPL", see + COPYING.LGPL) or (excepting the LGPLed GNU gettext library in the intl/ + directory) the Mozilla Public License Version 1.1 or later (the "MPL", + see COPYING.MPL). + + Software distributed under these licenses is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + licences for the specific language governing rights and limitations + under the licenses. + + 2010 (c) László Németh & Ferenc Godó + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Hungarian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright © Bence Nagy , 2006 + + Original license: GPL v2 + + Patch author: László Németh + + Patch license: MPL/GPL/LGPL + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Thesaurus + + The following software may be included in this product: Hungarian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2009, László Németh + + See GPL Version 2 below + + Hungarian sentence checker for LibreOffice + + The following software may be included in this product: Hungarian + sentence checker. Use of any of this software is governed by the terms + of the license below: + + 2009-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+ + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Icelandic + + Spelling dictionary and thesaurus + + The wordlist was developed by Orðabók Háskólans in cooperation with + Reiknistofnun Háskóla Íslands in the early nineties and was released + into the public domain. Further modifications to the wordlist are also + released into the public domain. + The thesaurus and words in the spell checker with additional + morphological information are from the Icelandic Wiktionary Project, + http://is.wiktionary.org. Works released by the Wiktionary project are + under the Creative Commons Attribution-ShareAlike 3.0 Unported license. + You are free: + to Share — to copy, distribute and transmit the work + to Remix — to adapt the work + to make commercial use of the work + Under the following conditions: + Attribution — You must attribute the work in the manner specified by + the author or licensor (but not in any way that suggests that they + endorse you or your use of the work). + Share Alike — If you alter, transform, or build upon this work, you may + distribute the resulting work only under the same or similar license to + this one. + + See CC-BY-SA 3.0 below + +Italian + + Spelling dictionary + + The following software may be included in this product: Italian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2001, 2002 Gianluca Turconi + Copyright (C) 2002, 2003, 2004 Gianluca Turconi and Davide Prina + Copyright (C) 2004, 2005, 2006, 2007 Davide Prina + Copyright (C) 2010 Andrea Pescetti + + See GPL Version 3 below + + Hyphenation patterns + + The following software may be included in this product: Italian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation tables by Claudio Beccari + + Author: conversion author is Giuseppe Bilotta + + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Italian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2004,2005,2006,2007,2008 Daniela Volta + Copyright (C) 2008 Giovanni Zuliani + Copyright (C) 2006,2007,2008 Davide Prina + Copyright (C) 2010 Andrea Pescetti + + See GPL Version 3 below + +Kurdish + + Spelling dictionary + + The following software may be included in this product: Kurdish + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + (C) Copyright Reimar Heider + + With contributions from Kevin P. Scannell and Rêzan + Tovjîn + + The original word list used for this package was augmented using Kevin + Scannell's web crawling software "An Crúbadán" and then hand-checked by + Ronahi and Tovjîn. + + Originally GPL, relicensed on 04-07-2007 to GPLv3, LGPLv3, MPL 1.1 + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Lao + + Spelling dictionary + + The following software may be included in this product: Lao spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2013 by Brian Eugene Wilson, Robert Martin Campbell + + See LGPL Version 2.1 below + +Latvian + + Spelling dictionary + + The following software may be included in this product: Latvian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, + http://dict.dv.lv + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Latvian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2004-2005 Jânis Vilims, jvilims@apollo.lv + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Latvian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2002-2010 Janis Eisaks, jancs@dv.lv, + http://dict.dv.lv + + See LGPL Version 2.1 below + +Lithuanian + + Spelling dictionary + + The following software may be included in this product: Lithuanian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) Albertas Agejevas , 2000, 2001. All + rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + 1. Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + 3. Neither the name of the Albertas Agejevas nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY ALBERTAS AGEJEVAS AND CONTRIBUTORS ``AS + IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ALBERTAS AGEJEVAS + OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Hyphenation patterns + + The following software may be included in this product: Lithuanian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: TeX hyphenation tables by Sigitas Tolusis and Vytas + Statulevicius. The original tables can be found at + http://www.vtex.lt/tex/download/zip/texmf.zip as lthyphen.tex. + + Author: Converted to OOo format by Albertas Agejevas + + License: LaTeX Project Public Licence + + See LPPL below + +Nepali + + Spelling dictionary + + The following software may be included in this product: Nepali spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Compiled by Madan Puraskar Pustakalaya + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Nepali + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Compiled by Madan Puraskar Pustakalaya + + See LGPL Version 2.1 below + +Norwegian + + Spelling dictionary + + The following software may be included in this product: Norwegian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + Hyphenation patterns + + The following software may be included in this product: Norwegian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Norwegian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See GPL Version 2 below + +Occitan + + Spelling dictionary + + The following software may be included in this product: Occitan + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2006 Bruno GALLART + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL Version 2 below + +Polish + + Spelling dictionary + + The following software may be included in this product: Polish spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + This dictionary for spell-checking Polish texts is licensed under GPL, + LGPL, MPL (Mozilla Public License) and Creative Commons ShareAlike + licenses (see http://creativecommons.org/licenses/sa/1.0). + + Hyphenation patterns + + The following software may be included in this product: Polish + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Origin: Based on the TeX hyphenation patterns plhyph.tex, version 3.0a, + Wednesday, May 17th, 1995. The original file is in CTAN archives, for + example + here:http://ctan.binkerton.com/ctan.readme.php?filename=language/p + olish/plhyph.tex and is licensed under LPPL. + + License: OpenOffice.org Adaptions of this package are licensed under + the GNU LGPL license. + + Author: conversion and corrects author is Artur Polaczyński + + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Polish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (C) 2004-2008 Marcin Miłkowski + + + This product is made available subject to the terms of GNU Lesser + General Public License Version 2.1. + + See LGPL Version 2.1 below + +Portuguese + + Spelling dictionary + + The following software may be included in this product: Portuguese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2006 Jose Joao de Almeida, Rui Vilela, Alberto Simões + + Dep. Informatica, Universidade do Minho, Portugal + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Portuguese + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Based on the TeX hyphenation tables by Pedro J. de Rezende (Brazilian) + and tuned up by J.Joao Dias Almeida + + Author: conversion author is Paulo Morgado + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Portuguese + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See GPL Version 2 below + +Portuguese (Brazilian) + + Spelling dictionary + + The following software may be included in this product: Portuguese + (Brazilian) spelling dictionary. Use of any of this software is + governed by the terms of the license below: + + This dictionary is under continuous development by Raimundo Moura and + his team. It is icensed under the terms of the GNU Lesser General + Public License version 3 (LGPLv3), as published by the Free Software + Foundation, and Mozilla Public License as published by The Mozilla + Foundation. The credits are available at + http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ort + ografico/ and you can find new releases at + http://extensions.libreoffice.org + + Copyright (C) 2006 - 2013 by Raimundo Santos Moura + + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Portuguese + (Brazilian) hyphenation patterns. Use of any of this software is + governed by the terms of the license below: + + These hyphenation patterns are under continuous development by Raimundo + Moura and his team. It is icensed under the terms of the GNU Lesser + General Public License version 3 (LGPLv3), as published by the Free + Software Foundation, and Mozilla Public License as published by The + Mozilla Foundation. The credits are available at + http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ort + ografico/ and you can find new releases at + http://extensions.libreoffice.org + + Copyright (C) 2006 - 2013 by Raimundo Santos Moura + + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Portuguese Brazilian sentence checker for LibreOffice + + The following software may be included in this product: Portuguese + (Brazilian) sentence checker. Use of any of this software is governed + by the terms of the license below: + + MPL 1.1 / GPLv3+ / LGPLv3+ + + 2013 © Raimundo Santos Moura + + See GPL Version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + +Romanian + + Spelling dictionary + + The following software may be included in this product: Romanian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + GPL 2.0/LGPL 2.1/MPL 1.1 tri-license. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Romanian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + GNU General Public License Version 2 + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Romanian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + GNU General Public License Version 2 or later + + See GPL Version 2 below + +Russian + + Spelling dictionary + + The following software may be included in this product: Russian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (c) 1997-2008, Alexander I. Lebedev + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + * Redistribution of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistribution in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + * Modified versions must be clearly marked as such. + * The name of Alexander I. Lebedev may not be used to endorse or + promote products derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Hyphenation patterns + + The following software may be included in this product: Russian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + unknown + + Thesaurus + + The following software may be included in this product: Russian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + License: GNU LGPL + + Author: Mikhail Korolyov + + Origin: Абрамовъ, Н. Словарь русскихъ синонимовъ и сходныхъ по смыслу + выраженiй. Изд. 3-е, доп., Пг., 1911 + + Russian grammar checker + + The following software may be included in this product: Russian grammar + checker. Use of any of this software is governed by the terms of the + license below: + + 2009, 2011, 2012 (c) Yakov Reztsov , license: MPL + 1.1 / GPL / LGPL + +Scottish Gaelic + + Spelling dictionary + + The following software may be included in this product: Scottish Gaelic + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 3 below + +Serbian + + Spelling dictionary + + The following software may be included in this product: Serbian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Serbian spellcheck dictionary (files sr.dic, sr.aff, sh.dic, sh.aff) is + released under disjunctive tri-licence GNU LGPL version 2.1 or later / + MPL version 1.1 or later / GNU GPL version 2 or later giving you the + choice of one of the three sets of free software licensing terms. You + can also use the dictionary under the terms of the Creative Commons + BY-SA 3.0 Unpored licence. + + Hyphenation patterns + + The following software may be included in this product: Serbian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Serbian hyphenation patterns (files hyph_sr.dic and hyph_sh.dic) are + derived from the official TeX patterns for Serbocroatian language + (Cyrillic and Latin) created by Dejan Muhamedagić + version 2.02 released on 22 June 2008. The + format is adopted for usage with Hyphen hyphenation library and is + released again as hyphen-sr under the compatible GNU LGPL version 2.1 + or later. + + See LGPL Version 2.1 below + +Sinhala + + Spelling dictionary + + The following software may be included in this product: Sinhala + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) <2010> Laknath Semage + + See GPL Version 3 below + +Slovak + + Spelling dictionary + + The following software may be included in this product: Slovak spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + Data are released under these licenses (you can select one): + * The GNU General Public License (GPL) Version 2, June 1991 + * GNU Lesser General Public License Version 2.1, February 1999 + * Mozilla Public License 1.1 (MPL 1.1) + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Slovak + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Dictionary is created by converting TeX hyphenation patterns for Slovak + (Author: Jana Chlebíková) with lingucomponent-tools + (http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucompone + nt-tools/). + + Original license: LPPL + + See LPPL below + + Thesaurus + + The following software may be included in this product: Slovak + thesaurus. Use of any of this software is governed by the terms of the + license below: + + Copyright (c) 2004-2010 Tibor Bako, yorik (at) szm.sk, Zdenko Podobný, + zposter (at) gmail.com + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this data (the "Data"), to deal in the Data without + restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of + the Data, and to permit persons to whom the Data is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Data. + + THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA + OR THE USE OR OTHER DEALINGS IN THE DATA. + +Slovenian + + Spelling dictionary + + The following software may be included in this product: Slovenian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + See LGPL Version 2.1 below + + Hyphenation patterns + + The following software may be included in this product: Slovenian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + See GPL Version 2 below + + See LGPL Version 2.1 below + + Thesaurus + + The following software may be included in this product: Slovenian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Spanish + + Spelling dictionary + + The following software may be included in this product: Spanish + spelling dictionary. Use of any of this software is governed by the + terms of the licenses (or any later versions) below: + + See GPL version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Spanish + hyphenation patterns. Use of any of this software is governed by the + terms of the licenses (or any later versions) below: + + See GPL version 3 below + + See LGPL Version 3 below + + See MPL Version 1.1 below + + Thesaurus + + The following software may be included in this product: Spanish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Swahili + + Spelling dictionary + + The following software may be included in this product: Swahili + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2004 Jason M Githeko + + See LGPL Version 2.1 below + +Swedish + + Spelling dictionary + + The following software may be included in this product: Swedish + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright © 2003-12 Göran Andersson . + + This dictionary is made available subject to the terms of GNU Lesser + General Public License Version 3. + + See LGPL Version 3 below + + Thesaurus + + The following software may be included in this product: Swedish + thesaurus. Use of any of this software is governed by the terms of the + license below: + + This thesaurus was directly converted from Synlex. The synonyms will be + displayed sorted by their voted synonym level. + + The synlex file license, You are free to use this file + with the same license + + Copyright (c) Viggo Kann KTH 2009 + + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED + OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + + Permission is hereby granted to use or copy this program for any + purpose, provided the above notices are retained on all copies. + Permission to modify the code and to distribute modified code is + granted, provided the above notices are retained, and a notice that the + code was modified is included with the above copyright notice. + +Telugu + + Spelling dictionary + + The following software may be included in this product: Telugu spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + GNU Hunspell Telugu Word List Package adaptation + + Copyright © 2010 adaptation to Hunspell, Arjuna Rao Chavala + Copyright © 2005 Aspell Telugu word list released by IndLinux, Khadir + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + See GPL Version 2 below + + Hyphenation patterns + + The following software may be included in this product: Telugu + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright © 2009 Santhosh Thottingal + + The Telugu Hyphenation Dictionary may be used under the terms of either + the GNU General Public License Version 3 or later (the "GPL"), or the + GNU Lesser General Public License Version 3 or later (the "LGPL") + + See GPL Version 3 below + + See LGPL Version 3 below + +Thai + + Spelling dictionary + + The following software may be included in this product: Thai spelling + dictionary. Use of any of this software is governed by the terms of the + license below: + + See LGPL Version 2.1 below + +Ukrainian + + Spelling dictionary + + The following software may be included in this product: Ukrainian + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 1999 Vladimir Yakovchuk, Oleg Podgurniy + Copyright (C) 2001 Dmytro Kovalyov, Maksym Polyakov, Andriy Rysin + Copyright (C) 2002 Valentyn Solomko, Volodymyr M. Lisivka + Copyright (C) 2005 Andriy Rysin, Eugeniy Meshcheryakov, Dmytro Kovalyov + Copyright (C) 2006-2009 Andriy Rysin + + This dictionary is licensed under GPL 2.0 or above, LGPL 2.1 or above + and MPL (Mozilla Public License) 1.1 licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + + Hyphenation patterns + + The following software may be included in this product: Ukrainian + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright 1998-2002 Maksym Polyakov. + + License: GNU General Public License version 2 or any later version + + See GPL Version 2 below + + Thesaurus + + The following software may be included in this product: Ukrainian + thesaurus. Use of any of this software is governed by the terms of the + license below: + + This thesaurus is based on: П. М. Деркач, Короткий словник синонімів + української мови, Радянська школа, Київ, 1960 С. Караванський, Пошук + українського слова + + Copyright (C) 2009 Andriy Rysin + + This thesaurus is licensed under GPL, LGPL and MPL (Mozilla Public + License) licenses. + + See GPL Version 2 below + + See LGPL Version 2.1 below + + See MPL Version 1.1 below + +Vietnamese + + Spelling dictionary + + The following software may be included in this product: Vietnamese + spelling dictionary. Use of any of this software is governed by the + terms of the license below: + + Authors: + Ivan Garcia + Nguyễn Xuân Minh + + This spellchecker for OpenOffice was based on the Vietnamese Dictionary + list from Proffessor Hồ Ngọc Đức + + This spellchecker is released with GPLv2 license. + + See GPL Version 2 below + +Zulu + + Hyphenation patterns + + The following software may be included in this product: Zulu + hyphenation patterns. Use of any of this software is governed by the + terms of the license below: + + Copyright (C) 2005, 2007 Friedel Wolff + + See LGPL Version 2.1 below + + Artwork + +KDE Crystal theme icons + + The following software may be included in this product: KDE Crystal + theme icons. Use of any of this software is governed by the terms of + the license below: + + KDE Crystal theme icons. + Copyright (C) 2002 and following years KDE Artists This library is free + software; you can redistribute it and/or modify it under the terms of + the GNU Lesser General Public License as published by the Free Software + Foundation, version 2.1 of the License. + + See LGPL Version 2.1 below + +Tango theme + + Portions of the Tango theme contain work licenced under the Creative + Commons Attribution-Share Alike 3.0 United States License. To view a + copy of this licence, visit + http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to + Creative Commons, 171 Second Street, Suite 300, San Francisco, + California 94105, USA. + + This artwork is attributed to the "GNOME Project": + http://www.gnome.org + + See CC-BY-SA 3.0 below + + Miscellaneous + +Adobe Printer Description Files + + The following software may be included in this product: Adobe Printer + Description Files. Use of any of this software is governed by the terms + of the license below: + + Copyright 1987-1995 Adobe Systems Incorporated. + + All Rights Reserved. + + Permission is granted for redistribution of this file as long as this + copyright notice is intact and the contents of the file is not altered + in any way from its original form. + + End of Copyright statement + +International Color Consortium sRGB Profiles + + The following software may be included in this product: ICC sRGB + Profiles. Use of any of this software is governed by the terms of the + license below: + + To anyone who acknowledges that the files "sRGB_IEC61966-2-1_noBPC.icc" + and "sRGB_IEC61966-2-1_withBPC.icc" are provided "AS IS" WITH NO + EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute + these file for any purpose is hereby granted without fee, provided that + the files are not changed including the HP copyright notice tag, and + that the name of Hewlett-Packard Company shall not be used in + advertising or publicity pertaining to distribution of the software + without specific, written prior permission. Hewlett-Packard Company + makes no representations about the suitability of this software for any + purpose. + + GNU Lesser General Public License Version 3 + + Copyright © 2007 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + This version of the GNU Lesser General Public License incorporates the + terms and conditions of version 3 of the GNU General Public License, + supplemented by the additional permissions listed below. + +0. Additional Definitions. + + As used herein, “this License” refers to version 3 of the GNU Lesser + General Public License, and the “GNU GPL” refers to version 3 of the + GNU General Public License. + + “The Library” refers to a covered work governed by this License, other + than an Application or a Combined Work as defined below. + + An “Application” is any work that makes use of an interface provided by + the Library, but which is not otherwise based on the Library. Defining + a subclass of a class defined by the Library is deemed a mode of using + an interface provided by the Library. + + A “Combined Work” is a work produced by combining or linking an + Application with the Library. The particular version of the Library + with which the Combined Work was made is also called the “Linked + Version”. + + The “Minimal Corresponding Source” for a Combined Work means the + Corresponding Source for the Combined Work, excluding any source code + for portions of the Combined Work that, considered in isolation, are + based on the Application, and not on the Linked Version. + + The “Corresponding Application Code” for a Combined Work means the + object code and/or source code for the Application, including any data + and utility programs needed for reproducing the Combined Work from the + Application, but excluding the System Libraries of the Combined Work. + +1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License + without being bound by section 3 of the GNU GPL. + +2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a + facility refers to a function or data to be supplied by an Application + that uses the facility (other than as an argument passed when the + facility is invoked), then you may convey a copy of the modified + version: + * a) under this License, provided that you make a good faith effort + to ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + * b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + +3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from a + header file that is part of the Library. You may convey such object + code under terms of your choice, provided that, if the incorporated + material is not limited to numerical parameters, data structure layouts + and accessors, or small macros, inline functions and templates (ten or + fewer lines in length), you do both of the following: + * a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are covered + by this License. + * b) Accompany the object code with a copy of the GNU GPL and this + license document. + +4. Combined Works. + + You may convey a Combined Work under terms of your choice that, taken + together, effectively do not restrict modification of the portions of + the Library contained in the Combined Work and reverse engineering for + debugging such modifications, if you also do each of the following: + * a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + * b) Accompany the Combined Work with a copy of the GNU GPL and this + license document. + * c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among these + notices, as well as a reference directing the user to the copies of + the GNU GPL and this license document. + * d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of + this License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with + the Library. A suitable mechanism is one that (a) uses at run + time a copy of the Library already present on the user's + computer system, and (b) will operate properly with a modified + version of the Library that is interface-compatible with the + Linked Version. + * e) Provide Installation Information, but only if you would + otherwise be required to provide such information under section 6 + of the GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the Combined + Work produced by recombining or relinking the Application with a + modified version of the Linked Version. (If you use option 4d0, the + Installation Information must accompany the Minimal Corresponding + Source and Corresponding Application Code. If you use option 4d1, + you must provide the Installation Information in the manner + specified by section 6 of the GNU GPL for conveying Corresponding + Source.) + +5. Combined Libraries. + + You may place library facilities that are a work based on the Library + side by side in a single library together with other library facilities + that are not Applications and are not covered by this License, and + convey such a combined library under terms of your choice, if you do + both of the following: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + * b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + +6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Lesser General Public License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + as you received it specifies that a certain numbered version of the GNU + Lesser General Public License “or any later version” applies to it, you + have the option of following the terms and conditions either of that + published version or of any later version published by the Free + Software Foundation. If the Library as you received it does not specify + a version number of the GNU Lesser General Public License, you may + choose any version of the GNU Lesser General Public License ever + published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide + whether future versions of the GNU Lesser General Public License shall + apply, that proxy's public statement of acceptance of any version is + permanent authorization for you to choose that version for the Library. + + GNU Lesser General Public License Version 2.1 + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts as the suc +cessor of the GNU Library Public License, version 2, hence the version number 2. +1.] + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public Licenses + are intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some + specially designated software packages--typically libraries--of the + Free Software Foundation and other authors who decide to use it. You + can use it too, but we suggest you first think carefully about whether + this license or the ordinary General Public License is the better + strategy to use in any particular case, based on the explanations + below. + + When we speak of free software, we are referring to freedom of use, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + this service if you wish); that you receive source code or can get it + if you want it; that you can change the software and use pieces of it + in new free programs; and that you are informed that you can do these + things. + + To protect your rights, we need to make restrictions that forbid + distributors to deny you these rights or to ask you to surrender these + rights. These restrictions translate to certain responsibilities for + you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis or + for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link other code with the library, you must provide + complete object files to the recipients, so that they can relink them + with the library after making changes to the library and recompiling + it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the + library, and (2) we offer you this license, which gives you legal + permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that there + is no warranty for the free library. Also, if the library is modified + by someone else and passed on, the recipients should know that what + they have is not the original version, so that the original author's + reputation will not be affected by problems that might be introduced by + others. + + Finally, software patents pose a constant threat to the existence of + any free program. We wish to make sure that a company cannot + effectively restrict the users of a free program by obtaining a + restrictive license from a patent holder. Therefore, we insist that any + patent license obtained for a version of the library must be consistent + with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the ordinary + GNU General Public License. This license, the GNU Lesser General Public + License, applies to certain designated libraries, and is quite + different from the ordinary General Public License. We use this license + for certain libraries in order to permit linking those libraries into + non-free programs. + + When a program is linked with a library, whether statically or using a + shared library, the combination of the two is legally speaking a + combined work, a derivative of the original library. The ordinary + General Public License therefore permits such linking only if the + entire combination fits its criteria of freedom. The Lesser General + Public License permits more lax criteria for linking other code with + the library. + + We call this license the "Lesser" General Public License because it + does Less to protect the user's freedom than the ordinary General + Public License. It also provides other free software developers Less of + an advantage over competing non-free programs. These disadvantages are + the reason we use the ordinary General Public License for many + libraries. However, the Lesser license provides advantages in certain + special circumstances. + + For example, on rare occasions, there may be a special need to + encourage the widest possible use of a certain library, so that it + becomes a de-facto standard. To achieve this, non-free programs must be + allowed to use the library. A more frequent case is that a free library + does the same job as widely used non-free libraries. In this case, + there is little to gain by limiting the free library to free software + only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free + programs enables a greater number of people to use a large body of free + software. For example, permission to use the GNU C Library in non-free + programs enables many more people to use the whole GNU operating + system, as well as its variant, the GNU/Linux operating system. + + Although the Lesser General Public License is Less protective of the + users' freedom, it does ensure that the user of a program that is + linked with the Library has the freedom and the wherewithal to run that + program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, whereas the latter must + be combined with the library in order to run. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other + program which contains a notice placed by the copyright holder or other + authorized party saying it may be distributed under the terms of this + Lesser General Public License (also called "this License"). Each + licensee is addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work which + has been distributed under these terms. A "work based on the Library" + means either the Library or any derivative work under copyright law: + that is to say, a work containing the Library or a portion of it, + either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control + compilation and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the + Library (independent of the use of the Library in a tool for writing + it). Whether that is true depends on what the Library does and what the + program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the + notices that refer to this License and to the absence of any warranty; + and distribute a copy of this License along with the Library. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Library or any portion of + it, thus forming a work based on the Library, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + * a) The modified work must itself be a software library. + * b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + * c) You must cause the whole of the work to be licensed at no charge + to all third parties under the terms of this License. + * d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility is + invoked, then you must make a good faith effort to ensure that, in + the event an application does not supply such function or table, + the facility still operates, and performs whatever part of its + purpose remains meaningful. + (For example, a function in a library to compute square roots has a + purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square root + function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for that + copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of the + Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or derivative + of it, under Section 2) in object code or executable form under the + terms of Sections 1 and 2 above provided that you accompany it with the + complete corresponding machine-readable source code, which must be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange. + + If distribution of object code is made by offering access to copy from + a designated place, then offering equivalent access to copy the source + code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 5. A program that contains no derivative of any portion of the Library, + but is designed to work with the Library by being compiled or linked + with it, is called a "work that uses the Library". Such a work, in + isolation, is not a derivative work of the Library, and therefore falls + outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. Section + 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data structure + layouts and accessors, and small macros and small inline functions (ten + lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. + (Executables containing this object code plus portions of the Library + will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, whether + or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or link + a "work that uses the Library" with the Library to produce a work + containing portions of the Library, and distribute that work under + terms of your choice, provided that the terms permit modification of + the work for the customer's own use and reverse engineering for + debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + * a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + * b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + * c) Accompany the work with a written offer, valid for at least + three years, to give the same user the materials specified in + Subsection 6a, above, for a charge no more than the cost of + performing this distribution. + * d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + * e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the materials to be distributed need not include anything that is + normally distributed (in either source or binary form) with the major + components (compiler, kernel, and so on) of the operating system on + which the executable runs, unless that component itself accompanies the + executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise permitted, + and provided that you do these two things: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities. + This must be distributed under the terms of the Sections above. + * b) Give prominent notice with the combined library of the fact that + part of it is a work based on the Library, and explaining where to + find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute the + Library except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense, link with, or distribute the + Library is void, and will automatically terminate your rights under + this License. However, parties who have received copies, or rights, + from you under this License will not have their licenses terminated so + long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties with + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent license + would not permit royalty-free redistribution of the Library by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply, and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is implemented + by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Lesser General Public License from time to time. Such + new versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a license + version number, you may choose any version ever published by the Free + Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free Software + Foundation; we sometimes make exceptions for this. Our decision will be + guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse + of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH + YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of + the ordinary General Public License). + + To apply these terms, attach the following notices to the library. It + is safest to attach them to the start of each source file to most + effectively convey the exclusion of warranty; and each file should have + at least the "copyright" line and a pointer to where the full notice is + found. +one line to give the library's name and an idea of what it does. +Copyright (C) year name of author + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Also add information on how to contact you by electronic and paper + mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +signature of Ty Coon, 1 April 1990 +Ty Coon, President of Vice + + That's all there is to it! + + GNU Library General Public License Version 2 + + Version 2, June 1991 +Copyright (C) 1991 Free Software Foundation, Inc. +51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is +numbered 2 because it goes with version 2 of the ordinary GPL.] + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public Licenses + are intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some + specially designated Free Software Foundation software, and to any + other libraries whose authors decide to use it. You can use it for your + libraries, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid anyone + to deny you these rights or to ask you to surrender the rights. These + restrictions translate to certain responsibilities for you if you + distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis or + for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link a program with the library, you must provide complete + object files to the recipients so that they can relink them with the + library, after making changes to the library and recompiling it. And + you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright the + library, and (2) offer you this license which gives you legal + permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain that + everyone understands that there is no warranty for this free library. + If the library is modified by someone else and passed on, we want its + recipients to know that what they have is not the original version, so + that any problems introduced by others will not reflect on the original + authors' reputations. + + Finally, any free program is threatened constantly by software patents. + We wish to avoid the danger that companies distributing free software + will individually obtain patent licenses, thus in effect transforming + the program into proprietary software. To prevent this, we have made it + clear that any patent must be licensed for everyone's free use or not + licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary + GNU General Public License, which was designed for utility programs. + This license, the GNU Library General Public License, applies to + certain designated libraries. This license is quite different from the + ordinary one; be sure to read it in full, and don't assume that + anything in it is the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that + they blur the distinction we usually make between modifying or adding + to a program and simply using it. Linking a program with a library, + without changing the library, is in some sense simply using the + library, and is analogous to running a utility program or application + program. However, in a textual and legal sense, the linked executable + is a combined work, a derivative of the original library, and the + ordinary General Public License treats it as such. + + Because of this blurred distinction, using the ordinary General Public + License for libraries did not effectively promote software sharing, + because most developers did not use the libraries. We concluded that + weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the + users of those programs of all benefit from the free status of the + libraries themselves. This Library General Public License is intended + to permit developers of non-free programs to use free libraries, while + preserving your freedom as a user of such programs to change the free + libraries that are incorporated in them. (We have not seen how to + achieve this as regards changes in header files, but we have achieved + it as regards changes in the actual functions of the Library.) The hope + is that this will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, while the latter only + works together with the library. + + Note that it is possible for a library to be covered by the ordinary + General Public License rather than by this special one. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which + contains a notice placed by the copyright holder or other authorized + party saying it may be distributed under the terms of this Library + General Public License (also called "this License"). Each licensee is + addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work which + has been distributed under these terms. A "work based on the Library" + means either the Library or any derivative work under copyright law: + that is to say, a work containing the Library or a portion of it, + either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control + compilation and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + a program using the Library is not restricted, and output from such a + program is covered only if its contents constitute a work based on the + Library (independent of the use of the Library in a tool for writing + it). Whether that is true depends on what the Library does and what the + program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an appropriate + copyright notice and disclaimer of warranty; keep intact all the + notices that refer to this License and to the absence of any warranty; + and distribute a copy of this License along with the Library. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Library or any portion of + it, thus forming a work based on the Library, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + * a) The modified work must itself be a software library. + * b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + * c) You must cause the whole of the work to be licensed at no charge + to all third parties under the terms of this License. + * d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility is + invoked, then you must make a good faith effort to ensure that, in + the event an application does not supply such function or table, + the facility still operates, and performs whatever part of its + purpose remains meaningful. + (For example, a function in a library to compute square roots has a + purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square root + function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for that + copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of the + Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or derivative + of it, under Section 2) in object code or executable form under the + terms of Sections 1 and 2 above provided that you accompany it with the + complete corresponding machine-readable source code, which must be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange. + + If distribution of object code is made by offering access to copy from + a designated place, then offering equivalent access to copy the source + code from the same place satisfies the requirement to distribute the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 5. A program that contains no derivative of any portion of the Library, + but is designed to work with the Library by being compiled or linked + with it, is called a "work that uses the Library". Such a work, in + isolation, is not a derivative work of the Library, and therefore falls + outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. Section + 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data structure + layouts and accessors, and small macros and small inline functions (ten + lines or less in length), then the use of the object file is + unrestricted, regardless of whether it is legally a derivative work. + (Executables containing this object code plus portions of the Library + will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, whether + or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or link + a "work that uses the Library" with the Library to produce a work + containing portions of the Library, and distribute that work under + terms of your choice, provided that the terms permit modification of + the work for the customer's own use and reverse engineering for + debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + * a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood that + the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + * b) Accompany the work with a written offer, valid for at least + three years, to give the same user the materials specified in + Subsection 6a, above, for a charge no more than the cost of + performing this distribution. + * c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + * d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the source code distributed need not include anything that is normally + distributed (in either source or binary form) with the major components + (compiler, kernel, and so on) of the operating system on which the + executable runs, unless that component itself accompanies the + executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise permitted, + and provided that you do these two things: + * a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library facilities. + This must be distributed under the terms of the Sections above. + * b) Give prominent notice with the combined library of the fact that + part of it is a work based on the Library, and explaining where to + find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute the + Library except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense, link with, or distribute the + Library is void, and will automatically terminate your rights under + this License. However, parties who have received copies, or rights, + from you under this License will not have their licenses terminated so + long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties to + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent license + would not permit royalty-free redistribution of the Library by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply, and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is implemented + by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Library General Public License from time to time. Such + new versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a license + version number, you may choose any version ever published by the Free + Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free Software + Foundation; we sometimes make exceptions for this. Our decision will be + guided by the two goals of preserving the free status of all + derivatives of our free software and of promoting the sharing and reuse + of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH + YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of + the ordinary General Public License). + + To apply these terms, attach the following notices to the library. It + is safest to attach them to the start of each source file to most + effectively convey the exclusion of warranty; and each file should have + at least the "copyright" line and a pointer to where the full notice is + found. +one line to give the library's name and an idea of what it does. +Copyright (C) year name of author + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. + + Also add information on how to contact you by electronic and paper + mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright interest in +the library `Frob' (a library for tweaking knobs) written +by James Random Hacker. + +signature of Ty Coon, 1 April 1990 +Ty Coon, President of Vice + + That's all there is to it! + + GNU General Public License Version 3 + + Copyright © 2007 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + +Preamble + + The GNU General Public License is a free, copyleft license for software + and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains + free software for all its users. We, the Free Software Foundation, use + the GNU General Public License for most of our software; it applies + also to any other work released this way by its authors. You can apply + it to your programs, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for them if + you wish), that you receive source code or can get it if you want it, + that you can change the software or use pieces of it in new free + programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or + if you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must pass on to the recipients the same freedoms that + you received. You must make sure that they, too, receive or can get the + source code. And you must show them these terms so they know their + rights. + + Developers that use the GNU GPL protect your rights with two steps: (1) + assert copyright on the software, and (2) offer you this License giving + you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the + manufacturer can do so. This is fundamentally incompatible with the aim + of protecting users' freedom to change the software. The systematic + pattern of such abuse occurs in the area of products for individuals to + use, which is precisely where it is most unacceptable. Therefore, we + have designed this version of the GPL to prohibit the practice for + those products. If such problems arise substantially in other domains, + we stand ready to extend this provision to those domains in future + versions of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + “This License” refers to version 3 of the GNU General Public License. + + “Copyright” also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + “The Program” refers to any copyrightable work licensed under this + License. Each licensee is addressed as “you”. “Licensees” and + “recipients” may be individuals or organizations. + + To “modify” a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of + an exact copy. The resulting work is called a “modified version” of the + earlier work or a work “based on” the earlier work. + + A “covered work” means either the unmodified Program or a work based on + the Program. + + To “propagate” a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To “convey” a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays “Appropriate Legal Notices” to + the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If the + interface presents a list of user commands or options, such as a menu, + a prominent item in the list meets this criterion. + + 1. Source Code. + + The “source code” for a work means the preferred form of the work for + making modifications to it. “Object code” means any non-source form of + a work. + + A “Standard Interface” means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that is + widely used among developers working in that language. + + The “System Libraries” of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A “Major + Component”, in this context, means a major essential component (kernel, + window system, and so on) of the specific operating system (if any) on + which the executable work runs, or a compiler used to produce the work, + or an object code interpreter used to run it. + + The “Corresponding Source” for a work in object code form means all the + source code needed to generate, install, and (for an executable work) + run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same + work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not convey, + without conditions so long as your license otherwise remains in force. + You may convey covered works to others for the sole purpose of having + them make modifications exclusively for you, or provide you with + facilities for running those works, provided that you comply with the + terms of this License in conveying all material for which you do not + control copyright. Those thus making or running the covered works for + you must do so exclusively on your behalf, under your direction and + control, on terms that prohibit them from making any copies of your + copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under the + conditions stated below. Sublicensing is not allowed; section 10 makes + it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar + laws prohibiting or restricting circumvention of such measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such + circumvention is effected by exercising rights under this License with + respect to the covered work, and you disclaim any intention to limit + operation or modification of the work as a means of enforcing, against + the work's users, your or third parties' legal rights to forbid + circumvention of technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, and + you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the terms + of section 4, provided that you also meet all of these conditions: + * a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + * b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to “keep + intact all notices”. + * c) You must license the entire work, as a whole, under this License + to anyone who comes into possession of a copy. This License will + therefore apply, along with any applicable section 7 additional + terms, to the whole of the work, and all its parts, regardless of + how they are packaged. This License gives no permission to license + the work in any other way, but it does not invalidate such + permission if you have separately received it. + * d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your work + need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, in + or on a volume of a storage or distribution medium, is called an + “aggregate” if the compilation and its resulting copyright are not used + to limit the access or legal rights of the compilation's users beyond + what the individual works permit. Inclusion of a covered work in an + aggregate does not cause this License to apply to the other parts of + the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms of + sections 4 and 5, provided that you also convey the machine-readable + Corresponding Source under the terms of this License, in one of these + ways: + * a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium customarily + used for software interchange. + * b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as long + as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding Source + from a network server at no charge. + * c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This alternative + is allowed only occasionally and noncommercially, and only if you + received the object code with such an offer, in accord with + subsection 6b. + * d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + * e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be included + in conveying the object code work. + + A “User Product” is either (1) a “consumer product”, which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is a + consumer product, doubtful cases shall be resolved in favor of + coverage. For a particular product received by a particular user, + “normally used” refers to a typical or common use of that class of + product, regardless of the status of the particular user or of the way + in which the particular user actually uses, or expects or is expected + to use, the product. A product is a consumer product regardless of + whether the product has substantial commercial, industrial or + non-consumer uses, unless such uses represent the only significant mode + of use of the product. + + “Installation Information” for a User Product means any methods, + procedures, authorization keys, or other information required to + install and execute modified versions of a covered work in that User + Product from a modified version of its Corresponding Source. The + information must suffice to ensure that the continued functioning of + the modified object code is in no case prevented or interfered with + solely because modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied by + the Installation Information. But this requirement does not apply if + neither you nor any third party retains the ability to install modified + object code on the User Product (for example, the work has been + installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or + updates for a work that has been modified or installed by the + recipient, or for the User Product in which it has been modified or + installed. Access to a network may be denied when the modification + itself materially and adversely affects the operation of the network or + violates the rules and protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + “Additional permissions” are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option remove + any additional permissions from that copy, or from any part of it. + (Additional permissions may be written to require their own removal in + certain cases when you modify the work.) You may place additional + permissions on material, added by you to a covered work, for which you + have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders + of that material) supplement the terms of this License with terms: + * a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + * b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + * c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + * d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + * e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + * f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + + All other non-permissive additional terms are considered “further + restrictions” within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains a + further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the additional + terms that apply to those files, or a notice indicating where to find + the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; the + above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your license + from a particular copyright holder is reinstated (a) provisionally, + unless and until the copyright holder explicitly and finally terminates + your license, and (b) permanently, if the copyright holder fails to + notify you of the violation by some reasonable means prior to 60 days + after the cessation. + + Moreover, your license from a particular copyright holder is reinstated + permanently if the copyright holder notifies you of the violation by + some reasonable means, this is the first time you have received notice + of violation of this License (for any work) from that copyright holder, + and you cure the violation prior to 30 days after your receipt of the + notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or run + a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission to + receive a copy likewise does not require acceptance. However, nothing + other than this License grants you permission to propagate or modify + any covered work. These actions infringe copyright if you do not accept + this License. Therefore, by modifying or propagating a covered work, + you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An “entity transaction” is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that transaction + who receives a copy of the work also receives whatever licenses to the + work the party's predecessor in interest had or could give under the + previous paragraph, plus a right to possession of the Corresponding + Source of the work from the predecessor in interest, if the predecessor + has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may not + impose a license fee, royalty, or other charge for exercise of rights + granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A “contributor” is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's “contributor version”. + + A contributor's “essential patent claims” are all patent claims owned + or controlled by the contributor, whether already acquired or hereafter + acquired, that would be infringed by some manner, permitted by this + License, of making, using, or selling its contributor version, but do + not include claims that would be infringed only as a consequence of + further modification of the contributor version. For purposes of this + definition, “control” includes the right to grant patent sublicenses in + a manner consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a “patent license” is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To “grant” such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone to + copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. “Knowingly relying” means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is “discriminatory” if it does not include within the + scope of its coverage, prohibits the exercise of, or is conditioned on + the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you + are a party to an arrangement with a third party that is in the + business of distributing software, under which you make payment to the + third party based on the extent of your activity of conveying the work, + and under which the third party grants, to any of the parties who would + receive the covered work from you, a discriminatory patent license (a) + in connection with copies of the covered work conveyed by you (or + copies made from those copies), or (b) primarily for and in connection + with specific products or compilations that contain the covered work, + unless you entered into that arrangement, or that patent license was + granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting any + implied license or other defenses to infringement that may otherwise be + available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence + you may not convey it at all. For example, if you agree to terms that + obligate you to collect a royalty for further conveying from those to + whom you convey the Program, the only way you could satisfy both those + terms and this License would be to refrain entirely from conveying the + Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in + detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License “or any later version” applies to it, you have the option of + following the terms and conditions either of that numbered version or + of any later version published by the Free Software Foundation. If the + Program does not specify a version number of the GNU General Public + License, you may choose any version ever published by the Free Software + Foundation. + + If the Program specifies that a proxy can decide which future versions + of the GNU General Public License can be used, that proxy's public + statement of acceptance of a version permanently authorizes you to + choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE + OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR + CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, + INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES + ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT + NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES + SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO + OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively state + the exclusion of warranty; and each file should have at least the + “copyright” line and a pointer to where the full notice is found. + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper + mail. + + If the program does terminal interaction, make it output a short notice + like this when it starts in an interactive mode: + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, your + program's commands might be different; for a GUI interface, you would + use an “about box”. + + You should also get your employer (if you work as a programmer) or + school, if any, to sign a “copyright disclaimer” for the program, if + necessary. For more information on this, and how to apply and follow + the GNU GPL, see . + + The GNU General Public License does not permit incorporating your + program into proprietary programs. If your program is a subroutine + library, you may consider it more useful to permit linking proprietary + applications with the library. If this is what you want to do, use the + GNU Lesser General Public License instead of this License. But first, + please read . + + GNU General Public License Version 2 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + + The licenses for most software are designed to take away your freedom + to share and change it. By contrast, the GNU General Public License is + intended to guarantee your freedom to share and change free + software--to make sure the software is free for all its users. This + General Public License applies to most of the Free Software + Foundation's software and to any other program whose authors commit to + using it. (Some other Free Software Foundation software is covered by + the GNU Lesser General Public License instead.) You can apply it to + your programs, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for this + service if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid anyone + to deny you these rights or to ask you to surrender the rights. These + restrictions translate to certain responsibilities for you if you + distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must give the recipients all the rights that you + have. You must make sure that they, too, receive or can get the source + code. And you must show them these terms so they know their rights. + + We protect your rights with two steps: (1) copyright the software, and + (2) offer you this license which gives you legal permission to copy, + distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain + that everyone understands that there is no warranty for this free + software. If the software is modified by someone else and passed on, we + want its recipients to know that what they have is not the original, so + that any problems introduced by others will not reflect on the original + authors' reputations. + + Finally, any free program is threatened constantly by software patents. + We wish to avoid the danger that redistributors of a free program will + individually obtain patent licenses, in effect making the program + proprietary. To prevent this, we have made it clear that any patent + must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and + modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains a + notice placed by the copyright holder saying it may be distributed + under the terms of this General Public License. The "Program", below, + refers to any such program or work, and a "work based on the Program" + means either the Program or any derivative work under copyright law: + that is to say, a work containing the Program or a portion of it, + either verbatim or with modifications and/or translated into another + language. (Hereinafter, translation is included without limitation in + the term "modification".) Each licensee is addressed as "you". + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running + the Program is not restricted, and the output from the Program is + covered only if its contents constitute a work based on the Program + (independent of having been made by running the Program). Whether that + is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's source + code as you receive it, in any medium, provided that you conspicuously + and appropriately publish on each copy an appropriate copyright notice + and disclaimer of warranty; keep intact all the notices that refer to + this License and to the absence of any warranty; and give any other + recipients of the Program a copy of this License along with the + Program. + + You may charge a fee for the physical act of transferring a copy, and + you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion of + it, thus forming a work based on the Program, and copy and distribute + such modifications or work under the terms of Section 1 above, provided + that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + b) You must cause any work that you distribute or publish, that + in whole or in part contains or is derived from the Program or + any part thereof, to be licensed as a whole at no charge to all + third parties under the terms of this License. + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you + provide a warranty) and that users may redistribute the program + under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is + interactive but does not normally print such an announcement, + your work based on the Program is not required to print an + announcement.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Program, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Program, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Program. + + In addition, mere aggregation of another work not based on the Program + with the Program (or with a work based on the Program) on a volume of a + storage or distribution medium does not bring the other work under the + scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, + under Section 2) in object code or executable form under the terms of + Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of + Sections 1 and 2 above on a medium customarily used for software + interchange; or, + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a + medium customarily used for software interchange; or, + c) Accompany it with the information you received as to the + offer to distribute corresponding source code. (This alternative + is allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + + The source code for a work means the preferred form of the work for + making modifications to it. For an executable work, complete source + code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to control + compilation and installation of the executable. However, as a special + exception, the source code distributed need not include anything that + is normally distributed (in either source or binary form) with the + major components (compiler, kernel, and so on) of the operating system + on which the executable runs, unless that component itself accompanies + the executable. + + If distribution of executable or object code is made by offering access + to copy from a designated place, then offering equivalent access to + copy the source code from the same place counts as distribution of the + source code, even though third parties are not compelled to copy the + source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program + except as expressly provided under this License. Any attempt otherwise + to copy, modify, sublicense or distribute the Program is void, and will + automatically terminate your rights under this License. However, + parties who have received copies, or rights, from you under this + License will not have their licenses terminated so long as such parties + remain in full compliance. + + 5. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Program or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Program (or any work based on the + Program), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying the + Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the + Program), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Program subject to + these terms and conditions. You may not impose any further restrictions + on the recipients' exercise of the rights granted herein. You are not + responsible for enforcing compliance by third parties to this License. + + 7. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Program at all. For example, if a patent license + would not permit royalty-free redistribution of the Program by all + those who receive copies directly or indirectly through you, then the + only way you could satisfy both it and this License would be to refrain + entirely from distribution of the Program. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system, which is + implemented by public license practices. Many people have made generous + contributions to the wide range of software distributed through that + system in reliance on consistent application of that system; it is up + to the author/donor to decide if he or she is willing to distribute + software through any other system and a licensee cannot impose that + choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Program under this License may + add an explicit geographical distribution limitation excluding those + countries, so that distribution is permitted only in or among countries + not thus excluded. In such case, this License incorporates the + limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions + of the General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail + to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies a version number of this License which applies to it and "any + later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Program does not specify a version + number of this License, you may choose any version ever published by + the Free Software Foundation. + + 10. If you wish to incorporate parts of the Program into other free + programs whose distribution conditions are different, write to the + author to ask for permission. For software which is copyrighted by the + Free Software Foundation, write to the Free Software Foundation; we + sometimes make exceptions for this. Our decision will be guided by the + two goals of preserving the free status of all derivatives of our free + software and of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, + EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE + ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH + YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL + NECESSARY SERVICING, REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively convey + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. +one line to give the program's name and an idea of what it does. +Copyright (C) yyyy name of author + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + Also add information on how to contact you by electronic and paper + mail. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome +to redistribute it under certain conditions; type `show c' +for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, the + commands you use may be called something other than `show w' and `show + c'; they could even be mouse-clicks or menu items--whatever suits your + program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright +interest in the program `Gnomovision' +(which makes passes at compilers) written +by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice + + This General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU + Lesser General Public License instead of this License. + + Mozilla Public License Version 1.1 + +1. Definitions. + + 1.0.1. "Commercial Use" + means distribution or otherwise making the Covered Code + available to a third party. + + 1.1. "Contributor" + means each entity that creates or contributes to the creation of + Modifications. + + 1.2. "Contributor Version" + means the combination of the Original Code, prior Modifications + used by a Contributor, and the Modifications made by that + particular Contributor. + + 1.3. "Covered Code" + means the Original Code or Modifications or the combination of + the Original Code and Modifications, in each case including + portions thereof. + + 1.4. "Electronic Distribution Mechanism" + means a mechanism generally accepted in the software development + community for the electronic transfer of data. + + 1.5. "Executable" + means Covered Code in any form other than Source Code. + + 1.6. "Initial Developer" + means the individual or entity identified as the Initial + Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" + means a work which combines Covered Code or portions thereof + with code not governed by the terms of this License. + + 1.8. "License" + means this document. + + 1.8.1. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently + acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" + means any addition to or deletion from the substance or + structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of + files, a Modification is: + + a. + Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + b. + Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" + means Source Code of computer software code which is described + in the Source Code notice required by Exhibit A as Original + Code, and which, at the time of its release under this License + is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" + means any patent claim(s), now owned or hereafter acquired, + including without limitation, method, process, and apparatus + claims, in any patent Licensable by grantor. + + 1.11. "Source Code" + means the preferred form of the Covered Code for making + modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or + another well known, available Covered Code of the Contributor's + choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software + is widely available for no charge. + + 1.12. "You" (or "Your") + means an individual or a legal entity exercising rights under, + and complying with all of the terms of, this License or a future + version of this License issued under Section 6.1. For legal + entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes + of this definition, "control" means (a) the power, direct or + indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + a. under intellectual property rights (other than patent or trademark) + Licensable by Initial Developer to use, reproduce, modify, display, + perform, sublicense and distribute the Original Code (or portions + thereof) with or without Modifications, and/or as part of a Larger + Work; and + b. under Patents Claims infringed by the making, using or selling of + Original Code, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Code (or + portions thereof). + c. the licenses granted in this Section 2.1 (a) and (b) are effective + on the date Initial Developer first distributes Original Code under + the terms of this License. + d. Notwithstanding Section 2.1 (b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused by: + i) the modification of the Original Code or ii) the combination of + the Original Code with other software or devices. + + 2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + a. under intellectual property rights (other than patent or trademark) + Licensable by Contributor, to use, reproduce, modify, display, + perform, sublicense and distribute the Modifications created by + such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of + a Larger Work; and + b. under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or + portions thereof); and 2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions of such + combination). + c. the licenses granted in Sections 2.2 (a) and 2.2 (b) are effective + on the date Contributor first makes Commercial Use of the Covered + Code. + d. Notwithstanding Section 2.2 (b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; 3) + for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made by + that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be distributed + only under the terms of this License or a future version of this + License released under Section 6.1, and You must include a copy of this + License with every copy of the Source Code You distribute. You may not + offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' + rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that the + Modification is derived, directly or indirectly, from Original Code + provided by the Initial Developer and including the name of the Initial + Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims + + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights granted + by such Contributor under Sections 2.1 or 2.2, Contributor must include + a text file with the Source Code distribution titled "LEGAL" which + describes the claim and the party making the claim in sufficient detail + that a recipient will know whom to contact. If Contributor obtains such + knowledge after the Modification is made available as described in + Section 3.2, Contributor shall promptly modify the LEGAL file in all + copies Contributor makes available thereafter and shall take other + steps (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered Code + that new knowledge has been obtained. + + (b) Contributor APIs + + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which are + reasonably necessary to implement that API, Contributor must also + include this information in the legal file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section + 3.4 (a) above, Contributor believes that Contributor's Modifications + are Contributor's original creation(s) and/or Contributor has + sufficient rights to grant the rights conveyed by this License. + + 3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely to + look for such a notice. If You created one or more Modification(s) You + may add your name as a Contributor to the notice described in Exhibit + A. You must also duplicate this License in any documentation for the + Source Code where You describe recipients' rights or ownership rights + relating to Covered Code. You may choose to offer, and to charge a fee + for, warranty, support, indemnity or liability obligations to one or + more recipients of Covered Code. However, You may do so only on Your + own behalf, and not on behalf of the Initial Developer or any + Contributor. You must make it absolutely clear than any such warranty, + support, indemnity or liability obligation is offered by You alone, and + You hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or such + Contributor as a result of warranty, support, indemnity or liability + terms You offer. + + 3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the + requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for + that Covered Code, and if You include a notice stating that the Source + Code version of the Covered Code is available under the terms of this + License, including a description of how and where You have fulfilled + the obligations of Section 3.2. The notice must be conspicuously + included in any notice in an Executable version, related documentation + or collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered Code + or ownership rights under a license of Your choice, which may contain + terms different from this License, provided that You are in compliance + with the terms of this License and that the license for the Executable + version does not attempt to limit or alter the recipient's rights in + the Source Code version from the rights set forth in this License. If + You distribute the Executable version under a different license You + must make it absolutely clear that any terms which differ from this + License are offered by You alone, not by the Initial Developer or any + Contributor. You hereby agree to indemnify the Initial Developer and + every Contributor for any liability incurred by the Initial Developer + or such Contributor as a result of any such terms You offer. + + 3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute, + judicial order, or regulation then You must: (a) comply with the terms + of this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be included + in the legal file described in Section 3.4 and must be included with + all distributions of the Source Code. Except to the extent prohibited + by statute or regulation, such description must be sufficiently + detailed for a recipient of ordinary skill to be able to understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions + + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version will + be given a distinguishing version number. + + 6.2. Effect of New Versions + + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works + + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that the + phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or + any confusingly similar phrase do not appear in your license (except to + note that your license differs from this License) and (b) otherwise + make it clear that Your version of the license contains terms which + differ from the Mozilla Public License and Netscape Public License. + (Filling in the name of the Initial Developer, Original Code or + Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.) + +7. Disclaimer of warranty + + Covered code is provided under this license on an "as is" basis, + without warranty of any kind, either expressed or implied, including, + without limitation, warranties that the covered code is free of + defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the covered code + is with you. Should any covered code prove defective in any respect, + you (not the initial developer or any other contributor) assume the + cost of any necessary servicing, repair or correction. This disclaimer + of warranty constitutes an essential part of this license. No use of + any covered code is authorized hereunder except under this disclaimer. + +8. Termination + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declaratory judgment actions) against Initial + Developer or a Contributor (the Initial Developer or Contributor + against whom You file such action is referred to as "Participant") + alleging that: + a. such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate + prospectively, unless if within 60 days after receipt of notice You + either: (i) agree in writing to pay Participant a mutually + agreeable reasonable royalty for Your past and future use of + Modifications made by such Participant, or (ii) withdraw Your + litigation claim with respect to the Contributor Version against + such Participant. If within 60 days of notice, a reasonable royalty + and payment arrangement are not mutually agreed upon in writing by + the parties or the litigation claim is not withdrawn, the rights + granted by Participant to You under Sections 2.1 and/or 2.2 + automatically terminate at the expiration of the 60 day notice + period specified above. + b. any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, + then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first + made, used, sold, distributed, or had made, Modifications made by + that Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. Limitation of liability + + Under no circumstances and under no legal theory, whether tort + (including negligence), contract, or otherwise, shall you, the initial + developer, any other contributor, or any distributor of covered code, + or any supplier of any of such parties, be liable to any person for any + indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all other + commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of + liability shall not apply to liability for death or personal injury + resulting from such party's negligence to the extent applicable law + prohibits such limitation. Some jurisdictions do not allow the + exclusion or limitation of incidental or consequential damages, so this + exclusion and limitation may not apply to you. + +10. U.S. government end users + + The Covered Code is a "commercial item," as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" + and "commercial computer software documentation," as such terms are + used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 + and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. + Government End Users acquire Covered Code with only those rights set + forth herein. + +11. Miscellaneous + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if any, + provides otherwise), excluding its conflict-of-law provisions. With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in the United States of + America, any litigation relating to this License shall be subject to + the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with + the losing party responsible for costs, including without limitation, + court costs and reasonable attorneys' fees and expenses. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any law or + regulation which provides that the language of a contract shall be + construed against the drafter shall not apply to this License. + +12. Responsibility for claims + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. Multiple-licensed code + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the MPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +Exhibit A - Mozilla Public License. + +"The contents of this file are subject to the Mozilla Public License +Version 1.1 (the "License"); you may not use this file except in +compliance with the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" +basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +License for the specific language governing rights and limitations +under the License. + +The Original Code is ______________________________________. + +The Initial Developer of the Original Code is ________________________. +Portions created by ______________________ are Copyright (C) ______ +_______________________. All Rights Reserved. + +Contributor(s): ______________________________________. + +Alternatively, the contents of this file may be used under the terms +of the _____ license (the "[___] License"), in which case the +provisions of [______] License are applicable instead of those +above. If you wish to allow use of your version of this file only +under the terms of the [____] License and not to allow others to use +your version of this file under the MPL, indicate your decision by +deleting the provisions above and replace them with the notice and +other provisions required by the [___] License. If you do not delete +the provisions above, a recipient may use your version of this file +under either the MPL or the [___] License." + + NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications. + + Mozilla Public License Version 2.0 + +1. Definitions + + 1.1. “Contributor” + means each individual or legal entity that creates, contributes + to the creation of, or owns Covered Software. + + 1.2. “Contributor Version” + means the combination of the Contributions of others (if any) + used by a Contributor and that particular Contributor’s + Contribution. + + 1.3. “Contribution” + means Covered Software of a particular Contributor. + + 1.4. “Covered Software” + means Source Code Form to which the initial Contributor has + attached the notice in Exhibit A, the Executable Form of such + Source Code Form, and Modifications of such Source Code Form, in + each case including portions thereof. + + 1.5. “Incompatible With Secondary Licenses” + means + + a. + that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + b. + that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms + of a Secondary License. + + 1.6. “Executable Form” + means any form of the work other than Source Code Form. + + 1.7. “Larger Work” + means a work that combines Covered Software with other material, + in a separate file or files, that is not Covered Software. + + 1.8. “License” + means this document. + + 1.9. “Licensable” + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any + and all of the rights conveyed by this License. + + 1.10. “Modifications” + means any of the following: + + a. + any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; + or + b. + any new file in Source Code Form that contains any Covered + Software. + + 1.11. “Patent Claims” of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, + having made, import, or transfer of either its Contributions or + its Contributor Version. + + 1.12. “Secondary License” + means either the GNU General Public License, Version 2.0, the + GNU Lesser General Public License, Version 2.1, the GNU Affero + General Public License, Version 3.0, or any later versions of + those licenses. + + 1.13. “Source Code Form” + means the form of the work preferred for making modifications. + + 1.14. “You” (or “Your”) + means an individual or a legal entity exercising rights under + this License. For legal entities, “You” includes any entity that + controls, is controlled by, or is under common control with You. + For purposes of this definition, “control” means (a) the power, + direct or indirect, to cause the direction or management of such + entity, whether by contract or otherwise, or (b) ownership of + more than fifty percent (50%) of the outstanding shares or + beneficial ownership of such entity. + +2. License Grants and Conditions + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, + or as part of a Larger Work; and + b. under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor + first distributes such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted + under this License. No additional rights or licenses will be implied + from the distribution or licensing of Covered Software under this + License. Notwithstanding Section 2.1(b) above, no patent license is + granted by a Contributor: + a. for any code that a Contributor has removed from Covered Software; + or + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its + Contributor Version); or + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. + + This License does not grant any rights in the trademarks, service + marks, or logos of any Contributor (except as may be necessary to + comply with the notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License + (if permitted under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights + to grant the rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. + + 2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted + in Section 2.1. + +3. Responsibilities + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients’ rights in the Source Code + Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + a. such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients + of the Executable Form how they can obtain a copy of such Source + Code Form by reasonable means in a timely manner, at a charge no + more than the cost of distribution to the recipient; and + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients’ rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and + the Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, + or limitations of liability) contained within the Source Code Form of + the Covered Software, except that You may alter any license notices to + the extent required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered + by You alone, and You hereby agree to indemnify every Contributor for + any liability incurred by such Contributor as a result of warranty, + support, indemnity or liability terms You offer. You may include + additional disclaimers of warranty and limitations of liability + specific to any jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Software due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be placed in a text file included with all distributions of the + Covered Software under this License. Except to the extent prohibited by + statute or regulation, such description must be sufficiently detailed + for a recipient of ordinary skill to be able to understand it. + +5. Termination + + 5.1. The rights granted under this License will terminate automatically + if You fail to comply with any of its terms. However, if You become + compliant, then the rights granted under this License from a particular + Contributor are reinstated (a) provisionally, unless and until such + Contributor explicitly and finally terminates Your grants, and (b) on + an ongoing basis, if such Contributor fails to notify You of the + non-compliance by some reasonable means prior to 60 days after You have + come back into compliance. Moreover, Your grants from a particular + Contributor are reinstated on an ongoing basis if such Contributor + notifies You of the non-compliance by some reasonable means, this is + the first time You have received notice of non-compliance with this + License from such Contributor, and You become compliant prior to 30 + days after Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a + patent infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under + Section 2.1 of this License shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or Your distributors under this + License prior to termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is + free of defects, merchantable, fit for a particular purpose or + non-infringing. The entire risk as to the quality and performance of + the Covered Software is with You. Should any Covered Software prove + defective in any respect, You (not any Contributor) assume the cost of + any necessary servicing, repair, or correction. This disclaimer of + warranty constitutes an essential part of this License. No use of any + Covered Software is authorized under this License except under this + disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort + (including negligence), contract, or otherwise, shall any Contributor, + or anyone who distributes Covered Software as permitted above, be + liable to You for any direct, indirect, special, incidental, or + consequential damages of any character including, without limitation, + damages for lost profits, loss of goodwill, work stoppage, computer + failure or malfunction, or any and all other commercial damages or + losses, even if such party shall have been informed of the possibility + of such damages. This limitation of liability shall not apply to + liability for death or personal injury resulting from such party’s + negligence to the extent applicable law prohibits such limitation. Some + jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply + to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the + courts of a jurisdiction where the defendant maintains its principal + place of business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. + Nothing in this Section shall prevent a party’s ability to bring + cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides + that the language of a contract shall be construed against the drafter + shall not be used to construe this License against a Contributor. + +10. Versions of the License + + 10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in + Section 10.3, no one other than the license steward has the right to + modify or publish new versions of this License. Each version will be + given a distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered + Software, or under the terms of any subsequent version published by the + license steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses + + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + + If it is not possible or desirable to put the notice in a particular + file, then You may include the notice in a location (such as a LICENSE + file in a relevant directory) where a recipient would be likely to look + for such a notice. + + You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible With Secondary Licenses”, as + defined by the Mozilla Public License, v. 2.0. + + SIL Open Font License Version 1.1 – 26 February 2007 + + PREAMBLE The goals of the Open Font License (OFL) are to stimulate + worldwide development of collaborative font projects, to support the + font creation efforts of academic and linguistic communities, and to + provide a free and open framework in which fonts may be shared and + improved in partnership with others. + + The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that the font + names of derivative works are changed. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply to + any document created using the fonts or their derivatives. + + DEFINITIONS "Font Software" refers to the set of files released by the + Copyright Holder(s) under this license and clearly marked as such. This + may include source files, build scripts and documentation. + + "Reserved Font Name" refers to any names specified as such after the + copyright statement(s). + + "Original Version" refers to the collection of Font Software components + as distributed by the Copyright Holder(s). + + "Modified Version" refers to any derivative made by adding to, + deleting, or substituting – in part or in whole -- any of the + components of the Original Version, by changing formats or by porting + the Font Software to a new environment. + + "Author" refers to any designer, engineer, programmer, technical writer + or other person who contributed to the Font Software. + + PERMISSION & CONDITIONS Permission is hereby granted, free of charge, + to any person obtaining a copy of the Font Software, to use, study, + copy, merge, embed, modify, redistribute, and sell modified and + unmodified copies of the Font Software, subject to the following + conditions: + + 1) Neither the Font Software nor any of its individual components, in + Original or Modified Versions, may be sold by itself. + + 2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or in + the appropriate machine-readable metadata fields within text or binary + files as long as those fields can be easily viewed by the user. + + 3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the + corresponding Copyright Holder. This restriction only applies to the + primary font name as presented to the users. + + 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + + 5) The Font Software, modified or unmodified, in part or in whole, must + be distributed entirely under this license, and must not be distributed + under any other license. The requirement for fonts to remain under this + license does not apply to any document created using the Font Software. + + TERMINATION This license becomes null and void if any of the above + conditions are not met. + + DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO + EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Apache License + + Version 2.0, January 2004 + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by the + copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all other + entities that control, are controlled by, or are under common control + with that entity. For the purposes of this definition, "control" means + (i) the power, direct or indirect, to cause the direction or management + of such entity, whether by contract or otherwise, or (ii) ownership of + fifty percent (50%) or more of the outstanding shares, or (iii) + beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity exercising + permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but not + limited to compiled object code, generated documentation, and + conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or Object + form, made available under the License, as indicated by a copyright + notice that is included in or attached to the work (an example is + provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including the + original version of the Work and any modifications or additions to that + Work or Derivative Works thereof, that is intentionally submitted to + Licensor for inclusion in the Work by the copyright owner or by an + individual or Legal Entity authorized to submit on behalf of the + copyright owner. For the purposes of this definition, "submitted" means + any form of electronic, verbal, or written communication sent to the + Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity on + behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, publicly + display, publicly perform, sublicense, and distribute the Work and such + Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this + License, each Contributor hereby grants to You a perpetual, worldwide, + non-exclusive, no-charge, royalty-free, irrevocable (except as stated + in this section) patent license to make, have made, use, offer to sell, + sell, import, and otherwise transfer the Work, where such license + applies only to those patent claims licensable by such Contributor that + are necessarily infringed by their Contribution(s) alone or by + combination of their Contribution(s) with the Work to which such + Contribution(s) was submitted. If You institute patent litigation + against any entity (including a cross-claim or counterclaim in a + lawsuit) alleging that the Work or a Contribution incorporated within + the Work constitutes direct or contributory patent infringement, then + any patent licenses granted to You under this License for that Work + shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work + or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You meet the + following conditions: + 1. You must give any other recipients of the Work or Derivative Works + a copy of this License; and + 2. You must cause any modified files to carry prominent notices + stating that You changed the files; and + 3. You must retain, in the Source form of any Derivative Works that + You distribute, all copyright, patent, trademark, and attribution + notices from the Source form of the Work, excluding those notices + that do not pertain to any part of the Derivative Works; and + 4. If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained within + such NOTICE file, excluding those notices that do not pertain to + any part of the Derivative Works, in at least one of the following + places: within a NOTICE text file distributed as part of the + Derivative Works; within the Source form or documentation, if + provided along with the Derivative Works; or, within a display + generated by the Derivative Works, if and wherever such third-party + notices normally appear. The contents of the NOTICE file are for + informational purposes only and do not modify the License. You may + add Your own attribution notices within Derivative Works that You + distribute, alongside or as an addendum to the NOTICE text from the + Work, provided that such additional attribution notices cannot be + construed as modifying the License. You may add Your own copyright + statement to Your modifications and may provide additional or + different license terms and conditions for use, reproduction, or + distribution of Your modifications, or for any such Derivative + Works as a whole, provided Your use, reproduction, and distribution + of the Work otherwise complies with the conditions stated in this + License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work by + You to the Licensor shall be under the terms and conditions of this + License, without any additional terms or conditions. Notwithstanding + the above, nothing herein shall supersede or modify the terms of any + separate license agreement you may have executed with Licensor + regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed + to in writing, Licensor provides the Work (and each Contributor + provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied, including, without + limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, + MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely + responsible for determining the appropriateness of using or + redistributing the Work and assume any risks associated with Your + exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, unless + required by applicable law (such as deliberate and grossly negligent + acts) or agreed to in writing, shall any Contributor be liable to You + for damages, including any direct, indirect, special, incidental, or + consequential damages of any character arising as a result of this + License or out of the use or inability to use the Work (including but + not limited to damages for loss of goodwill, work stoppage, computer + failure or malfunction, or any and all other commercial damages or + losses), even if such Contributor has been advised of the possibility + of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the + Work or Derivative Works thereof, You may choose to offer, and charge a + fee for, acceptance of support, warranty, indemnity, or other liability + obligations and/or rights consistent with this License. However, in + accepting such obligations, You may act only on Your own behalf and on + Your sole responsibility, not on behalf of any other Contributor, and + only if You agree to indemnify, defend, and hold each Contributor + harmless for any liability incurred by, or claims asserted against, + such Contributor by reason of your accepting any such warranty or + additional liability. + + END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "" replaced + with your own identifying information. (Don't include the brackets!) + The text should be enclosed in the appropriate comment syntax for the + file format. We also recommend that a file or class name and + description of purpose be included on the same "printed page" as the + copyright notice for easier identification within third-party archives. + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + The LaTeX Project Public License + +LPPL Version 1.3c 2008-05-04 + +Copyright 1999 2002-2008 LaTeX3 Project + Everyone is allowed to distribute verbatim copies of this + license document, but modification of it is not allowed. + + +PREAMBLE +======== + +The LaTeX Project Public License (LPPL) is the primary license under +which the LaTeX kernel and the base LaTeX packages are distributed. + +You may use this license for any work of which you hold the copyright +and which you wish to distribute. This license may be particularly +suitable if your work is TeX-related (such as a LaTeX package), but +it is written in such a way that you can use it even if your work is +unrelated to TeX. + +The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE', +below, gives instructions, examples, and recommendations for authors +who are considering distributing their works under this license. + +This license gives conditions under which a work may be distributed +and modified, as well as conditions under which modified versions of +that work may be distributed. + +We, the LaTeX3 Project, believe that the conditions below give you +the freedom to make and distribute modified versions of your work +that conform with whatever technical specifications you wish while +maintaining the availability, integrity, and reliability of +that work. If you do not see how to achieve your goal while +meeting these conditions, then read the document `cfgguide.tex' +and `modguide.tex' in the base LaTeX distribution for suggestions. + + +DEFINITIONS +=========== + +In this license document the following terms are used: + + `Work' + Any work being distributed under this License. + + `Derived Work' + Any work that under any applicable law is derived from the Work. + + `Modification' + Any procedure that produces a Derived Work under any applicable + law -- for example, the production of a file containing an + original file associated with the Work or a significant portion of + such a file, either verbatim or with modifications and/or + translated into another language. + + `Modify' + To apply any procedure that produces a Derived Work under any + applicable law. + + `Distribution' + Making copies of the Work available from one person to another, in + whole or in part. Distribution includes (but is not limited to) + making any electronic components of the Work accessible by + file transfer protocols such as FTP or HTTP or by shared file + systems such as Sun's Network File System (NFS). + + `Compiled Work' + A version of the Work that has been processed into a form where it + is directly usable on a computer system. This processing may + include using installation facilities provided by the Work, + transformations of the Work, copying of components of the Work, or + other activities. Note that modification of any installation + facilities provided by the Work constitutes modification of the Work. + + `Current Maintainer' + A person or persons nominated as such within the Work. If there is + no such explicit nomination then it is the `Copyright Holder' under + any applicable law. + + `Base Interpreter' + A program or process that is normally needed for running or + interpreting a part or the whole of the Work. + + A Base Interpreter may depend on external components but these + are not considered part of the Base Interpreter provided that each + external component clearly identifies itself whenever it is used + interactively. Unless explicitly specified when applying the + license to the Work, the only applicable Base Interpreter is a + `LaTeX-Format' or in the case of files belonging to the + `LaTeX-format' a program implementing the `TeX language'. + + + +CONDITIONS ON DISTRIBUTION AND MODIFICATION +=========================================== + +1. Activities other than distribution and/or modification of the Work +are not covered by this license; they are outside its scope. In +particular, the act of running the Work is not restricted and no +requirements are made concerning any offers of support for the Work. + +2. You may distribute a complete, unmodified copy of the Work as you +received it. Distribution of only part of the Work is considered +modification of the Work, and no right to distribute such a Derived +Work may be assumed under the terms of this clause. + +3. You may distribute a Compiled Work that has been generated from a +complete, unmodified copy of the Work as distributed under Clause 2 +above, as long as that Compiled Work is distributed in such a way that +the recipients may install the Compiled Work on their system exactly +as it would have been installed if they generated a Compiled Work +directly from the Work. + +4. If you are the Current Maintainer of the Work, you may, without +restriction, modify the Work, thus creating a Derived Work. You may +also distribute the Derived Work without restriction, including +Compiled Works generated from the Derived Work. Derived Works +distributed in this manner by the Current Maintainer are considered to +be updated versions of the Work. + +5. If you are not the Current Maintainer of the Work, you may modify +your copy of the Work, thus creating a Derived Work based on the Work, +and compile this Derived Work, thus creating a Compiled Work based on +the Derived Work. + +6. If you are not the Current Maintainer of the Work, you may +distribute a Derived Work provided the following conditions are met +for every component of the Work unless that component clearly states +in the copyright notice that it is exempt from that condition. Only +the Current Maintainer is allowed to add such statements of exemption +to a component of the Work. + + a. If a component of this Derived Work can be a direct replacement + for a component of the Work when that component is used with the + Base Interpreter, then, wherever this component of the Work + identifies itself to the user when used interactively with that + Base Interpreter, the replacement component of this Derived Work + clearly and unambiguously identifies itself as a modified version + of this component to the user when used interactively with that + Base Interpreter. + + b. Every component of the Derived Work contains prominent notices + detailing the nature of the changes to that component, or a + prominent reference to another file that is distributed as part + of the Derived Work and that contains a complete and accurate log + of the changes. + + c. No information in the Derived Work implies that any persons, + including (but not limited to) the authors of the original version + of the Work, provide any support, including (but not limited to) + the reporting and handling of errors, to recipients of the + Derived Work unless those persons have stated explicitly that + they do provide such support for the Derived Work. + + d. You distribute at least one of the following with the Derived Work: + + 1. A complete, unmodified copy of the Work; + if your distribution of a modified component is made by + offering access to copy the modified component from a + designated place, then offering equivalent access to copy + the Work from the same or some similar place meets this + condition, even though third parties are not compelled to + copy the Work along with the modified component; + + 2. Information that is sufficient to obtain a complete, + unmodified copy of the Work. + +7. If you are not the Current Maintainer of the Work, you may +distribute a Compiled Work generated from a Derived Work, as long as +the Derived Work is distributed to all recipients of the Compiled +Work, and as long as the conditions of Clause 6, above, are met with +regard to the Derived Work. + +8. The conditions above are not intended to prohibit, and hence do not +apply to, the modification, by any method, of any component so that it +becomes identical to an updated version of that component of the Work as +it is distributed by the Current Maintainer under Clause 4, above. + +9. Distribution of the Work or any Derived Work in an alternative +format, where the Work or that Derived Work (in whole or in part) is +then produced by applying some process to that format, does not relax or +nullify any sections of this license as they pertain to the results of +applying that process. + +10. a. A Derived Work may be distributed under a different license + provided that license itself honors the conditions listed in + Clause 6 above, in regard to the Work, though it does not have + to honor the rest of the conditions in this license. + + b. If a Derived Work is distributed under a different license, that + Derived Work must provide sufficient documentation as part of + itself to allow each recipient of that Derived Work to honor the + restrictions in Clause 6 above, concerning changes from the Work. + +11. This license places no restrictions on works that are unrelated to +the Work, nor does this license place any restrictions on aggregating +such works with the Work by any means. + +12. Nothing in this license is intended to, or may be used to, prevent +complete compliance by all parties with all applicable laws. + + +NO WARRANTY +=========== + +There is no warranty for the Work. Except when otherwise stated in +writing, the Copyright Holder provides the Work `as is', without +warranty of any kind, either expressed or implied, including, but not +limited to, the implied warranties of merchantability and fitness for a +particular purpose. The entire risk as to the quality and performance +of the Work is with you. Should the Work prove defective, you assume +the cost of all necessary servicing, repair, or correction. + +In no event unless required by applicable law or agreed to in writing +will The Copyright Holder, or any author named in the components of the +Work, or any other party who may distribute and/or modify the Work as +permitted above, be liable to you for damages, including any general, +special, incidental or consequential damages arising out of any use of +the Work or out of inability to use the Work (including, but not limited +to, loss of data, data being rendered inaccurate, or losses sustained by +anyone as a result of any failure of the Work to operate with any other +programs), even if the Copyright Holder or said author or said other +party has been advised of the possibility of such damages. + + +MAINTENANCE OF THE WORK +======================= + +The Work has the status `author-maintained' if the Copyright Holder +explicitly and prominently states near the primary copyright notice in +the Work that the Work can only be maintained by the Copyright Holder +or simply that it is `author-maintained'. + +The Work has the status `maintained' if there is a Current Maintainer +who has indicated in the Work that they are willing to receive error +reports for the Work (for example, by supplying a valid e-mail +address). It is not required for the Current Maintainer to acknowledge +or act upon these error reports. + +The Work changes from status `maintained' to `unmaintained' if there +is no Current Maintainer, or the person stated to be Current +Maintainer of the work cannot be reached through the indicated means +of communication for a period of six months, and there are no other +significant signs of active maintenance. + +You can become the Current Maintainer of the Work by agreement with +any existing Current Maintainer to take over this role. + +If the Work is unmaintained, you can become the Current Maintainer of +the Work through the following steps: + + 1. Make a reasonable attempt to trace the Current Maintainer (and + the Copyright Holder, if the two differ) through the means of + an Internet or similar search. + + 2. If this search is successful, then enquire whether the Work + is still maintained. + + a. If it is being maintained, then ask the Current Maintainer + to update their communication data within one month. + + b. If the search is unsuccessful or no action to resume active + maintenance is taken by the Current Maintainer, then announce + within the pertinent community your intention to take over + maintenance. (If the Work is a LaTeX work, this could be + done, for example, by posting to comp.text.tex.) + + 3a. If the Current Maintainer is reachable and agrees to pass + maintenance of the Work to you, then this takes effect + immediately upon announcement. + + b. If the Current Maintainer is not reachable and the Copyright + Holder agrees that maintenance of the Work be passed to you, + then this takes effect immediately upon announcement. + + 4. If you make an `intention announcement' as described in 2b. above + and after three months your intention is challenged neither by + the Current Maintainer nor by the Copyright Holder nor by other + people, then you may arrange for the Work to be changed so as + to name you as the (new) Current Maintainer. + + 5. If the previously unreachable Current Maintainer becomes + reachable once more within three months of a change completed + under the terms of 3b) or 4), then that Current Maintainer must + become or remain the Current Maintainer upon request provided + they then update their communication data within one month. + +A change in the Current Maintainer does not, of itself, alter the fact +that the Work is distributed under the LPPL license. + +If you become the Current Maintainer of the Work, you should +immediately provide, within the Work, a prominent and unambiguous +statement of your status as Current Maintainer. You should also +announce your new status to the same pertinent community as +in 2b) above. + + +WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE +====================================================== + +This section contains important instructions, examples, and +recommendations for authors who are considering distributing their +works under this license. These authors are addressed as `you' in +this section. + +Choosing This License or Another License +---------------------------------------- + +If for any part of your work you want or need to use *distribution* +conditions that differ significantly from those in this license, then +do not refer to this license anywhere in your work but, instead, +distribute your work under a different license. You may use the text +of this license as a model for your own license, but your license +should not refer to the LPPL or otherwise give the impression that +your work is distributed under the LPPL. + +The document `modguide.tex' in the base LaTeX distribution explains +the motivation behind the conditions of this license. It explains, +for example, why distributing LaTeX under the GNU General Public +License (GPL) was considered inappropriate. Even if your work is +unrelated to LaTeX, the discussion in `modguide.tex' may still be +relevant, and authors intending to distribute their works under any +license are encouraged to read it. + +A Recommendation on Modification Without Distribution +----------------------------------------------------- + +It is wise never to modify a component of the Work, even for your own +personal use, without also meeting the above conditions for +distributing the modified component. While you might intend that such +modifications will never be distributed, often this will happen by +accident -- you may forget that you have modified that component; or +it may not occur to you when allowing others to access the modified +version that you are thus distributing it and violating the conditions +of this license in ways that could have legal implications and, worse, +cause problems for the community. It is therefore usually in your +best interest to keep your copy of the Work identical with the public +one. Many works provide ways to control the behavior of that work +without altering any of its licensed components. + +How to Use This License +----------------------- + +To use this license, place in each of the components of your work both +an explicit copyright notice including your name and the year the work +was authored and/or last substantially modified. Include also a +statement that the distribution and/or modification of that +component is constrained by the conditions in this license. + +Here is an example of such a notice and statement: + + %% pig.dtx + %% Copyright 2005 M. Y. Name + % + % This work may be distributed and/or modified under the + % conditions of the LaTeX Project Public License, either version 1.3 + % of this license or (at your option) any later version. + % The latest version of this license is in + % http://www.latex-project.org/lppl.txt + % and version 1.3 or later is part of all distributions of LaTeX + % version 2005/12/01 or later. + % + % This work has the LPPL maintenance status `maintained'. + % + % The Current Maintainer of this work is M. Y. Name. + % + % This work consists of the files pig.dtx and pig.ins + % and the derived file pig.sty. + +Given such a notice and statement in a file, the conditions +given in this license document would apply, with the `Work' referring +to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being +generated from `pig.dtx' using `pig.ins'), the `Base Interpreter' +referring to any `LaTeX-Format', and both `Copyright Holder' and +`Current Maintainer' referring to the person `M. Y. Name'. + +If you do not want the Maintenance section of LPPL to apply to your +Work, change `maintained' above into `author-maintained'. +However, we recommend that you use `maintained', as the Maintenance +section was added in order to ensure that your Work remains useful to +the community even when you can no longer maintain and support it +yourself. + +Derived Works That Are Not Replacements +--------------------------------------- + +Several clauses of the LPPL specify means to provide reliability and +stability for the user community. They therefore concern themselves +with the case that a Derived Work is intended to be used as a +(compatible or incompatible) replacement of the original Work. If +this is not the case (e.g., if a few lines of code are reused for a +completely different task), then clauses 6b and 6d shall not apply. + + +Important Recommendations +------------------------- + + Defining What Constitutes the Work + + The LPPL requires that distributions of the Work contain all the + files of the Work. It is therefore important that you provide a + way for the licensee to determine which files constitute the Work. + This could, for example, be achieved by explicitly listing all the + files of the Work near the copyright notice of each file or by + using a line such as: + + % This work consists of all files listed in manifest.txt. + + in that place. In the absence of an unequivocal list it might be + impossible for the licensee to determine what is considered by you + to comprise the Work and, in such a case, the licensee would be + entitled to make reasonable conjectures as to which files comprise + the Work. + + Creative Commons Attribution-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES + RESULTING FROM ITS USE. + +License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS + CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS + PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK + OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS + PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND + AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS + LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE + RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS + AND CONDITIONS. + + 1. Definitions + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may + be recast, transformed, or adapted including in any form + recognizably derived from the original, except that a work that + constitutes a Collection will not be considered an Adaptation for + the purpose of this License. For the avoidance of doubt, where the + Work is a musical work, performance or phonogram, the + synchronization of the Work in timed-relation with a moving image + ("synching") will be considered an Adaptation for the purpose of + this License. + b. "Collection" means a collection of literary or artistic works, such + as encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works + listed in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, + in which the Work is included in its entirety in unmodified form + along with one or more other contributions, each constituting + separate and independent works in themselves, which together are + assembled into a collective whole. A work that constitutes a + Collection will not be considered an Adaptation (as defined below) + for the purposes of this License. + c. "Creative Commons Compatible License" means a license that is + listed at http://creativecommons.org/compatiblelicenses that has + been approved by Creative Commons as being essentially equivalent + to this License, including, at a minimum, because that license: (i) + contains terms that have the same purpose, meaning and effect as + the License Elements of this License; and, (ii) explicitly permits + the relicensing of adaptations of works made available under that + license under this License or a Creative Commons jurisdiction + license with the same License Elements as this License. + d. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + e. "License Elements" means the following high-level license + attributes as selected by Licensor and indicated in the title of + this License: Attribution, ShareAlike. + f. "Licensor" means the individual, individuals, entity or entities + that offer(s) the Work under the terms of this License. + g. "Original Author" means, in the case of a literary or artistic + work, the individual, individuals, entity or entities who created + the Work or if no individual or entity can be identified, the + publisher; and in addition (i) in the case of a performance the + actors, singers, musicians, dancers, and other persons who act, + sing, deliver, declaim, play in, interpret or otherwise perform + literary or artistic works or expressions of folklore; (ii) in the + case of a phonogram the producer being the person or legal entity + who first fixes the sounds of a performance or other sounds; and, + (iii) in the case of broadcasts, the organization that transmits + the broadcast. + h. "Work" means the literary and/or artistic work offered under the + terms of this License including without limitation any production + in the literary, scientific and artistic domain, whatever may be + the mode or form of its expression including digital form, such as + a book, pamphlet and other writing; a lecture, address, sermon or + other work of the same nature; a dramatic or dramatico-musical + work; a choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which + are assimilated works expressed by a process analogous to + cinematography; a work of drawing, painting, architecture, + sculpture, engraving or lithography; a photographic work to which + are assimilated works expressed by a process analogous to + photography; a work of applied art; an illustration, map, plan, + sketch or three-dimensional work relative to geography, topography, + architecture or science; a performance; a broadcast; a phonogram; a + compilation of data to the extent it is protected as a + copyrightable work; or a work performed by a variety or circus + performer to the extent it is not otherwise considered a literary + or artistic work. + i. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License + with respect to the Work, or who has received express permission + from the Licensor to exercise rights under this License despite a + previous violation. + j. "Publicly Perform" means to perform public recitations of the Work + and to communicate to the public those public recitations, by any + means or process, including by wire or wireless means or public + digital performances; to make available to the public Works in such + a way that members of the public may access these Works from a + place and at a place individually chosen by them; to perform the + Work to the public by any means or process and the communication to + the public of the performances of the Work, including by public + digital performance; to broadcast and rebroadcast the Work by any + means including signs, sounds or images. + k. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage + of a protected performance or phonogram in digital form or other + electronic medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such + Adaptation, including any translation in any medium, takes + reasonable steps to clearly label, demarcate or otherwise identify + that changes were made to the original Work. For example, a + translation could be marked "The original work was translated from + English to Spanish," or a modification could indicate "The original + work has been modified."; + c. to Distribute and Publicly Perform the Work including as + incorporated in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + i. Non-waivable Compulsory License Schemes. In those + jurisdictions in which the right to collect royalties through + any statutory or compulsory licensing scheme cannot be waived, + the Licensor reserves the exclusive right to collect such + royalties for any exercise by You of the rights granted under + this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives + the exclusive right to collect such royalties for any exercise + by You of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that + the Licensor is a member of a collecting society that + administers voluntary licensing schemes, via that society, + from any exercise by You of the rights granted under this + License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights + in other media and formats. Subject to Section 8(f), all rights not + expressly granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly + made subject to and limited by the following restrictions: + a. You may Distribute or Publicly Perform the Work only under the + terms of this License. You must include a copy of, or the Uniform + Resource Identifier (URI) for, this License with every copy of the + Work You Distribute or Publicly Perform. You may not offer or + impose any terms on the Work that restrict the terms of this + License or the ability of the recipient of the Work to exercise the + rights granted to that recipient under the terms of the License. + You may not sublicense the Work. You must keep intact all notices + that refer to this License and to the disclaimer of warranties with + every copy of the Work You Distribute or Publicly Perform. When You + Distribute or Publicly Perform the Work, You may not impose any + effective technological measures on the Work that restrict the + ability of a recipient of the Work from You to exercise the rights + granted to that recipient under the terms of the License. This + Section 4(a) applies to the Work as incorporated in a Collection, + but this does not require the Collection apart from the Work itself + to be made subject to the terms of this License. If You create a + Collection, upon notice from any Licensor You must, to the extent + practicable, remove from the Collection any credit as required by + Section 4(c), as requested. If You create an Adaptation, upon + notice from any Licensor You must, to the extent practicable, + remove from the Adaptation any credit as required by Section 4(c), + as requested. + b. You may Distribute or Publicly Perform an Adaptation only under the + terms of: (i) this License; (ii) a later version of this License + with the same License Elements as this License; (iii) a Creative + Commons jurisdiction license (either this or a later license + version) that contains the same License Elements as this License + (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons + Compatible License. If you license the Adaptation under one of the + licenses mentioned in (iv), you must comply with the terms of that + license. If you license the Adaptation under the terms of any of + the licenses mentioned in (i), (ii) or (iii) (the "Applicable + License"), you must comply with the terms of the Applicable License + generally and the following provisions: (I) You must include a copy + of, or the URI for, the Applicable License with every copy of each + Adaptation You Distribute or Publicly Perform; (II) You may not + offer or impose any terms on the Adaptation that restrict the terms + of the Applicable License or the ability of the recipient of the + Adaptation to exercise the rights granted to that recipient under + the terms of the Applicable License; (III) You must keep intact all + notices that refer to the Applicable License and to the disclaimer + of warranties with every copy of the Work as included in the + Adaptation You Distribute or Publicly Perform; (IV) when You + Distribute or Publicly Perform the Adaptation, You may not impose + any effective technological measures on the Adaptation that + restrict the ability of a recipient of the Adaptation from You to + exercise the rights granted to that recipient under the terms of + the Applicable License. This Section 4(b) applies to the Adaptation + as incorporated in a Collection, but this does not require the + Collection apart from the Adaptation itself to be made subject to + the terms of the Applicable License. + c. If You Distribute, or Publicly Perform the Work or any Adaptations + or Collections, You must, unless a request has been made pursuant + to Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) + the name of the Original Author (or pseudonym, if applicable) if + supplied, and/or if the Original Author and/or Licensor designate + another party or parties (e.g., a sponsor institute, publishing + entity, journal) for attribution ("Attribution Parties") in + Licensor's copyright notice, terms of service or by other + reasonable means, the name of such party or parties; (ii) the title + of the Work if supplied; (iii) to the extent reasonably + practicable, the URI, if any, that Licensor specifies to be + associated with the Work, unless such URI does not refer to the + copyright notice or licensing information for the Work; and (iv) , + consistent with Ssection 3(b), in the case of an Adaptation, a + credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(c) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, + at a minimum such credit will appear, if a credit for all + contributing authors of the Adaptation or Collection appears, then + as part of these credits and in a manner at least as prominent as + the credits for the other contributing authors. For the avoidance + of doubt, You may only use the credit required by this Section for + the purpose of attribution in the manner set out above and, by + exercising Your rights under this License, You may not implicitly + or explicitly assert or imply any connection with, sponsorship or + endorsement by the Original Author, Licensor and/or Attribution + Parties, as appropriate, of You or Your use of the Work, without + the separate, express prior written permission of the Original + Author, Licensor and/or Attribution Parties. + d. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute + or Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify + or take other derogatory action in relation to the Work which would + be prejudicial to the Original Author's honor or reputation. + Licensor agrees that in those jurisdictions (e.g. Japan), in which + any exercise of the right granted in Section 3(b) of this License + (the right to make Adaptations) would be deemed to be a distortion, + mutilation, modification or other derogatory action prejudicial to + the Original Author's honor and reputation, the Licensor will waive + or not assert, as appropriate, this Section, to the fullest extent + permitted by the applicable national law, to enable You to + reasonably exercise Your right under Section 3(b) of this License + (right to make Adaptations) but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF + ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW + THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO + YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or + Collections from You under this License, however, will not have + their licenses terminated provided such individuals or entities + remain in full compliance with those licenses. Sections 1, 2, 5, 6, + 7, and 8 will survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here + is perpetual (for the duration of the applicable copyright in the + Work). Notwithstanding the above, Licensor reserves the right to + release the Work under different license terms or to stop + distributing the Work at any time; provided, however that any such + election will not serve to withdraw this License (or any other + license that has been, or is required to be, granted under the + terms of this License), and this License will continue in full + force and effect unless terminated as stated above. + + 8. Miscellaneous + a. Each time You Distribute or Publicly Perform the Work or a + Collection, the Licensor offers to the recipient a license to the + Work on the same terms and conditions as the license granted to You + under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, + Licensor offers to the recipient a license to the original Work on + the same terms and conditions as the license granted to You under + this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability + of the remainder of the terms of this License, and without further + action by the parties to this agreement, such provision shall be + reformed to the minimum extent necessary to make such provision + valid and enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in + writing and signed by the party to be charged with such waiver or + consent. + e. This License constitutes the entire agreement between the parties + with respect to the Work licensed here. There are no + understandings, agreements or representations with respect to the + Work not specified here. Licensor shall not be bound by any + additional provisions that may appear in any communication from + You. This License may not be modified without the mutual written + agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in + this License were drafted utilizing the terminology of the Berne + Convention for the Protection of Literary and Artistic Works (as + amended on September 28, 1979), the Rome Convention of 1961, the + WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms + Treaty of 1996 and the Universal Copyright Convention (as revised + on July 24, 1971). These rights and subject matter take effect in + the relevant jurisdiction in which the License terms are sought to + be enforced according to the corresponding provisions of the + implementation of those treaty provisions in the applicable + national law. If the standard suite of rights granted under + applicable copyright law includes additional rights not granted + under this License, such additional rights are deemed to be + included in the License; this License is not intended to restrict + the license of any rights under applicable law. + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior written + consent of Creative Commons. Any permitted use will be in compliance + with Creative Commons' then-current trademark usage guidelines, as may + be published on its website or otherwise made available upon request + from time to time. For the avoidance of doubt, this trademark + restriction does not form part of the License. + + Creative Commons may be contacted at http://creativecommons.org/. + diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/java/org/alfresco/transformer/LibreOfficeTransformationIT.java b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/java/org/alfresco/transformer/LibreOfficeTransformationIT.java index 886a00c5..7dd05877 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/java/org/alfresco/transformer/LibreOfficeTransformationIT.java +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/java/org/alfresco/transformer/LibreOfficeTransformationIT.java @@ -145,7 +145,6 @@ public class LibreOfficeTransformationIT testFile(MIMETYPE_OPENXML_SPREADSHEET_TEMPLATE_MACRO ,"xltm" ,"quick.xltm"), testFile(MIMETYPE_OPENXML_PRESENTATION_SLIDESHOW ,"ppsx" ,"quick.ppsx"), testFile(MIMETYPE_OPENXML_PRESENTATION_SLIDESHOW_MACRO ,"ppsm" ,"quick.ppsm"), - testFile(MIMETYPE_OUTLOOK_MSG ,"msg" ,"quick.msg"), testFile(MIMETYPE_DITA ,"dita" ,"quick.dita"), testFile(MIMETYPE_TEXT_PLAIN ,"txt" ,"quick.txt"), testFile(MIMETYPE_STC ,"stc" ,"quick.stc"), @@ -185,16 +184,14 @@ public class LibreOfficeTransformationIT allTargets("quick.xml", pdfTarget), allTargets("quick.xltm", pdfTarget), allTargets("quick.dita", pdfTarget), - allTargets("quick.msg", pdfTarget), allTargets("quick.ppsm", pdfTarget), allTargets("quick.ppsx", pdfTarget), allTargets("quick.stc", pdfTarget), allTargets("quick.sti", pdfTarget), allTargets("quick.stw", pdfTarget), allTargets("quick.sxc", pdfTarget), - allTargets("quick.sxi", pdfTarget), + allTargets("quick.sxi", pdfTarget) - allTargets("quick.msg", txtTarget) ) .flatMap(identity()); } diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/resources/quick.msg b/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/resources/quick.msg deleted file mode 100644 index 6ee37500..00000000 Binary files a/alfresco-transform-libreoffice/alfresco-transform-libreoffice-boot/src/test/resources/quick.msg and /dev/null differ diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice/pom.xml b/alfresco-transform-libreoffice/alfresco-transform-libreoffice/pom.xml index 8edd9788..1b6ad67f 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice/pom.xml +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice/pom.xml @@ -8,7 +8,7 @@ alfresco-transform-core org.alfresco - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-libreoffice/alfresco-transform-libreoffice/src/main/resources/libreoffice_engine_config.json b/alfresco-transform-libreoffice/alfresco-transform-libreoffice/src/main/resources/libreoffice_engine_config.json index ef9d16a9..0532a574 100644 --- a/alfresco-transform-libreoffice/alfresco-transform-libreoffice/src/main/resources/libreoffice_engine_config.json +++ b/alfresco-transform-libreoffice/alfresco-transform-libreoffice/src/main/resources/libreoffice_engine_config.json @@ -231,8 +231,6 @@ {"sourceMediaType": "application/vnd.ms-powerpoint.slideshow.macroenabled.12", "priority": 110, "targetMediaType": "application/pdf" }, - {"sourceMediaType": "application/vnd.ms-outlook", "priority": 110, "targetMediaType": "application/pdf" }, - {"sourceMediaType": "application/dita+xml", "priority": 110, "targetMediaType": "application/pdf" }, {"sourceMediaType": "application/vnd.openxmlformats-officedocument.spreadsheetml.template", "targetMediaType": "text/html" }, diff --git a/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile b/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile index a8f2fc19..0f7ebe12 100644 --- a/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile +++ b/alfresco-transform-misc/alfresco-transform-misc-boot/Dockerfile @@ -1,8 +1,7 @@ # Image provides a container in which to run miscellaneous transformations for Alfresco Content Services. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 -ENV APACHE_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/Apache%202.0.txt ENV JAVA_OPTS="" # Set default user information @@ -14,12 +13,12 @@ ARG USERID=33006 COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \ - curl -s -S $APACHE_LICENSE_FILE -o Apache\ 2.0.txt && \ yum clean all ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${MISCUSERNAME} && \ diff --git a/alfresco-transform-misc/alfresco-transform-misc-boot/pom.xml b/alfresco-transform-misc/alfresco-transform-misc-boot/pom.xml index f6e5e5df..e075c4ab 100644 --- a/alfresco-transform-misc/alfresco-transform-misc-boot/pom.xml +++ b/alfresco-transform-misc/alfresco-transform-misc-boot/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-misc/alfresco-transform-misc-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt b/alfresco-transform-misc/alfresco-transform-misc-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt new file mode 100644 index 00000000..b09cd785 --- /dev/null +++ b/alfresco-transform-misc/alfresco-transform-misc-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/alfresco-transform-misc/alfresco-transform-misc-boot/src/test/java/org/alfresco/transformer/MiscControllerTest.java b/alfresco-transform-misc/alfresco-transform-misc-boot/src/test/java/org/alfresco/transformer/MiscControllerTest.java index 89580f20..d4b4ff86 100644 --- a/alfresco-transform-misc/alfresco-transform-misc-boot/src/test/java/org/alfresco/transformer/MiscControllerTest.java +++ b/alfresco-transform-misc/alfresco-transform-misc-boot/src/test/java/org/alfresco/transformer/MiscControllerTest.java @@ -245,19 +245,21 @@ public class MiscControllerTest extends AbstractTransformerControllerTest public void testExtractMetadataRFC822() throws Exception { String expected = - "{\"{http://www.alfresco.org/model/content/1.0}addressee\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/content/1.0}description\":\"The quick brown fox jumps over the lazy dog\"," + - "\"{http://www.alfresco.org/model/content/1.0}addressees\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/imap/1.0}dateSent\":1086351802000," + - "\"{http://www.alfresco.org/model/imap/1.0}messageTo\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/imap/1.0}messageId\":\"<20040604122322.GV1905@phoenix.home>\"," + - "\"{http://www.alfresco.org/model/content/1.0}title\":\"The quick brown fox jumps over the lazy dog\"," + - "\"{http://www.alfresco.org/model/imap/1.0}messageSubject\":\"The quick brown fox jumps over the lazy dog\"," + - "\"{http://www.alfresco.org/model/imap/1.0}messageCc\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/content/1.0}sentdate\":1086351802000," + - "\"{http://www.alfresco.org/model/content/1.0}subjectline\":\"The quick brown fox jumps over the lazy dog\"," + - "\"{http://www.alfresco.org/model/imap/1.0}messageFrom\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/content/1.0}originator\":\"Nevin Nollop \"}"; + "{"+ + "\"{http://www.alfresco.org/model/content/1.0}addressee\":\"Nevin Nollop \","+ + "\"{http://www.alfresco.org/model/content/1.0}addressees\":\"Nevin Nollop \","+ + "\"{http://www.alfresco.org/model/content/1.0}description\":\"The quick brown fox jumps over the lazy dog\","+ + "\"{http://www.alfresco.org/model/content/1.0}originator\":\"Nevin Nollop \","+ + "\"{http://www.alfresco.org/model/content/1.0}sentdate\":1086351802000,"+ + "\"{http://www.alfresco.org/model/content/1.0}subjectline\":\"The quick brown fox jumps over the lazy dog\","+ + "\"{http://www.alfresco.org/model/content/1.0}title\":\"The quick brown fox jumps over the lazy dog\","+ + "\"{http://www.alfresco.org/model/imap/1.0}dateSent\":1086351802000,"+ + "\"{http://www.alfresco.org/model/imap/1.0}messageCc\":\"Nevin Nollop \","+ + "\"{http://www.alfresco.org/model/imap/1.0}messageFrom\":\"Nevin Nollop \","+ + "\"{http://www.alfresco.org/model/imap/1.0}messageId\":\"<20040604122322.GV1905@phoenix.home>\","+ + "\"{http://www.alfresco.org/model/imap/1.0}messageSubject\":\"The quick brown fox jumps over the lazy dog\","+ + "\"{http://www.alfresco.org/model/imap/1.0}messageTo\":\"Nevin Nollop \""+ + "}"; MvcResult result = sendRequest("eml", null, MIMETYPE_RFC822, @@ -287,9 +289,9 @@ public class MiscControllerTest extends AbstractTransformerControllerTest "\"messageFrom\":[" + "\"{http://www.alfresco.org/model/dod5015/1.0}dodProp1\"]}\n"; String expected = - "{\"{http://www.alfresco.org/model/imap/1.0}messageSubject\":\"The quick brown fox jumps over the lazy dog\"," + + "{\"{http://www.alfresco.org/model/content/1.0}title\":\"The quick brown fox jumps over the lazy dog\","+ "\"{http://www.alfresco.org/model/dod5015/1.0}dodProp1\":\"Nevin Nollop \"," + - "\"{http://www.alfresco.org/model/content/1.0}title\":\"The quick brown fox jumps over the lazy dog\"}"; + "\"{http://www.alfresco.org/model/imap/1.0}messageSubject\":\"The quick brown fox jumps over the lazy dog\"}"; MvcResult result = sendRequest("eml", null, MIMETYPE_RFC822, diff --git a/alfresco-transform-misc/alfresco-transform-misc/LICENSES.md b/alfresco-transform-misc/alfresco-transform-misc/LICENSES.md index ececbd9d..4aac659e 100644 --- a/alfresco-transform-misc/alfresco-transform-misc/LICENSES.md +++ b/alfresco-transform-misc/alfresco-transform-misc/LICENSES.md @@ -5,5 +5,5 @@ * pdfbox-tools http://pdfbox.apache.org/ * poi-ooxml http://poi.apache.org/ * commons-compress, PDFBox and poi-ooxml are from Apache. See the license at http://www.apache.org/licenses/LICENSE-2.0 or the - [Apache 2.0.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/Apache%202.0.txt) + [Apache 2.0.txt](../alfresco-transform-misc-boot/src/main/resources/licenses/3rd-party/Apache%202.0.txt) file placed in the root directory of the docker image. diff --git a/alfresco-transform-misc/alfresco-transform-misc/pom.xml b/alfresco-transform-misc/alfresco-transform-misc/pom.xml index 324072c9..86da9a9a 100644 --- a/alfresco-transform-misc/alfresco-transform-misc/pom.xml +++ b/alfresco-transform-misc/alfresco-transform-misc/pom.xml @@ -9,7 +9,7 @@ alfresco-transform-core org.alfresco - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml @@ -42,7 +42,7 @@ org.apache.pdfbox pdfbox-tools - 2.0.22 + 2.0.24 diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/Dockerfile b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/Dockerfile index 759e710d..2e83187a 100644 --- a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/Dockerfile +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/Dockerfile @@ -2,10 +2,9 @@ # alfresco-pdf-renderer uses the PDFium library from Google Inc. See the license at https://pdfium.googlesource.com/pdfium/+/master/LICENSE or in /pdfium.txt. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 ENV ALFRESCO_PDF_RENDERER_LIB_RPM_URL=https://nexus.alfresco.com/nexus/service/local/repositories/releases/content/org/alfresco/alfresco-pdf-renderer/1.1/alfresco-pdf-renderer-1.1-linux.tgz -ENV PDFIUM_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/pdfium.txt ENV JAVA_OPTS="" # Set default user information @@ -18,7 +17,6 @@ COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \ curl -s -S $ALFRESCO_PDF_RENDERER_LIB_RPM_URL -o alfresco-pdf-renderer-linux.tgz && \ - curl -s -S $PDFIUM_LICENSE_FILE -o pdfium.txt && \ tar xf alfresco-pdf-renderer-linux.tgz -C /usr/bin && \ rm -f alfresco-pdf-renderer-linux.tgz && \ yum clean all @@ -26,6 +24,7 @@ RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${ ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${PDFUSERNAME} && \ diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/LICENSES.md b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/LICENSES.md index 8dd5b427..10d90777 100644 --- a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/LICENSES.md +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/LICENSES.md @@ -1,4 +1,4 @@ ### Licenses * The alfresco-pdf-renderer transformer uses the PDFium library from Google Inc. See [https://pdfium.googlesource.com/pdfium/+/master/LICENSE](https://pdfium.googlesource.com/pdfium/+/master/LICENSE) -or the [pdfium.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/zip/src/main/resources/licenses/3rd-party/pdfium.txt) file placed in the root directory of the docker image. +or the [pdfium.txt](../alfresco-transform-pdf-renderer-boot/src/main/resources/licenses/3rd-party/pdfium.txt) file placed in the root directory of the docker image. diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/pom.xml b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/pom.xml index 39935fa0..9b37f1d3 100644 --- a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/pom.xml +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/src/main/resources/licenses/3rd-party/pdfium.txt b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/src/main/resources/licenses/3rd-party/pdfium.txt new file mode 100644 index 00000000..8b4ed6dd --- /dev/null +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer-boot/src/main/resources/licenses/3rd-party/pdfium.txt @@ -0,0 +1,27 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/LICENSES.md b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/LICENSES.md index 8dd5b427..10d90777 100644 --- a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/LICENSES.md +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/LICENSES.md @@ -1,4 +1,4 @@ ### Licenses * The alfresco-pdf-renderer transformer uses the PDFium library from Google Inc. See [https://pdfium.googlesource.com/pdfium/+/master/LICENSE](https://pdfium.googlesource.com/pdfium/+/master/LICENSE) -or the [pdfium.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/zip/src/main/resources/licenses/3rd-party/pdfium.txt) file placed in the root directory of the docker image. +or the [pdfium.txt](../alfresco-transform-pdf-renderer-boot/src/main/resources/licenses/3rd-party/pdfium.txt) file placed in the root directory of the docker image. diff --git a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/pom.xml b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/pom.xml index b4f79dcc..db441785 100644 --- a/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/pom.xml +++ b/alfresco-transform-pdf-renderer/alfresco-transform-pdf-renderer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/Dockerfile b/alfresco-transform-tika/alfresco-transform-tika-boot/Dockerfile index 18c17f0f..03dd0bde 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/Dockerfile +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/Dockerfile @@ -2,9 +2,12 @@ # Tika is from Apache. See the license at http://www.apache.org/licenses/LICENSE-2.0. -FROM alfresco/alfresco-base-java:11.0.10-openjdk-centos-8@sha256:343c8f63cf80c7af51785b93d6972b0c00087a1c0b995098cb8285c4d9db74b5 +FROM alfresco/alfresco-base-java:11.0.12-centos-811@sha256:f1bb731da820f33dc1e3cfe27d3192b67d68237d0a4441829140dfbd1e48c8a5 + +ARG EXIFTOOL_VERSION=12.25 +ARG EXIFTOOL_FOLDER=Image-ExifTool-${EXIFTOOL_VERSION} +ARG EXIFTOOL_URL=https://nexus.alfresco.com/nexus/service/local/repositories/thirdparty/content/org/exiftool/image-exiftool/${EXIFTOOL_VERSION}/image-exiftool-${EXIFTOOL_VERSION}.tgz -ENV APACHE_LICENSE_FILE=https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/Apache%202.0.txt ENV JAVA_OPTS="" # Set default user information @@ -16,12 +19,20 @@ ARG USERID=33004 COPY target/${env.project_artifactId}-${env.project_version}.jar /usr/bin RUN ln /usr/bin/${env.project_artifactId}-${env.project_version}.jar /usr/bin/${env.project_artifactId}.jar && \ - curl -s -S $APACHE_LICENSE_FILE -o Apache\ 2.0.txt && \ + curl -s -S $EXIFTOOL_URL -o ${EXIFTOOL_FOLDER}.tgz && \ + tar xzf ${EXIFTOOL_FOLDER}.tgz && \ + yum -y install perl && \ + (cd ./${EXIFTOOL_FOLDER} && \ + perl Makefile.PL && \ + make && \ + make test && \ + make install) && \ yum clean all ADD target/generated-resources/licenses /licenses ADD target/generated-resources/licenses.xml /licenses/ ADD target/generated-sources/license/THIRD-PARTY.txt /licenses/ +COPY src/main/resources/licenses/3rd-party/ / RUN groupadd -g ${GROUPID} ${GROUPNAME} && \ useradd -u ${USERID} -G ${GROUPNAME} ${TIKAUSERNAME} && \ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/pom.xml b/alfresco-transform-tika/alfresco-transform-tika-boot/pom.xml index a2db3d91..6389f3fd 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/pom.xml +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml @@ -92,12 +92,12 @@ org.bouncycastle bcprov-jdk15on - 1.68 + 1.69 org.bouncycastle bcmail-jdk15on - 1.68 + 1.69 diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/Application.java b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/Application.java index eb13e15e..d95be427 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/Application.java +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/Application.java @@ -69,7 +69,7 @@ public class Application { logger.info("--------------------------------------------------------------------------------------------------------------------------------------------------------------"); Arrays.stream(LICENCE.split("\\n")).forEach(logger::info); - logger.info(TikaJavaExecutor.LICENCE); + Arrays.stream(TikaJavaExecutor.LICENCE.split("\\n")).forEach(logger::info); logger.info("--------------------------------------------------------------------------------------------------------------------------------------------------------------"); logger.info("Starting application components... Done"); diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/TikaController.java b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/TikaController.java index 82323940..05631956 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/TikaController.java +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/java/org/alfresco/transformer/TikaController.java @@ -30,6 +30,7 @@ import org.alfresco.transformer.executors.TikaJavaExecutor; import org.alfresco.transformer.probes.ProbeTestTransform; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import java.io.File; @@ -67,7 +68,12 @@ public class TikaController extends AbstractTransformerController { private static final Logger logger = LoggerFactory.getLogger(TikaController.class); - private TikaJavaExecutor javaExecutor = new TikaJavaExecutor(); + private TikaJavaExecutor javaExecutor; + + public TikaController(@Value("${transform.core.tika.pdfBox.notExtractBookmarksTextDefault:false}") boolean notExtractBookmarksTextDefault) + { + javaExecutor= new TikaJavaExecutor(notExtractBookmarksTextDefault); + } @Override public String getTransformerName() diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/application-default.yaml b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/application-default.yaml index 0a4b2765..559c09c3 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/application-default.yaml +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/application-default.yaml @@ -3,4 +3,7 @@ queue: transform: core: config: - location: classpath:tika_engine_config.json \ No newline at end of file + location: classpath:tika_engine_config.json + tika: + pdfBox: + notExtractBookmarksTextDefault: ${PDFBOX_NOTEXTRACTBOOKMARKS_DEFAULT:false} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt new file mode 100644 index 00000000..b09cd785 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Apache 2.0.txt @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt new file mode 100644 index 00000000..699679e8 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-license.txt @@ -0,0 +1,127 @@ + The "Artistic License" + + Preamble + +The intent of this document is to state the conditions under which a +Package may be copied, such that the Copyright Holder maintains some +semblance of artistic control over the development of the package, +while giving the users of the package the right to use and distribute +the Package in a more-or-less customary fashion, plus the right to make +reasonable modifications. + +Definitions: + + "Package" refers to the collection of files distributed by the + Copyright Holder, and derivatives of that collection of files + created through textual modification. + + "Standard Version" refers to such a Package if it has not been + modified, or has been modified in accordance with the wishes + of the Copyright Holder as specified below. + + "Copyright Holder" is whoever is named in the copyright or + copyrights for the package. + + "You" is you, if you're thinking about copying or distributing + this Package. + + "Reasonable copying fee" is whatever you can justify on the + basis of media cost, duplication charges, time of people involved, + and so on. (You will not be required to justify it to the + Copyright Holder, but only to the computing community at large + as a market that must bear the fee.) + + "Freely Available" means that no fee is charged for the item + itself, though there may be fees involved in handling the item. + It also means that recipients of the item may redistribute it + under the same conditions they received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you +duplicate all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications +derived from the Public Domain or from the Copyright Holder. A Package +modified in such a way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided +that you insert a prominent notice in each changed file stating how and +when you changed that file, and provided that you do at least ONE of the +following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or + an equivalent medium, or placing the modifications on a major archive + site such as uunet.uu.net, or by allowing the Copyright Holder to include + your modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict + with standard executables, which must also be provided, and provide + a separate manual page for each non-standard executable that clearly + documents how it differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or +executable form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where + to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) give non-standard executables non-standard names, and clearly + document the differences in manual pages (or equivalent), together + with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this +Package. You may charge any fee you choose for support of this +Package. You may not charge a fee for this Package itself. However, +you may distribute this Package in aggregate with other (possibly +commercial) programs as part of a larger (possibly commercial) software +distribution provided that you do not advertise this Package as a +product of your own. You may embed this Package's interpreter within +an executable of yours (by linking); this shall be construed as a mere +form of aggregation, provided that the complete Standard Version of the +interpreter is so embedded. + +6. The scripts and library files supplied as input to or produced as +output from the programs of this Package do not automatically fall +under the copyright of this Package, but belong to whoever generated +them, and may be sold commercially, and may be aggregated with this +Package. If such scripts or library files are aggregated with this +Package via the so-called "undump" or "unexec" methods of producing a +binary executable image, then distribution of such an image shall +neither be construed as a distribution of this Package nor shall it +fall under the restrictions of Paragraphs 3 and 4, provided that you do +not represent such an executable image as a Standard Version of this +Package. + +7. C subroutines (or comparably compiled subroutines in other +languages) supplied by you and linked into this Package in order to +emulate subroutines and variables of the language defined by this +Package shall not be considered part of this Package, but are the +equivalent of input as in Paragraph 6, provided these subroutines do +not change the language in any way that would cause it to fail the +regression tests for the language. + +8. Aggregation of this Package with a commercial distribution is always +permitted provided that the use of this Package is embedded; that is, +when no overt attempt is made to make this Package's interfaces visible +to the end user of the commercial distribution. Such use shall not be +construed as a distribution of this Package. + +9. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + The End \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaControllerTest.java b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaControllerTest.java index bba86431..164b3376 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaControllerTest.java +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaControllerTest.java @@ -61,7 +61,7 @@ import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_XHTML; import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_XML; import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_ZIP; import static org.alfresco.transformer.util.RequestParamMap.INCLUDE_CONTENTS; -import static org.alfresco.transformer.util.RequestParamMap.NOT_EXTRACT_BOOKMARK_TEXT; +import static org.alfresco.transformer.util.RequestParamMap.NOT_EXTRACT_BOOKMARKS_TEXT; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; @@ -585,7 +585,7 @@ public class TikaControllerTest extends AbstractTransformerControllerTest mockTransformCommand(PDF, TXT, MIMETYPE_PDF, true); mockMvc.perform( mockMvcRequest("/transform", sourceFile, "targetExtension", targetExtension).param( - NOT_EXTRACT_BOOKMARK_TEXT, "true")) + NOT_EXTRACT_BOOKMARKS_TEXT, "true")) .andExpect(status().is(OK.value())) .andExpect(header().string("Content-Disposition", "attachment; filename*= UTF-8''quick." + targetExtension)); diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaMetadataExtractsIT.java b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaMetadataExtractsIT.java index 0f1b8e37..b5e35eb2 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaMetadataExtractsIT.java +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/java/org/alfresco/transformer/TikaMetadataExtractsIT.java @@ -66,6 +66,11 @@ import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_VORBIS; import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_WORD; import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_XML; import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_ZIP; +import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_IMAGE_RAW_RAF; +import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_IMAGE_RAW_ARW; +import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_IMAGE_RAW_CR2; +import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_IMAGE_RAW_RW2; +import static org.alfresco.transformer.util.MimetypeMap.MIMETYPE_IMAGE_RAW_NEF; import java.util.stream.Stream; @@ -98,6 +103,19 @@ public class TikaMetadataExtractsIT extends AbstractMetadataExtractsIT // either no quick file or the target extension has not been registered. return Stream.of( + //IPTCMetadataExtractor + testFile(MIMETYPE_IMAGE_JPEG, "jpg", "quick.jpg"), + testFile(MIMETYPE_IMAGE_JPEG, "jpg", "quickIPTC-EXT.jpg"), + testFile(MIMETYPE_IMAGE_JPEG, "jpg", "quickIPTC-multi-creator.jpg"), + testFile(MIMETYPE_IMAGE_JPEG, "jpg", "testJPEG_IPTC_EXT.jpg"), + testFile(MIMETYPE_IMAGE_GIF, "gif", "quickIPTC.gif"), + testFile(MIMETYPE_IMAGE_PNG, "png", "quickIPTC.png"), + testFile(MIMETYPE_IMAGE_RAW_ARW, "arw", "20140614_163822_Photogrpahy_Class.ARW"), + testFile(MIMETYPE_IMAGE_RAW_CR2, "cr2", "20141227_134519_Palace.CR2"), + testFile(MIMETYPE_IMAGE_RAW_RW2, "rw2", "20140629_145035_Flower.RW2"), + testFile(MIMETYPE_IMAGE_RAW_NEF, "nef", "20150408_074941_Bush.NEF"), + testFile(MIMETYPE_IMAGE_RAW_RAF, "raf", "20160502_190928_London_Underground.RAF"), + // DWGMetadataExtractor testFile(MIMETYPE_APP_DWG, "dwg", "quick2010CustomProps.dwg"), @@ -495,7 +513,6 @@ public class TikaMetadataExtractsIT extends AbstractMetadataExtractsIT //testFile("application/gff", "", ""), //testFile("video/x-oggyuv", "", ""), //testFile("application/x-msdownload", "", ""), - testFile(MIMETYPE_IMAGE_JPEG, "jpg", "quick.jpg"), //testFile("image/icns", "", ""), //testFile("application/x-emf", "", ""), //testFile("application/x-geo-pdf", "", ""), diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW new file mode 100644 index 00000000..b780d768 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW_metadata.json new file mode 100644 index 00000000..07ab7849 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140614_163822_Photogrpahy_Class.ARW_metadata.json @@ -0,0 +1,92 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "ARW", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "ARW", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2 b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2 new file mode 100644 index 00000000..1524e3cc Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2 differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2_metadata.json new file mode 100644 index 00000000..076aa74d --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20140629_145035_Flower.RW2_metadata.json @@ -0,0 +1,92 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "RW2", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "RW2", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2 b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2 new file mode 100644 index 00000000..47cfce82 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2 differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2_metadata.json new file mode 100644 index 00000000..ebd27c67 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20141227_134519_Palace.CR2_metadata.json @@ -0,0 +1,92 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "CR2", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "CR2", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF new file mode 100644 index 00000000..f36bdfdd Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF_metadata.json new file mode 100644 index 00000000..3fd09e25 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20150408_074941_Bush.NEF_metadata.json @@ -0,0 +1,92 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "NEF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "NEF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF new file mode 100644 index 00000000..a53911bc Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF_metadata.json new file mode 100644 index 00000000..2775e5ee --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/20160502_190928_London_Underground.RAF_metadata.json @@ -0,0 +1,92 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "RAF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "RAF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quick.tiff_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quick.tiff_metadata.json index e0584f08..3cc9114d 100644 --- a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quick.tiff_metadata.json +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quick.tiff_metadata.json @@ -1,11 +1,16 @@ { "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "584", "{http://www.alfresco.org/model/content/1.0}description" : "Gym class featuring a brown fox and lazy dog", - "{http://www.alfresco.org/model/exif/1.0}orientation" : "1", - "{http://www.alfresco.org/model/exif/1.0}yResolution" : "50.0", - "{http://www.alfresco.org/model/exif/1.0}resolutionUnit" : "Inch", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "413", "{http://www.alfresco.org/model/content/1.0}author" : "Nevin Nollop", - "{http://www.alfresco.org/model/exif/1.0}xResolution" : "50.0", - "{http://www.alfresco.org/model/content/1.0}title" : "The quick brown fox jumps over the lazy dog" + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "nevin.nollop@alfresco.com", + "{http://www.alfresco.org/model/content/1.0}title" : "The quick brown fox jumps over the lazy dog", + "{http://purl.org/dc/elements/1.1/}description" : "Gym class featuring a brown fox and lazy dog", + "{http://purl.org/dc/elements/1.1/}creator" : "Nevin Nollop", + "{http://www.alfresco.org/model/exif/1.0}orientation" : "1", + "{http://purl.org/dc/elements/1.1/}subject" : [ "Pangram", "fox", "dog" ], + "{http://www.alfresco.org/model/exif/1.0}resolutionUnit" : "Inch", + "{http://www.alfresco.org/model/exif/1.0}yResolution" : "50.0", + "{http://www.alfresco.org/model/exif/1.0}xResolution" : "50.0" } \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg new file mode 100644 index 00000000..937949a6 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg_metadata.json new file mode 100644 index 00000000..4932606a --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-EXT.jpg_metadata.json @@ -0,0 +1,29 @@ +{ + "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "92", + "{http://www.alfresco.org/model/content/1.0}description" : "Gym class featuring a brown fox and lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "ALFRESCO", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Alfresco", + "{http://www.alfresco.org/model/content/1.0}created" : "2015-02-26T20:48:26", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "RGAUSS", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "United Kingdom", + "{http://www.alfresco.org/model/content/1.0}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "1885-03-14", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "The Gym", + "{http://purl.org/dc/elements/1.1/}description" : "Gym class featuring a brown fox and lazy dog", + "{http://purl.org/dc/elements/1.1/}creator" : "Nevin Nollop", + "{http://www.alfresco.org/model/exif/1.0}xResolution" : "1.0", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Derek Hulley", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco Software", + "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "409", + "{http://www.alfresco.org/model/content/1.0}author" : "Nevin Nollop", + "{http://www.alfresco.org/model/exif/1.0}software" : "Adobe Photoshop CC (Macintosh)", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.2.0", + "{http://www.alfresco.org/model/exif/1.0}orientation" : "1", + "{http://purl.org/dc/elements/1.1/}subject" : [ "fox", "dog", "lazy", "jumping" ], + "{http://www.alfresco.org/model/exif/1.0}resolutionUnit" : "Inch", + "{http://www.alfresco.org/model/exif/1.0}yResolution" : "1.0", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The Dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Ray Gauss II" +} diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg new file mode 100644 index 00000000..df480eb7 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg_metadata.json new file mode 100644 index 00000000..1e6edbde --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC-multi-creator.jpg_metadata.json @@ -0,0 +1,28 @@ +{ + "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "92", + "{http://www.alfresco.org/model/content/1.0}description" : "Gym class featuring a brown fox and lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "ALFRESCO", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Alfresco", + "{http://www.alfresco.org/model/content/1.0}created" : "2013-08-01T16:24:50", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "RGAUSS", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "United Kingdom", + "{http://www.alfresco.org/model/content/1.0}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "The Gym", + "{http://purl.org/dc/elements/1.1/}description" : "Gym class featuring a brown fox and lazy dog", + "{http://purl.org/dc/elements/1.1/}creator" : [ "John Smith", "Jane Doe" ], + "{http://www.alfresco.org/model/exif/1.0}xResolution" : "1.0", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Derek Hulley", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco Software", + "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "409", + "{http://www.alfresco.org/model/content/1.0}author" : "John Smith, Jane Doe", + "{http://www.alfresco.org/model/exif/1.0}software" : "Adobe Photoshop CC (Macintosh)", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.2.0", + "{http://www.alfresco.org/model/exif/1.0}orientation" : "1", + "{http://purl.org/dc/elements/1.1/}subject" : [ "fox", "dog", "lazy", "jumping" ], + "{http://www.alfresco.org/model/exif/1.0}resolutionUnit" : "Inch", + "{http://www.alfresco.org/model/exif/1.0}yResolution" : "1.0", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The Dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Ray Gauss II" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif new file mode 100644 index 00000000..81f307c7 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif_metadata.json new file mode 100644 index 00000000..e7632162 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.gif_metadata.json @@ -0,0 +1,95 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "GIF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "3", "3", "4", "3", "4", "3", "3", "3", "3", "3", "3", "3", "3", "3", "3", "25", "153", "3", "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "GIF", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "409", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}MinorModelAgeDisclosure" : "Age 18", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "92", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png new file mode 100644 index 00000000..4ec70a99 Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png_metadata.json new file mode 100644 index 00000000..1aa29415 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/quickIPTC.png_metadata.json @@ -0,0 +1,94 @@ +{ + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Kidlington", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "PNG", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}IptcLastEdited" : "2021:05:27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "3", "3", "25", "153", "3", "25", "153", "3" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorStreetAddress" : "63 Windsor Road", + "{http://www.alfresco.org/model/content/1.0}title" : null, + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : "Kidlington", + "{http://purl.org/dc/elements/1.1/}description" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "Fox sources", + "{http://ns.adobe.com/photoshop/1.0/}State" : "New York", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorRegion" : "Maidenhead", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : "id48485", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "01865 513465", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourcefileType" : "PNG", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : "4845484", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}CVterm" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "id54154", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "Comedy", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Alfresco", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : "The quick brown fox jumps over the lazy dog", + "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "409", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "Kidlington", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : "fodijfsij5454", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.1", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "Soth West", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "id548454", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : "id4845151", + "{http://purl.org/dc/elements/1.1/}subject" : "-fox -dog -lazy -jumping", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigImageGUID" : "49848484", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorExtendedAddress" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : "The quick brown fox jumps over the lazy dog", + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2021-05-27", + "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "92", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "id8454841", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "South West", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "01865 465986", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "Fox sources", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "id659568", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "01865 465986", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "Oxon", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "OX132EN", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorPostalCode" : "OX136XN", + "{http://ns.adobe.com/photoshop/1.0/}Urgency " : "5 (normal urgency)", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "id87515454", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "DiegoS@alfrescodev.onmicrosoft.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : "546851381", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : "2021-05-27", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : "Ayman", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCity" : "Maidenhead", + "{http://purl.org/dc/elements/1.1/}creator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "New York", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : "id48485", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorCountry" : "England", + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "Left Center", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "Visa", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "Comedy", + "{http://purl.org/dc/elements/1.1/}rights" : "Fox rights", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "300", + "{http://purl.org/dc/elements/1.1/}title" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "+44", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "400", + "{http://www.alfresco.org/model/content/1.0}author" : null, + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "The quick brown fox jumps over the lazy dog", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Oxford", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : "id841584", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "England", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : "Ayman", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "01865 513465", + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "The quick brown fox jumps over the lazy dog", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : "Alfresco", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "www.alfresco.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg new file mode 100644 index 00000000..24598a0d Binary files /dev/null and b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg differ diff --git a/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg_metadata.json b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg_metadata.json new file mode 100644 index 00000000..d4ae6b5b --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika-boot/src/test/resources/testJPEG_IPTC_EXT.jpg_metadata.json @@ -0,0 +1,101 @@ +{ + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerName" : [ "Ray Gauss II", "GG" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}DigitalSourceType" : "http://cv.iptc.org/newscodes/digitalsourcetype/digitalCapture", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryCode" : "US", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}ModelAge" : [ "1000", "1001" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedProvinceState" : "D.C.", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseStatus" : "Not Applicable", + "{http://ns.adobe.com/photoshop/1.0/}State" : "DC", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiTelWork" : "555-1234.555-4321", + "{http://www.alfresco.org/model/exif/1.0}xResolution" : "72.0", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierName" : "Ray Gauss II", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}SubjectCode" : [ "iptc subject code 1", "iptc subject code 2" ], + "{http://www.alfresco.org/model/exif/1.0}focalLength" : "50.0", + "{http://ns.adobe.com/photoshop/1.0/}City" : "Washington", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorEmail" : "r@example.com", + "{http://www.alfresco.org/model/exif/1.0}orientation" : "1", + "{http://ns.useplus.org/ldf/xmp/1.0/}ModelReleaseID" : [ "model release id 1", "model release id 2" ], + "{http://www.alfresco.org/model/exif/1.0}yResolution" : "72.0", + "{http://ns.adobe.com/photoshop/1.0/}CaptionWriter" : "Ray Gauss II", + "{http://www.alfresco.org/model/exif/1.0}exposureTime" : "0.0125", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOTitle" : [ "Rock Creek Stream Bank", "Pollution", "Some Tree" ], + "{http://ns.adobe.com/photoshop/1.0/}DateCreated" : "2011-08-31", + "{http://ns.adobe.com/photoshop/1.0/}Source" : "source", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierID" : "RGAUSS", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrRegion" : "GA", + "{http://www.alfresco.org/model/content/1.0}created" : "2011-08-13T14:40:51", + "{http://www.alfresco.org/model/exif/1.0}isoSpeedRatings" : "640", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryName" : "United States", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageCode" : [ "ASPP", "OTHER_ORG" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AODateCreated" : [ "1890-01-01", "1901-02-01" ], + "{http://purl.org/dc/elements/1.1/}creator" : "Ray Gauss II", + "{http://www.alfresco.org/model/exif/1.0}fNumber" : "10.0", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownProvinceState" : "D.C.", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}Event" : "Photo Bike Tour", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegItemId" : [ "100-ABC-ABC-555", "11223344", "55667788" ], + "{http://ns.adobe.com/photoshop/1.0/}AuthorsPosition" : "DAM Architect", + "{http://ns.adobe.com/photoshop/1.0/}Credit" : "provider", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailWidth" : "5184", + "{http://purl.org/dc/elements/1.1/}title" : "Downstream", + "{http://www.alfresco.org/model/exif/1.0}software" : "Adobe Photoshop CS6 (Macintosh)", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseID" : [ "prop release id 1", "prop release id 2" ], + "{http://www.alfresco.org/model/exif/1.0}manufacturer" : "Canon", + "{http://ns.adobe.com/photoshop/1.0/}Country" : "United States", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCreator" : [ "Mother Nature", "Man", "Mother Nature" ], + "{http://ns.adobe.com/photoshop/1.0/}Instructions" : "instructions", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorName" : [ "Ray Gauss II", "GG" ], + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorURL" : "http://rgauss.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedSublocation" : "Rock Creek Park", + "{http://www.alfresco.org/model/exif/1.0}dateTimeOriginal" : "2011-08-13T14:40:51", + "{http://www.alfresco.org/model/content/1.0}description" : "A stream bank in Rock Creek Park Washington DC during a photo bike tour with ASPP DC/South chapter.", + "{http://www.alfresco.org/model/exif/1.0}flash" : "false", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCity" : "Atlanta", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrCtry" : "US", + "{http://www.alfresco.org/model/content/1.0}title" : "Downstream", + "{http://ns.adobe.com/photoshop/1.0/}TransmissionReference" : "job identifier", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownSublocation" : [ "Rock Creek Park Sub", "Stream Section" ], + "{http://purl.org/dc/elements/1.1/}description" : "A stream bank in Rock Creek Park Washington DC during a photo bike tour with ASPP DC/South chapter.", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSource" : "National Park Service", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}RegOrgId" : [ "PLUS", "ORG 2" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOCopyrightNotice" : "Ray Gauss II", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AOSourceInvNo" : [ "123456", "654321" ], + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorName" : [ "Ray Gauss II", "GG" ], + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCountryName" : "United States", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCity" : "Washington", + "{http://ns.useplus.org/ldf/xmp/1.0/}CopyrightOwnerID" : "RGAUSS", + "{http://ns.adobe.com/photoshop/1.0/}Category" : "PrimaryCategory", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}OrganisationInImageName" : [ "ASPP", "Other Org" ], + "{http://www.alfresco.org/model/exif/1.0}model" : "Canon EOS 60D", + "{http://ns.adobe.com/photoshop/1.0/}SupplementalCategories" : [ "category1", "category2" ], + "{http://www.alfresco.org/model/exif/1.0}pixelXDimension" : "103", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Scene" : [ "iptc scene 1", "iptc scene 2" ], + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrExtadr" : "1234 Some Road", + "{http://ns.adobe.com/photoshop/1.0/}Headline" : "Rock Creek Park", + "{http://ns.useplus.org/ldf/xmp/1.0/}MinorModelAgeDisclosure" : "Age Unknown", + "{http://ns.useplus.org/ldf/xmp/1.0/}Version" : "1.2.0", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}AddlModelInfo" : "rocky 1 and rocky 2 are big", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownWorldRegion" : "North America", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageCreatorID" : "RGAUSS", + "{http://purl.org/dc/elements/1.1/}subject" : [ "bank", "park", "rock creek", "stream", "washington" ], + "{http://www.alfresco.org/model/exif/1.0}pixelYDimension" : "69", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedCity" : "Washington", + "{http://ns.useplus.org/ldf/xmp/1.0/}ImageSupplierImageID" : "supplier image ID", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationCreatedWorldRegion" : "North America", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone1" : "555-5555", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorTelephone2" : "555-4444", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiAdrPcode" : "30339", + "{http://ns.useplus.org/ldf/xmp/1.0/}PropertyReleaseStatus" : "Not Applicable", + "{http://ns.useplus.org/ldf/xmp/1.0/}LicensorID" : "RGAUSS", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiEmailWork" : "info@alfresco.com.other@example.com", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}PersonInImage" : [ "rocky 1", "rocky 2" ], + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CountryCode" : "US", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}IntellectualGenre" : "intellectual genre", + "{http://purl.org/dc/elements/1.1/}rights" : "© Ray Gauss II", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}LocationShownCountryCode" : "US", + "{http://iptc.org/std/Iptc4xmpExt/2008-02-29/}MaxAvailHeight" : "3456", + "{http://www.alfresco.org/model/content/1.0}author" : "Ray Gauss II", + "{http://ns.adobe.com/xap/1.0/rights/}UsageTerms" : "rights usage terms", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}Location" : "Rock Creek Park", + "{http://www.alfresco.org/model/exif/1.0}resolutionUnit" : "Inch", + "{http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/}CiUrlWork" : "http://alfresco.com.http://example.com" +} \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika/LICENSES.md b/alfresco-transform-tika/alfresco-transform-tika/LICENSES.md index ad2c6210..6d0f57b0 100644 --- a/alfresco-transform-tika/alfresco-transform-tika/LICENSES.md +++ b/alfresco-transform-tika/alfresco-transform-tika/LICENSES.md @@ -1,5 +1,4 @@ ### Licenses -* Tika is from Apache. See the license at http://www.apache.org/licenses/LICENSE-2.0 or the -[Apache 2.0.txt](https://github.com/Alfresco/acs-community-packaging/blob/master/distribution/src/main/resources/licenses/3rd-party/Apache%202.0.txt) -file placed in the root directory of the docker image. +* Tika is from Apache. See the licence at http://www.apache.org/licenses/LICENSE-2.0 or the [Apache 2.0.txt](../alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Apache%202.0.txt) file placed in the root directory of the docker image. +* Exiftool is from Phil Harvey. See licence at https://exiftool.org/#license and Perl at https://dev.perl.org/licenses/ (https://dev.perl.org/licenses/artistic.html) or [Perl Artistic License.txt](../alfresco-transform-tika-boot/src/main/resources/licenses/3rd-party/Perl-Artistic-License.txt) file placed in the root directory of the docker image. diff --git a/alfresco-transform-tika/alfresco-transform-tika/pom.xml b/alfresco-transform-tika/alfresco-transform-tika/pom.xml index e03c13bd..1b59b1ef 100644 --- a/alfresco-transform-tika/alfresco-transform-tika/pom.xml +++ b/alfresco-transform-tika/alfresco-transform-tika/pom.xml @@ -8,7 +8,7 @@ alfresco-transform-core org.alfresco - 2.3.11-SNAPSHOT + 2.5.4 ../../pom.xml @@ -58,12 +58,12 @@ org.bouncycastle bcprov-jdk15on - 1.68 + 1.69 org.bouncycastle bcmail-jdk15on - 1.68 + 1.69 @@ -104,6 +104,17 @@ org.apache.pdfbox pdfbox-tools + + + org.junit.jupiter + junit-jupiter + test + + + org.mockito + mockito-junit-jupiter + test + diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/executors/TikaJavaExecutor.java b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/executors/TikaJavaExecutor.java index ad517c4c..7820662a 100644 --- a/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/executors/TikaJavaExecutor.java +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/executors/TikaJavaExecutor.java @@ -38,8 +38,10 @@ import org.alfresco.transformer.metadataExtractors.PdfBoxMetadataExtractor; import org.alfresco.transformer.metadataExtractors.PoiMetadataExtractor; import org.alfresco.transformer.metadataExtractors.TikaAudioMetadataExtractor; import org.alfresco.transformer.metadataExtractors.TikaAutoMetadataExtractor; +import org.alfresco.transformer.metadataExtractors.IPTCMetadataExtractor; import org.alfresco.transformer.util.RequestParamMap; import org.apache.tika.exception.TikaException; +import org.slf4j.LoggerFactory; import org.xml.sax.SAXException; import java.io.File; @@ -50,10 +52,8 @@ import java.util.StringJoiner; import static java.lang.Boolean.parseBoolean; import static org.alfresco.transformer.executors.Tika.INCLUDE_CONTENTS; -import static org.alfresco.transformer.executors.Tika.NOT_EXTRACT_BOOKMARKS_TEXT; import static org.alfresco.transformer.executors.Tika.TARGET_ENCODING; import static org.alfresco.transformer.executors.Tika.TARGET_MIMETYPE; -import static org.alfresco.transformer.util.RequestParamMap.NOT_EXTRACT_BOOKMARK_TEXT; /** * JavaExecutor implementation for running TIKA transformations. It loads the @@ -61,9 +61,13 @@ import static org.alfresco.transformer.util.RequestParamMap.NOT_EXTRACT_BOOKMARK */ public class TikaJavaExecutor implements JavaExecutor { + private boolean notExtractBookmarksTextDefault; + private static final String ID = "tika"; - public static final String LICENCE = "This transformer uses Tika from Apache. See the license at http://www.apache.org/licenses/LICENSE-2.0. or in /Apache\\ 2.0.txt"; + public static final String LICENCE = + "This transformer uses Tika from Apache. See the license at http://www.apache.org/licenses/LICENSE-2.0. or in /Apache\\ 2.0.txt\n" + + "This transformer uses ExifTool by Phil Harvey. See license at https://exiftool.org/#license. or in /Perl-Artistic-License.txt"; private final Tika tika; private final Map metadataExtractor = ImmutableMap @@ -77,14 +81,16 @@ public class TikaJavaExecutor implements JavaExecutor .put("PoiMetadataExtractor", new PoiMetadataExtractor()) .put("TikaAudioMetadataExtractor", new TikaAudioMetadataExtractor()) .put("TikaAutoMetadataExtractor", new TikaAutoMetadataExtractor()) + .put("IPTCMetadataExtractor", new IPTCMetadataExtractor()) .build(); private final Map metadataEmbedder = ImmutableMap .builder() .put("SamplePoiMetadataEmbedder", new PoiMetadataExtractor()) .build(); - public TikaJavaExecutor() + public TikaJavaExecutor(boolean notExtractBookmarksTextDefault) { + this.notExtractBookmarksTextDefault = notExtractBookmarksTextDefault; try { tika = new Tika(); @@ -95,6 +101,11 @@ public class TikaJavaExecutor implements JavaExecutor } } + public TikaJavaExecutor() + { + this(false); + } + @Override public String getTransformerId() { @@ -109,12 +120,17 @@ public class TikaJavaExecutor implements JavaExecutor final boolean includeContents = parseBoolean( transformOptions.getOrDefault(RequestParamMap.INCLUDE_CONTENTS, "false")); final boolean notExtractBookmarksText = parseBoolean( - transformOptions.getOrDefault(NOT_EXTRACT_BOOKMARK_TEXT, "false")); + transformOptions.getOrDefault(RequestParamMap.NOT_EXTRACT_BOOKMARKS_TEXT, String.valueOf(notExtractBookmarksTextDefault))); final String targetEncoding = transformOptions.getOrDefault("targetEncoding", "UTF-8"); - + if(transformOptions.get(RequestParamMap.NOT_EXTRACT_BOOKMARKS_TEXT)==null && notExtractBookmarksTextDefault) + { + LoggerFactory.getLogger(TikaJavaExecutor.class).trace( + "notExtractBookmarksText default value has been overridden to {}", + notExtractBookmarksTextDefault); + } call(sourceFile, targetFile, transformName, includeContents ? INCLUDE_CONTENTS : null, - notExtractBookmarksText ? NOT_EXTRACT_BOOKMARKS_TEXT : null, + notExtractBookmarksText ? Tika.NOT_EXTRACT_BOOKMARKS_TEXT : null, TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + targetEncoding); } diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractor.java b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractor.java new file mode 100644 index 00000000..91597a23 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractor.java @@ -0,0 +1,158 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2021 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.transformer.metadataExtractors; + +import java.io.Serializable; +import java.util.Arrays; +import java.util.Map; +import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import org.alfresco.transformer.tika.parsers.ExifToolParser; +import org.apache.commons.lang3.StringUtils; +import org.apache.tika.metadata.Metadata; +import org.apache.tika.parser.Parser; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class IPTCMetadataExtractor extends AbstractTikaMetadataExtractor +{ + + private static final Logger logger = LoggerFactory.getLogger(IPTCMetadataExtractor.class); + + private static Set IPTC_DATE_KEYS = Set.of("XMP-photoshop:DateCreated", "XMP-iptcExt:ArtworkDateCreated"); + + private static final Pattern YEAR_IPTC = Pattern.compile("(\\d{4}[:|-]\\d{2}[:|-]\\d{2})"); + + private ExifToolParser parser; + + public IPTCMetadataExtractor() + { + super(logger); + } + + @Override + protected Parser getParser() + { + if (this.parser == null) { + this.parser = new ExifToolParser(); + } + return this.parser; + } + + /** + * Because some of the mimetypes that IPTCMetadataExtractor now parse, were previously handled + * by TikaAutoMetadataExtractor we call the TikaAutoMetadataExtractor.extractSpecific method to + * ensure that the returned properties contains the expected entries. + */ + @Override + protected Map extractSpecific(Metadata metadata, Map properties, + Map headers) + { + properties = new TikaAutoMetadataExtractor().extractSpecific(metadata, properties, headers); + ExifToolParser etParser = (ExifToolParser)this.getParser(); + if (etParser.getSeparator()!=null) + { + for (String key : properties.keySet()) + { + if (properties.get(key) instanceof String) + { + String value = (String) properties.get(key); + String separator = etParser.getSeparator(); + if (value.contains(separator)) + { + if (value.contains(String.format("\"%s\"",separator))) + { + separator = String.format("\"%s\"",separator); + } + String [] values = StringUtils.splitByWholeSeparator(value, separator); + // Change dateTime format. MM converted ':' to '-' + if (IPTC_DATE_KEYS.contains(key)){ + values = iptcToIso8601DateStrings(values); + } + putRawValue(key, (Serializable) Arrays.asList(values), properties); + } + else if (IPTC_DATE_KEYS.contains(key)) { + // Handle property with a single date string + putRawValue(key, (Serializable) iptcToIso8601DateString(value), properties); + } + } + } + } + return properties; + } + + /** + * Converts a date or date time strings into Iso8601 format

+ * + * @param dateStrings + * @return dateStrings in Iso8601 format + * @see #iptcToIso8601DateString + */ + protected String[] iptcToIso8601DateStrings(String[] dateStrings) + { + for (int i = 0; i < dateStrings.length; i++) + { + dateStrings[i] = iptcToIso8601DateString(dateStrings[i]); + } + return dateStrings; + } + + /** + * Converts a date or date time string into Iso8601 format

+ * Converts any ':' in the year portion of a date string characters to '-'.

+ * Expects the year in the format YYYY:MM:DD or YYYY-MM-DD

+ * Will add the correct delimiter, 'T', to any dateTime strings, where | can be any char other than ,'T': + * YYYY:MM:DD|HH:mm:ss.... or YYYY-MM-DD|HH:mm:ss.... + *

+ * Examples:

    + *
  • "1919:10:16" will convert to "1919-10-16"
  • + *
  • "1901:02:01 00:00:00.000Z" will convert to "1901-02-01T00:00:00.000Z"
  • + *
  • "2001:02:01 16:15+00:00" will convert to "2001-02-01T16:15+00:00"
  • + *
  • "2021-06-11 05:36-01:00" will convert to "2021-06-11T05:36-01:00"
  • + *
+ * @param dateStr + * @return dateStr in Iso8601 format + */ + protected String iptcToIso8601DateString(String dateStr) + { + char timeSeparator = 'T'; + Matcher yearMatcher = YEAR_IPTC.matcher(dateStr); + if (yearMatcher.find()) + { + String year = yearMatcher.group(1); + dateStr = yearMatcher.replaceFirst(year.replaceAll(":", "-")); + if (dateStr.length()>year.length() && dateStr.charAt(year.length())!=timeSeparator) + { + dateStr = dateStr.replace(dateStr.charAt(year.length()), timeSeparator); + } + } + return dateStr; + } + +} diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/tika/parsers/ExifToolParser.java b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/tika/parsers/ExifToolParser.java new file mode 100644 index 00000000..e43677a4 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/java/org/alfresco/transformer/tika/parsers/ExifToolParser.java @@ -0,0 +1,372 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2021 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.transformer.tika.parsers; + +import static java.nio.charset.StandardCharsets.UTF_8; +import static org.alfresco.transform.client.model.Mimetype.MIMETYPE_IMAGE_JPEG; +import static org.alfresco.transform.client.model.Mimetype.MIMETYPE_IMAGE_TIFF; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.io.Reader; +import java.net.URL; +import java.util.List; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import org.apache.tika.exception.TikaException; +import org.apache.tika.io.IOUtils; +import org.apache.tika.io.NullOutputStream; +import org.apache.tika.io.TemporaryResources; +import org.apache.tika.io.TikaInputStream; +import org.apache.tika.metadata.Metadata; +import org.apache.tika.mime.MediaType; +import org.apache.tika.parser.ParseContext; +import org.apache.tika.parser.Parser; +import org.apache.tika.parser.external.ExternalParser; +import org.apache.tika.parser.external.ExternalParsersFactory; +import org.apache.tika.parser.image.ImageParser; +import org.apache.tika.parser.image.TiffParser; +import org.apache.tika.parser.jpeg.JpegParser; +import org.apache.tika.sax.XHTMLContentHandler; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.xml.sax.ContentHandler; +import org.xml.sax.SAXException; + +public class ExifToolParser extends ExternalParser { + + private static final Logger logger = LoggerFactory.getLogger(ExifToolParser.class); + + private static final String EXIFTOOL_PARSER_CONFIG = "parsers/external/config/exiftool-parser.xml"; + + protected static final String DEFAULT_SEPARATOR = ", "; + protected static final String SEPARATOR_SETTING = "-sep"; + + private String separator; + + public ExifToolParser() { + super(); + try { + List eParsers = ExternalParsersFactory.create(getExternalParserConfigURL()); + // if ExifTool is not installed then no parsers are returned + if (eParsers.size() > 0) { + ExternalParser eParser = eParsers.get(0); + this.setCommand(eParser.getCommand()); + this.setIgnoredLineConsumer(eParser.getIgnoredLineConsumer()); + this.setMetadataExtractionPatterns(eParser.getMetadataExtractionPatterns()); + this.setSupportedTypes(eParser.getSupportedTypes()); + } else { + logger.error( + "Error creating ExifToolParser from config, ExifToolExtractions not enabled. Please check ExifTool is installed correctly."); + } + } catch (IOException | TikaException e) { + logger.error("Error creating ExifToolParser from config, ExifToolExtractions not enabled: ", e); + } + } + + private URL getExternalParserConfigURL(){ + ClassLoader classLoader = ExifToolParser.class.getClassLoader(); + return classLoader.getResource(EXIFTOOL_PARSER_CONFIG); + } + + public void setSeparator(String sep) { + this.separator = sep; + } + + public String getSeparator() { + return this.separator; + } + + @Override + public void setCommand(String... command){ + super.setCommand(command); + if (command.length==1) { + setSeparator(findSeparator(command[0])); + } + else { + setSeparator(DEFAULT_SEPARATOR); + } + } + + protected String findSeparator(String command) { + if (command.contains(SEPARATOR_SETTING)) { + int start = command.indexOf(SEPARATOR_SETTING)+SEPARATOR_SETTING.length()+1; + String separator = DEFAULT_SEPARATOR; + if (command.charAt(start)=='\"') { + //get all chars up to the next \" + int end = command.indexOf("\"", start+1); + separator = command.substring(start+1, end); + } + else { + int end = command.indexOf(" ", start); + separator = command.substring(start, end); + } + return separator; + } + return DEFAULT_SEPARATOR; + } + + /** + * Adapted from {@link org.apache.tika.parser.external.ExternalParser} + * due to errors attempting to {@link #extractMetadata} from the errorStream in original implementation.

+ * Executes the configured external command and passes the given document + * stream as a simple XHTML document to the given SAX content handler. + * Metadata is only extracted if {@link #setMetadataExtractionPatterns(Map)} + * has been called to set patterns. + */ + public void parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) + throws IOException, SAXException, TikaException { + XHTMLContentHandler xhtml = new XHTMLContentHandler(handler, metadata); + + MediaType mediaType = MediaType.parse(metadata.get(Metadata.CONTENT_TYPE)); + TemporaryResources tmp = new TemporaryResources(); + try { + TikaInputStream tis = TikaInputStream.get(stream, tmp); + if (this.getSupportedTypes().contains(mediaType)) { + parse(tis, xhtml, metadata, tmp); + } + switch (mediaType.getType()+"/"+mediaType.getSubtype()) { + case MIMETYPE_IMAGE_JPEG: + parseAdditional(new JpegParser(), tis, handler, metadata, context, mediaType); + break; + case MIMETYPE_IMAGE_TIFF: + parseAdditional(new TiffParser(), tis, handler, metadata, context, mediaType); + break; + default: + parseAdditional(new ImageParser(), tis, handler, metadata, context, mediaType); + } + } finally { + tmp.dispose(); + } + } + + private void parseAdditional(Parser parser, TikaInputStream tis, ContentHandler handler, Metadata metadata, ParseContext context, + MediaType mediaType) throws IOException, SAXException, TikaException { + if (parser.getSupportedTypes(context).contains(mediaType)) { + parser.parse(tis, handler, metadata, context); + } + } + + private void parse(TikaInputStream stream, XHTMLContentHandler xhtml, Metadata metadata, TemporaryResources tmp) + throws IOException, SAXException, TikaException { + boolean inputToStdIn = true; + boolean outputFromStdOut = true; + boolean hasPatterns = (getMetadataExtractionPatterns() != null && !getMetadataExtractionPatterns().isEmpty()); + + File output = null; + + // Build our getCommand() + String[] cmd; + if (getCommand().length == 1) { + cmd = getCommand()[0].split(" "); + } else { + cmd = new String[getCommand().length]; + System.arraycopy(getCommand(), 0, cmd, 0, getCommand().length); + } + for (int i = 0; i < cmd.length; i++) { + if (cmd[i].indexOf(INPUT_FILE_TOKEN) != -1) { + cmd[i] = cmd[i].replace(INPUT_FILE_TOKEN, stream.getFile().getPath()); + inputToStdIn = false; + } + if (cmd[i].indexOf(OUTPUT_FILE_TOKEN) != -1) { + output = tmp.createTemporaryFile(); + outputFromStdOut = false; + cmd[i] = cmd[i].replace(OUTPUT_FILE_TOKEN, output.getPath()); + } + } + + // Execute + Process process = null; + try { + if (cmd.length == 1) { + process = Runtime.getRuntime().exec(cmd[0]); + } else { + process = Runtime.getRuntime().exec(cmd); + } + } catch (Exception e) { + e.printStackTrace(); + } + + try { + if (inputToStdIn) { + sendInput(process, stream); + } else { + process.getOutputStream().close(); + } + + InputStream out = process.getInputStream(); + InputStream err = process.getErrorStream(); + + if (hasPatterns) { + + if (outputFromStdOut) { + extractOutput(out, xhtml); + } else { + extractMetadata(out, metadata); + } + } else { + ignoreStream(err); + + if (outputFromStdOut) { + extractOutput(out, xhtml); + } else { + ignoreStream(out); + } + } + } finally { + try { + process.waitFor(); + } catch (InterruptedException ignore) { + } + } + + // Grab the output if we haven't already + if (!outputFromStdOut) { + extractOutput(new FileInputStream(output), xhtml); + } + } + + /** + * Adapted from {@link org.apache.tika.parser.external.ExternalParser}

+ * Starts a thread that extracts the contents of the standard output + * stream of the given process to the given XHTML content handler. + * The standard output stream is closed once fully processed. + * + * @param process process + * @param xhtml XHTML content handler + * @throws SAXException if the XHTML SAX events could not be handled + * @throws IOException if an input error occurred + */ + private void extractOutput(InputStream stream, XHTMLContentHandler xhtml) throws SAXException, IOException { + try (Reader reader = new InputStreamReader(stream, UTF_8)) { + xhtml.startDocument(); + xhtml.startElement("p"); + char[] buffer = new char[1024]; + for (int n = reader.read(buffer); n != -1; n = reader.read(buffer)) { + xhtml.characters(buffer, 0, n); + } + xhtml.endElement("p"); + xhtml.endDocument(); + } + } + + /** + * Adapted from {@link org.apache.tika.parser.external.ExternalParser}

+ * Starts a thread that sends the contents of the given input stream + * to the standard input stream of the given process. Potential + * exceptions are ignored, and the standard input stream is closed + * once fully processed. Note that the given input stream is not + * closed by this method. + * + * @param process process + * @param stream input stream + */ + private void sendInput(final Process process, final InputStream stream) { + Thread t = new Thread() { + public void run() { + OutputStream stdin = process.getOutputStream(); + try { + IOUtils.copy(stream, stdin); + } catch (IOException e) { + } + } + }; + t.start(); + try { + t.join(); + } catch (InterruptedException ignore) { + } + } + + /** + * Adapted from {@link org.apache.tika.parser.external.ExternalParser}

+ * Starts a thread that reads and discards the contents of the + * standard stream of the given process. Potential exceptions + * are ignored, and the stream is closed once fully processed. + * + * @param process process + */ + private void ignoreStream(final InputStream stream) { + Thread t = new Thread() { + public void run() { + try { + IOUtils.copy(stream, new NullOutputStream()); + } catch (IOException e) { + } finally { + IOUtils.closeQuietly(stream); + } + } + }; + t.start(); + try { + t.join(); + } catch (InterruptedException ignore) { + } + } + + private void extractMetadata(final InputStream stream, final Metadata metadata) { + Thread t = new Thread() { + public void run() { + BufferedReader reader; + reader = new BufferedReader(new InputStreamReader(stream, UTF_8)); + try { + String line; + while ((line = reader.readLine()) != null) { + for (Pattern p : getMetadataExtractionPatterns().keySet()) { + Matcher m = p.matcher(line); + if (m.find()) { + if (getMetadataExtractionPatterns().get(p) != null + && !getMetadataExtractionPatterns().get(p).equals("")) { + metadata.add(getMetadataExtractionPatterns().get(p), m.group(1)); + } else { + metadata.add(m.group(1), m.group(2)); + } + } + } + } + } catch (IOException e) { + // Ignore + } finally { + IOUtils.closeQuietly(reader); + IOUtils.closeQuietly(stream); + } + } + }; + t.start(); + try { + t.join(); + } catch (InterruptedException ignore) { + } + } +} diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/IPTCMetadataExtractor_metadata_extract.properties b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/IPTCMetadataExtractor_metadata_extract.properties new file mode 100644 index 00000000..8959ff0c --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/IPTCMetadataExtractor_metadata_extract.properties @@ -0,0 +1,141 @@ +# +# IPTCMetadataExtracter - default mapping +# +# author: David Edwards + +# Namespaces +namespace.prefix.cm=http://www.alfresco.org/model/content/1.0 + +# IPTC +namespace.prefix.iptcxmp=http://www.alfresco.org/model/content/metadata/IPTCXMP/1.0 +namespace.prefix.dc=http://purl.org/dc/elements/1.1/ +namespace.prefix.Iptc4xmpCore=http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/ +namespace.prefix.Iptc4xmpExt=http://iptc.org/std/Iptc4xmpExt/2008-02-29/ +namespace.prefix.photoshop=http://ns.adobe.com/photoshop/1.0/ +namespace.prefix.plus=http://ns.useplus.org/ldf/xmp/1.0/ +namespace.prefix.xmpRights=http://ns.adobe.com/xap/1.0/rights/ +namespace.prefix.stDim=http://ns.adobe.com/xap/1.0/sType/Dimensions + +# Exif +namespace.prefix.exif=http://www.alfresco.org/model/exif/1.0 + +# Mappings from TikaAutoExtractor +author=cm:author +title=cm:title +description=cm:description +created=cm:created + +geo\:lat=cm:latitude +geo\:long=cm:longitude + +tiff\:ImageWidth=exif:pixelXDimension +tiff\:ImageLength=exif:pixelYDimension +tiff\:Make=exif:manufacturer +tiff\:Model=exif:model +tiff\:Software=exif:software +tiff\:Orientation=exif:orientation +tiff\:XResolution=exif:xResolution +tiff\:YResolution=exif:yResolution +tiff\:ResolutionUnit=exif:resolutionUnit +exif\:Flash=exif:flash +exif\:ExposureTime=exif:exposureTime +exif\:FNumber=exif:fNumber +exif\:FocalLength=exif:focalLength +exif\:IsoSpeedRatings=exif:isoSpeedRatings +exif\:DateTimeOriginal=exif:dateTimeOriginal + +# IPTC Mappings +XMP-dc\:Description=dc:description +XMP-dc\:Subject=dc:subject +XMP-dc\:Creator=dc:creator +XMP-dc\:Rights=dc:rights +XMP-dc\:Title=dc:title +XMP-iptcCore\:CreatorCountry=Iptc4xmpCore:CiAdrCtry +XMP-iptcCore\:CountryCode=Iptc4xmpCore:CountryCode +XMP-iptcCore\:CreatorAddress=Iptc4xmpCore:CiAdrExtadr +XMP-iptcCore\:CreatorCity=Iptc4xmpCore:CiAdrCity +XMP-iptcCore\:CreatorPostalCode=Iptc4xmpCore:CiAdrPcode +XMP-iptcCore\:CreatorRegion=Iptc4xmpCore:CiAdrRegion +XMP-iptcCore\:CreatorWorkEmail=Iptc4xmpCore:CiEmailWork +XMP-iptcCore\:CreatorWorkTelephone=Iptc4xmpCore:CiTelWork +XMP-iptcCore\:CreatorWorkURL=Iptc4xmpCore:CiUrlWork +XMP-iptcCore\:IntellectualGenre=Iptc4xmpCore:IntellectualGenre +XMP-iptcCore\:Location=Iptc4xmpCore:Location +XMP-iptcCore\:Scene=Iptc4xmpCore:Scene +XMP-iptcCore\:SubjectCode=Iptc4xmpCore:SubjectCode +XMP-photoshop\:AuthorsPosition=photoshop:AuthorsPosition +XMP-photoshop\:CaptionWriter=photoshop:CaptionWriter +XMP-photoshop\:Category=photoshop:Category +XMP-photoshop\:City=photoshop:City +XMP-photoshop\:Country=photoshop:Country +XMP-photoshop\:Credit=photoshop:Credit +XMP-photoshop\:DateCreated=photoshop:DateCreated +XMP-photoshop\:Headline=photoshop:Headline +XMP-photoshop\:Instructions=photoshop:Instructions +XMP-photoshop\:Source=photoshop:Source +XMP-photoshop\:State=photoshop:State +XMP-photoshop\:SupplementalCategories=photoshop:SupplementalCategories +XMP-photoshop\:TransmissionReference=photoshop:TransmissionReference +XMP-photoshop\:Urgency=photoshop:Urgency  +XMP-xmpRights\:UsageTerms=xmpRights:UsageTerms + +XMP-iptcExt\:AdditionalModelInformation=Iptc4xmpExt:AddlModelInfo +XMP-iptcExt\:ArtworkCopyrightNotice=Iptc4xmpExt:AOCopyrightNotice +XMP-iptcExt\:ArtworkCreator=Iptc4xmpExt:AOCreator +XMP-iptcExt\:ArtworkDateCreated=Iptc4xmpExt:AODateCreated +XMP-iptcExt\:ArtworkSource=Iptc4xmpExt:AOSource +XMP-iptcExt\:ArtworkSourceInventoryNo=Iptc4xmpExt:AOSourceInvNo +XMP-iptcExt\:ArtworkTitle=Iptc4xmpExt:AOTitle +XMP-iptcExt\:ControlledVocabularyTerm=Iptc4xmpExt:CVterm +XMP-iptcExt\:DigitalImageGUID=Iptc4xmpExt:DigImageGUID +XMP-iptcExt\:DigitalSourceFileType=Iptc4xmpExt:DigitalSourcefileType +XMP-iptcExt\:DigitalSourceType=Iptc4xmpExt:DigitalSourceType +XMP-iptcExt\:Event=Iptc4xmpExt:Event +XMP-iptcExt\:IPTCLastEdited=Iptc4xmpExt:IptcLastEdited +XMP-iptcExt\:LocationCreatedCity=Iptc4xmpExt:LocationCreatedCity +XMP-iptcExt\:LocationCreatedCountryCode=Iptc4xmpExt:LocationCreatedCountryCode +XMP-iptcExt\:LocationCreatedCountryName=Iptc4xmpExt:LocationCreatedCountryName +XMP-iptcExt\:LocationCreatedProvinceState=Iptc4xmpExt:LocationCreatedProvinceState +XMP-iptcExt\:LocationCreatedSublocation=Iptc4xmpExt:LocationCreatedSublocation +XMP-iptcExt\:LocationCreatedWorldRegion=Iptc4xmpExt:LocationCreatedWorldRegion +XMP-iptcExt\:LocationShownCity=Iptc4xmpExt:LocationShownCity +XMP-iptcExt\:LocationShownCountryCode=Iptc4xmpExt:LocationShownCountryCode +XMP-iptcExt\:LocationShownCountryName=Iptc4xmpExt:LocationShownCountryName +XMP-iptcExt\:LocationShownProvinceState=Iptc4xmpExt:LocationShownProvinceState +XMP-iptcExt\:LocationShownSublocation=Iptc4xmpExt:LocationShownSublocation +XMP-iptcExt\:LocationShownWorldRegion=Iptc4xmpExt:LocationShownWorldRegion +XMP-iptcExt\:MaxAvailHeight=Iptc4xmpExt:MaxAvailHeight +XMP-iptcExt\:MaxAvailWidth=Iptc4xmpExt:MaxAvailWidth +XMP-iptcExt\:ModelAge=Iptc4xmpExt:ModelAge +XMP-iptcExt\:OrganisationInImageCode=Iptc4xmpExt:OrganisationInImageCode +XMP-iptcExt\:OrganisationInImageName=Iptc4xmpExt:OrganisationInImageName +XMP-iptcExt\:PersonInImage=Iptc4xmpExt:PersonInImage +XMP-iptcExt\:RegistryItemID=Iptc4xmpExt:RegItemId +XMP-iptcExt\:RegistryOrganisationID=Iptc4xmpExt:RegOrgId +XMP-plus\:CopyrightOwnerID=plus:CopyrightOwnerID +XMP-plus\:CopyrightOwnerName=plus:CopyrightOwnerName +XMP-plus\:ImageCreatorID=plus:ImageCreatorID +XMP-plus\:ImageCreatorName=plus:ImageCreatorName +XMP-plus\:ImageSupplierID=plus:ImageSupplierID +XMP-plus\:ImageSupplierImageID=plus:ImageSupplierImageID +XMP-plus\:ImageSupplierName=plus:ImageSupplierName +XMP-plus\:LicensorCity=plus:LicensorCity +XMP-plus\:LicensorCountry=plus:LicensorCountry +XMP-plus\:LicensorEmail=plus:LicensorEmail +XMP-plus\:LicensorExtendedAddress=plus:LicensorExtendedAddress +XMP-plus\:LicensorID=plus:LicensorID +XMP-plus\:LicensorName=plus:LicensorName +XMP-plus\:LicensorPostalCode=plus:LicensorPostalCode +XMP-plus\:LicensorRegion=plus:LicensorRegion +XMP-plus\:LicensorStreetAddress=plus:LicensorStreetAddress +XMP-plus\:LicensorTelephone1=plus:LicensorTelephone1 +XMP-plus\:LicensorTelephone2=plus:LicensorTelephone2 +XMP-plus\:LicensorURL=plus:LicensorURL +XMP-plus\:MinorModelAgeDisclosure=plus:MinorModelAgeDisclosure +XMP-plus\:ModelReleaseID=plus:ModelReleaseID +XMP-plus\:ModelReleaseStatus=plus:ModelReleaseStatus +XMP-plus\:PLUSVersion=plus:Version +XMP-plus\:PropertyReleaseID=plus:PropertyReleaseID +XMP-plus\:PropertyReleaseStatus=plus:PropertyReleaseStatus + +stDim\:unit=stDim:unit \ No newline at end of file diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/parsers/external/config/exiftool-parser.xml b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/parsers/external/config/exiftool-parser.xml new file mode 100644 index 00000000..076dfe54 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/parsers/external/config/exiftool-parser.xml @@ -0,0 +1,35 @@ + + + + + exiftool -ver + 126,127 + + env FOO=${OUTPUT} exiftool -args -G1 -sep "|||" ${INPUT} + + image/x-raw-hasselblad + image/x-raw-sony + image/x-raw-canon + image/x-raw-adobe + image/gif + image/jp2 + image/jpeg + image/x-raw-kodak + image/x-raw-minolta + image/x-raw-nikon + image/x-raw-olympus + image/x-raw-pentax + image/png + image/x-raw-fuji + image/x-raw-panasonic + image/tiff + image/webp + + + + \s*([A-Za-z0-9/ \(\)]+\S{1})\s+:\s+([A-Za-z0-9\(\)\[\] \:\-\.]+)\s* + + ^-([\S]+)\=(.*) + + + diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/tika_engine_config.json b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/tika_engine_config.json index 6206f6bc..62d4e5e1 100644 --- a/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/tika_engine_config.json +++ b/alfresco-transform-tika/alfresco-transform-tika/src/main/resources/tika_engine_config.json @@ -526,6 +526,31 @@ "metadataOptions" ] }, + { + "transformerName": "IPTCMetadataExtractor", + "supportedSourceAndTargetList": [ + {"sourceMediaType": "image/gif", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/jp2", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/jpeg", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/png", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/tiff", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/webp", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-adobe", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-canon", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-fuji", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-hasselblad", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-kodak", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-minolta", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-nikon", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-olympus", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-panasonic", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-pentax", "priority": 45, "targetMediaType": "alfresco-metadata-extract"}, + {"sourceMediaType": "image/x-raw-sony", "priority": 45, "targetMediaType": "alfresco-metadata-extract"} + ], + "transformOptions": [ + "metadataOptions" + ] + }, { "transformerName": "MailMetadataExtractor", "supportedSourceAndTargetList": [ diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/executors/TikaJavaExecutorTest.java b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/executors/TikaJavaExecutorTest.java new file mode 100644 index 00000000..509a2be7 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/executors/TikaJavaExecutorTest.java @@ -0,0 +1,126 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2021 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.transformer.executors; + +import static org.alfresco.transformer.executors.Tika.NOT_EXTRACT_BOOKMARKS_TEXT; +import static org.alfresco.transformer.executors.Tika.TARGET_ENCODING; +import static org.alfresco.transformer.executors.Tika.TARGET_MIMETYPE; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.clearInvocations; +import static org.mockito.Mockito.lenient; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +import java.io.File; +import java.util.HashMap; +import java.util.Map; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.junit.jupiter.MockitoExtension; + +@ExtendWith(MockitoExtension.class) +public class TikaJavaExecutorTest { + + + @Test + public void testNotExtractBookmarkTextDefault() throws Exception + { + TikaJavaExecutor executorSpyDefaultTrue = spy(new TikaJavaExecutor(true)); + TikaJavaExecutor executorSpyDefaultFalse = spy(new TikaJavaExecutor(false)); + + File mockSourceFile = mock(File.class); + File mockTargetFile = mock(File.class); + String transformName = "transformName"; + String sourceMimetype = "sourceMimetype"; + String targetMimetype = "targetMimetype"; + String defaultEncoding = "UTF-8"; + + // no need to continue execution passed here or check values as we're checking the correct params passed to this method later. + lenient().doNothing().when(executorSpyDefaultTrue).call(any(), any(), any(), any(), any(), any(), any()); + lenient().doNothing().when(executorSpyDefaultFalse).call(any(), any(), any(), any(), any(), any(), any()); + + Map transformOptions = new HashMap(); + + // use empty transformOptions to test defaults + executorSpyDefaultTrue.transform(transformName, sourceMimetype, targetMimetype, transformOptions, + mockSourceFile, mockTargetFile); + executorSpyDefaultFalse.transform(transformName, sourceMimetype, targetMimetype, transformOptions, + mockSourceFile, mockTargetFile); + + // when default set to true, with no options passed we should get a call method with NOT_EXTRACT_BOOKMARKS_TEXT + verify(executorSpyDefaultTrue, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, + NOT_EXTRACT_BOOKMARKS_TEXT, TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + // when default set to false, with no options passed we should get a call method without NOT_EXTRACT_BOOKMARKS_TEXT + verify(executorSpyDefaultFalse, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, null, + TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + // use transforms with notExtractBookmarksText set to true + clearInvocations(executorSpyDefaultTrue, executorSpyDefaultFalse); + transformOptions.put("notExtractBookmarksText", "true"); + executorSpyDefaultTrue.transform(transformName, sourceMimetype, targetMimetype, transformOptions, + mockSourceFile, mockTargetFile); + executorSpyDefaultFalse.transform(transformName, sourceMimetype, targetMimetype, transformOptions, + mockSourceFile, mockTargetFile); + + // both call methods should have NOT_EXTRACT_BOOKMARKS_TEXT + verify(executorSpyDefaultTrue, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, + NOT_EXTRACT_BOOKMARKS_TEXT, TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + verify(executorSpyDefaultFalse, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, + NOT_EXTRACT_BOOKMARKS_TEXT, TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + // use transforms with notExtractBookmarksText set to false + clearInvocations(executorSpyDefaultTrue, executorSpyDefaultFalse); + transformOptions.replace("notExtractBookmarksText", "true", "false"); + executorSpyDefaultTrue.transform(transformName, sourceMimetype, targetMimetype, transformOptions, mockSourceFile, mockTargetFile); + executorSpyDefaultFalse.transform(transformName, sourceMimetype, targetMimetype, transformOptions, mockSourceFile, mockTargetFile); + + // both call methods should have NOT_EXTRACT_BOOKMARKS_TEXT + verify(executorSpyDefaultTrue, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, null, + TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + verify(executorSpyDefaultFalse, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, null, + TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + defaultEncoding); + + // use full set of pdfbox transformOptions just to be safe + clearInvocations(executorSpyDefaultTrue, executorSpyDefaultFalse); + transformOptions.put("targetEncoding", "anyEncoding"); + executorSpyDefaultTrue.transform(transformName, sourceMimetype, targetMimetype, transformOptions, mockSourceFile, mockTargetFile); + executorSpyDefaultFalse.transform(transformName, sourceMimetype, targetMimetype, transformOptions, mockSourceFile, mockTargetFile); + + // both call methods should have NOT_EXTRACT_BOOKMARKS_TEXT but the encoding will change + verify(executorSpyDefaultTrue, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, null, + TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + "anyEncoding"); + + verify(executorSpyDefaultFalse, times(1)).call(mockSourceFile, mockTargetFile, transformName, null, null, + TARGET_MIMETYPE + targetMimetype, TARGET_ENCODING + "anyEncoding"); + } +} diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractorTest.java b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractorTest.java new file mode 100644 index 00000000..fc35dbcf --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/metadataExtractors/IPTCMetadataExtractorTest.java @@ -0,0 +1,48 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2021 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.transformer.metadataExtractors; + +import static org.junit.jupiter.api.Assertions.assertArrayEquals; + +import org.junit.jupiter.api.Test; + +public class IPTCMetadataExtractorTest { + + IPTCMetadataExtractor extractor = new IPTCMetadataExtractor(); + + @Test + public void testIptcToIso8601DateStrings() { + String[] testStrings = { "1890:01:01", "1901:02:01 00:00:00.000Z", "1901-02-01 00:00:00.000Z", + "1901-02-01T00:00:00.000Z", "1901:02:01T00:00+00:00", "1901:02:01 00:00+00:00" }; + String[] expected = { "1890-01-01", "1901-02-01T00:00:00.000Z", "1901-02-01T00:00:00.000Z", + "1901-02-01T00:00:00.000Z", "1901-02-01T00:00+00:00", "1901-02-01T00:00+00:00" }; + + assertArrayEquals(expected, extractor.iptcToIso8601DateStrings(testStrings)); + + } + +} diff --git a/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/tika/parsers/ExifToolParserTest.java b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/tika/parsers/ExifToolParserTest.java new file mode 100644 index 00000000..4303f255 --- /dev/null +++ b/alfresco-transform-tika/alfresco-transform-tika/src/test/java/org/alfresco/transformer/tika/parsers/ExifToolParserTest.java @@ -0,0 +1,59 @@ +/* + * #%L + * Alfresco Transform Core + * %% + * Copyright (C) 2005 - 2021 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.transformer.tika.parsers; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +import org.junit.jupiter.api.Test; + +public class ExifToolParserTest { + + ExifToolParser exifToolParser = new ExifToolParser(); + + @Test + public void testFindSeparator() { + + String testCommand = "env FOO=${OUTPUT} exiftool -args -G1 " + ExifToolParser.SEPARATOR_SETTING + + " \"|||\" ${INPUT}"; + String expected = "|||"; + String actual = exifToolParser.findSeparator(testCommand); + assertEquals(expected, actual); + + expected = "TESTWITHOUTQUOTES"; + testCommand = "nothing matters until the " + ExifToolParser.SEPARATOR_SETTING + " " + expected + + " now all this extra should be ignored"; + actual = exifToolParser.findSeparator(testCommand); + assertEquals(expected, actual); + + expected = "Test something bonkers 112!£$%^£$^"; + testCommand = ExifToolParser.SEPARATOR_SETTING + " \""+expected+"\""; + actual = exifToolParser.findSeparator(testCommand); + assertEquals(expected, actual); + + } + +} diff --git a/alfresco-transformer-base/pom.xml b/alfresco-transformer-base/pom.xml index 96d9d017..9fad2075 100644 --- a/alfresco-transformer-base/pom.xml +++ b/alfresco-transformer-base/pom.xml @@ -4,12 +4,12 @@ org.alfresco alfresco-transform-core - 2.3.11-SNAPSHOT + 2.5.4 ../pom.xml alfresco-transformer-base - 2.3.11-SNAPSHOT + 2.5.4 false diff --git a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/AbstractTransformerController.java b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/AbstractTransformerController.java index 70a6e05d..602d616e 100644 --- a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/AbstractTransformerController.java +++ b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/AbstractTransformerController.java @@ -230,7 +230,7 @@ public abstract class AbstractTransformerController implements TransformControll File sourceFile; try { - sourceFile = loadSourceFile(request.getSourceReference()); + sourceFile = loadSourceFile(request.getSourceReference(), request.getSourceExtension()); } catch (TransformException e) { @@ -358,9 +358,10 @@ public abstract class AbstractTransformerController implements TransformControll * Loads the file with the specified sourceReference from Alfresco Shared File Store * * @param sourceReference reference to the file in Alfresco Shared File Store + * @param sourceExtension default extension if the file in Alfresco Shared File Store has none * @return the file containing the source content for the transformation */ - private File loadSourceFile(final String sourceReference) + private File loadSourceFile(final String sourceReference, final String sourceExtension) { ResponseEntity responseEntity = alfrescoSharedFileStoreClient .retrieveFile(sourceReference); @@ -369,7 +370,7 @@ public abstract class AbstractTransformerController implements TransformControll HttpHeaders headers = responseEntity.getHeaders(); String filename = getFilenameFromContentDisposition(headers); - String extension = getFilenameExtension(filename); + String extension = getFilenameExtension(filename) != null ? getFilenameExtension(filename) : sourceExtension; MediaType contentType = headers.getContentType(); long size = headers.getContentLength(); diff --git a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/TransformRegistryImpl.java b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/TransformRegistryImpl.java index 3439d6b3..25c620c0 100644 --- a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/TransformRegistryImpl.java +++ b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/TransformRegistryImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2005 - 2018 Alfresco Software Limited + * Copyright (C) 2005 - 2021 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of @@ -36,6 +36,7 @@ import javax.annotation.PostConstruct; import org.alfresco.transform.client.model.config.TransformConfig; import org.alfresco.transform.client.registry.AbstractTransformRegistry; +import org.alfresco.transform.client.registry.CombinedTransformConfig; import org.alfresco.transform.client.registry.TransformCache; import org.alfresco.transform.exceptions.TransformException; import org.slf4j.Logger; @@ -67,7 +68,8 @@ public class TransformRegistryImpl extends AbstractTransformRegistry { engineConfig = resourceLoader.getResource(locationFromProperty); TransformConfig transformConfig = getTransformConfig(); - registerAll(transformConfig, null, locationFromProperty); + // There is only one TransformConfig in a T-Engine so the following call is fine + CombinedTransformConfig.combineAndRegister(transformConfig, locationFromProperty, "---", this); } // Holds the structures used by AbstractTransformRegistry to look up what is supported. @@ -100,4 +102,10 @@ public class TransformRegistryImpl extends AbstractTransformRegistry { log.error(msg); } + + @Override + protected void logWarn(String msg) + { + log.warn(msg); + } } diff --git a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/metadataExtractors/AbstractMetadataExtractor.java b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/metadataExtractors/AbstractMetadataExtractor.java index 0c9e63d3..36cd4490 100644 --- a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/metadataExtractors/AbstractMetadataExtractor.java +++ b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/metadataExtractors/AbstractMetadataExtractor.java @@ -46,6 +46,7 @@ import java.util.Map; import java.util.Properties; import java.util.Set; import java.util.StringTokenizer; +import java.util.TreeMap; /** * Helper methods for metadata extract and embed. @@ -577,7 +578,7 @@ public abstract class AbstractMetadataExtractor systemProperties.put(systemQName, documentValue); } } - return systemProperties; + return new TreeMap(systemProperties); } private void writeMetadata(File targetFile, Map results) diff --git a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/util/RequestParamMap.java b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/util/RequestParamMap.java index 812ebeea..b5cbbab2 100644 --- a/alfresco-transformer-base/src/main/java/org/alfresco/transformer/util/RequestParamMap.java +++ b/alfresco-transformer-base/src/main/java/org/alfresco/transformer/util/RequestParamMap.java @@ -70,7 +70,7 @@ public interface RequestParamMap String COMMAND_OPTIONS = "commandOptions"; String TIMEOUT = "timeout"; String INCLUDE_CONTENTS = "includeContents"; - String NOT_EXTRACT_BOOKMARK_TEXT = "notExtractBookmarksText"; + String NOT_EXTRACT_BOOKMARKS_TEXT = "notExtractBookmarksText"; String PAGE_LIMIT = "pageLimit"; // TODO PoC for FFmpeg diff --git a/alfresco-transformer-base/src/test/java/org/alfresco/transformer/AbstractTransformerControllerTest.java b/alfresco-transformer-base/src/test/java/org/alfresco/transformer/AbstractTransformerControllerTest.java index 34a942db..073af004 100644 --- a/alfresco-transformer-base/src/test/java/org/alfresco/transformer/AbstractTransformerControllerTest.java +++ b/alfresco-transformer-base/src/test/java/org/alfresco/transformer/AbstractTransformerControllerTest.java @@ -503,7 +503,10 @@ public abstract class AbstractTransformerControllerTest private Transformer buildTransformer(String sourceMediaType, String targetMediaType) { Set supportedSourceAndTargetList = ImmutableSet.of( - new SupportedSourceAndTarget(sourceMediaType, targetMediaType, -1)); + SupportedSourceAndTarget.builder() + .withSourceMediaType(sourceMediaType) + .withTargetMediaType(targetMediaType) + .build()); Transformer transformer = new Transformer(); transformer.setSupportedSourceAndTargetList(supportedSourceAndTargetList); diff --git a/docs/external-engine-configuration.md b/docs/external-engine-configuration.md index 404fad0d..79605968 100644 --- a/docs/external-engine-configuration.md +++ b/docs/external-engine-configuration.md @@ -13,6 +13,7 @@ The following externalized T-engines properties are available: | ACTIVEMQ_USER | ActiveMQ User. | admin | | ACTIVEMQ_PASSWORD | ActiveMQ Password. | admin | | FILE_STORE_URL | T-Engine Port. | http://localhost:8099/alfresco/api/-default-/private/sfs/versions/1/file | +| PDFBOX_NOTEXTRACTBOOKMARKS_DEFAULT | The default behaviour for notExtractBookmarksText when this request param is omitted from a request. | false | | TRANSFORM_ENGINE_REQUEST_QUEUE | T-Engine queue used for receiving async requests. | org.alfresco.transform.engine.tika.acs | @@ -49,7 +50,7 @@ The following externalized T-engines properties are available: | ACTIVEMQ_PASSWORD | ActiveMQ Password. | admin | | FILE_STORE_URL | T-Engine Port. | http://localhost:8099/alfresco/api/-default-/private/sfs/versions/1/file | | TRANSFORM_ENGINE_REQUEST_QUEUE | T-Engine queue used for async requests. | org.alfresco.transform.engine.libreoffice.acs | -| LIBREOFFICE_HOME | Path to LibreOffice_Home. | /opt/libreoffice6.3 | +| LIBREOFFICE_HOME | Path to LibreOffice_Home. | /opt/libreoffice7.0 | | LIBREOFFICE_MAX_TASKS_PER_PROCESS | Number of maximum tasks per process. | 200 | | LIBREOFFICE_TIMEOUT | Timeout value for LibreOffice `execution timeout`, `queue timeout` and `connection timeout`. | 1200000 | | LIBREOFFICE_PORT_NUMBERS | LibreOffice port. | 8100 | @@ -81,10 +82,11 @@ The following externalized T-engines properties are available: | ACTIVEMQ_USER | ActiveMQ User. | admin | | ACTIVEMQ_PASSWORD | ActiveMQ Password. | admin | | FILE_STORE_URL | T-Engine Port. | http://localhost:8099/alfresco/api/-default-/private/sfs/versions/1/file | +| PDFBOX_NOTEXTRACTBOOKMARKS_DEFAULT | The default behaviour for notExtractBookmarksText when this request param is omitted from a request. | false | | TRANSFORM_ENGINE_REQUEST_QUEUE | T-Engine queue used for async requests. | org.alfresco.transform.engine.aio.acs | | PDFRENDERER_EXE | Path to Pdf-renderer EXE. | /usr/bin/alfresco-pdf-renderer | | TRANSFORM_ENGINE_REQUEST_QUEUE | T-Engine queue used for async requests. | org.alfresco.transform.engine.libreoffice.acs | -| LIBREOFFICE_HOME | Path to LibreOffice_Home. | /opt/libreoffice6.3 | +| LIBREOFFICE_HOME | Path to LibreOffice_Home. | /opt/libreoffice7.0 | | LIBREOFFICE_MAX_TASKS_PER_PROCESS | Number of maximum tasks per process. | 200 | | LIBREOFFICE_TIMEOUT | Timeout value for LibreOffice `execution timeout`, `queue timeout` and `connection timeout`. | 1200000 | | LIBREOFFICE_PORT_NUMBERS | LibreOffice port. | 8100 | diff --git a/models/README.md b/models/README.md new file mode 100644 index 00000000..bcb52e1e --- /dev/null +++ b/models/README.md @@ -0,0 +1,21 @@ +## Additional Alfresco Models (Content Metadata) + +IPTC (Photo Metadata) Standard ( https://iptc.org/standards/photo-metadata/iptc-standard/ ) + +Alfresco provides an IPTC content model that maps the IPTC photo metadata fields to an +Alfresco Content Model. + +This IPTC content model used to be part of the Alfresco Media Management product. It is now +provided as part of the core open-source Alfresco Repository. Hence, it will be pre-configured +as part of future core Repository releases (eg. ACS 7.1.0 and related Alfresco Community release). + +The latest ("master") source files can also be found here: + +- https://github.com/Alfresco/alfresco-community-repo/blob/master/repository/src/main/resources/alfresco/model/iptcModel.xml +- https://github.com/Alfresco/alfresco-community-repo/tree/master/repository/src/main/resources/alfresco/messages (iptc-model*.properties) + +In the meantime, for convenience, a copy of the Alfresco IPTC content model (XML + message properties) +is also provided here. These files can be configured to deploy the model into earlier versions of +ACS (eg. 7.0.0) using static bootstrap mechanism. + + \ No newline at end of file diff --git a/models/iptc-model-context.xml b/models/iptc-model-context.xml new file mode 100644 index 00000000..84b0f9e8 --- /dev/null +++ b/models/iptc-model-context.xml @@ -0,0 +1,17 @@ + + + + + + + + alfresco/extension/models/iptc/iptcModel.xml + + + + + alfresco/extension/models/iptc/iptc-model + + + + diff --git a/models/iptc/iptc-model.properties b/models/iptc/iptc-model.properties new file mode 100644 index 00000000..f55ec377 --- /dev/null +++ b/models/iptc/iptc-model.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC Domain Model + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC Aspect +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=City +iptcxmp_iptcmodel.property.photoshop_City.description=Name of the city the content is focusing on -- either the place shown in visual media or referenced by text or audio media. This element is at the third level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.photoshop_Country.title=Country +iptcxmp_iptcmodel.property.photoshop_Country.description=Full name of the country the content is focussing on -- either the country shown in visual media or referenced in text or audio media. This element is at the top/first level of a top- down geographical hierarchy. The full name should be expressed as a verbal name and not as a code, a code should go to the element "CountryCode" +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO Country Code +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Code of the country the content is focussing on -- either the country shown in visual media or referenced in text or audio media. This element is at the top/first level of a top-down geographical hierarchy. The code should be taken from ISO 3166 two or three letter code. The full name of a country should go to the "Country" element. +iptcxmp_iptcmodel.property.dc_description.title=Caption/Description +iptcxmp_iptcmodel.property.dc_description.description=A textual description, including captions, of the item's content, particularly used where the object is not text. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Headline +iptcxmp_iptcmodel.property.photoshop_Headline.description=A brief synopsis of the caption. Headline is not the same as Title. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intellectual Genre +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Describes the nature, intellectual, artistic or journalistic characteristic of a item, not specifically its content. +iptcxmp_iptcmodel.property.dc_subject.title=Keywords +iptcxmp_iptcmodel.property.dc_subject.description=Keywords to express the subject of the content. Keywords may be free text and don't have to be taken from a controlled vocabulary. Codes from the controlled vocabulary IPTC Subject NewsCodes must go to the "Subject Code" field. +iptcxmp_iptcmodel.property.photoshop_State.title=Province/State +iptcxmp_iptcmodel.property.photoshop_State.description=Name of the subregion of a country -- either called province or state or anything else -- the content is focussing on -- either the subregion shown in visual media or referenced by text or audio media. This element is at the second level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC Scene Code +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Describes the scene of a news content. Specifies one or more terms from the IPTC "Scene-NewsCodes". Each Scene is represented as a string of 6 digits in an unordered list. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC Subject Code +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Specifies one or more Subjects from the IPTC Subject-NewsCodes taxonomy to categorise the content. Each Subject is represented as a string of 8 digits in an unordered list. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Sublocation +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Name of a sublocation the content is focussing on -- either the location shown in visual media or referenced by text or audio media. This location name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fourth level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Date Created +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Designates the date and optionally the time the intellectual content was created rather than the date of the creation of the physical representation. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Caption/Description writer +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifier or the name of the person involved in writing, editing or correcting the description of the content. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instructions +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Any of a number of instructions from the provider or creator to the receiver of the item. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Job Identifier +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Number or identifier for the purpose of improved workflow handling. This is a user created identifier related to the job for which the item is supplied. +iptcxmp_iptcmodel.property.dc_title.title=Title +iptcxmp_iptcmodel.property.dc_title.description=A shorthand reference for the item. Title provides a short human readable name which can be a text and/or numeric reference. It is not the same as Headline. +iptcxmp_iptcmodel.property.dc_rights.title=Copyright Notice +iptcxmp_iptcmodel.property.dc_rights.description=Contains any necessary copyright notice for claiming the intellectual property for this item and should identify the current owner of the copyright for the item. Other entities like the creator of the item may be added in the corresponding field. Notes on usage rights should be provided in "Rights usage terms". +iptcxmp_iptcmodel.property.dc_creator.title=Creator +iptcxmp_iptcmodel.property.dc_creator.description=Contains the name of the person who created the content of this item, a photographer for photos, a graphic artist for graphics, or a writer for textual news, but in cases where the photographer should not be identified the name of a company or organisation may be appropriate. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Creator's Job Title +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Contains the job title of the person who created the content of this item. As this is sort of a qualifier the Creator element has to be filled in as mandatory prerequisite for using Creator's Jobtitle. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Credit Line +iptcxmp_iptcmodel.property.photoshop_Credit.description=The credit to person(s) and/or organisation(s) required by the supplier of the item to be used when published. This is a free-text field. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Rights Usage Terms +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=The licensing parameters of the item expressed in free-text. +iptcxmp_iptcmodel.property.photoshop_Source.title=Source +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifies the original owner of the copyright for the intellectual content of the item. This could be an agency, a member of an agency or an individual. Source could be different from Creator and from the entities in the CopyrightNotice. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Address +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=The contact information address part. Comprises an optional company name and all required information to locate the building or postbox to which mail should be sent. To that end, the address is a multiline field. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=City +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=The contact information city part. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Country +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=The contact information country part. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=Email(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=The contact information email address part. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Phone(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=The contact information phone number part. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postal Code +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=The contact information part denoting the local postal code. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=State/Province +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=The contact information part denoting regional information such as state or province. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web URL(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=The contact information web address part. Multiple addresses can be given, separated by a comma. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Urgency +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Deprecated and outside the IPTC Core. +iptcxmp_iptcmodel.property.photoshop_Category.title=Category +iptcxmp_iptcmodel.property.photoshop_Category.description=Deprecated and outside the IPTC Core. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Supplemental Categories +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Deprecated and outside the IPTC Core. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Additional Model Info +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Information about the ethnicity and other facets of the model(s) in a model-released image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Artwork or Object in the Image +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=A set of metadata about artwork or an object in the item +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Code of Featured Organization +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Code from a controlled vocabulary for identifying the organisation or company which is featured in the content. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Controlled Vocabulary Term +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=A term to describe the content of the image by a value from a Controlled Vocabulary. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Model Age +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Age of the human model(s) at the time this image was taken in a model released image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Name of Featured Organization +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Name of the organisation or company which is featured in the content. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Person Shown +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Name of a person the content of the item is about. For photos that is a person shown in the image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digital Image Identifier +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Globally unique identifier for the item. It is created and applied by the creator of the item at the time of its creation . This value shall not be changed after that time. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Physical Type of Original Photo +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=The type of the source digital file. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Type of Source for this Photo +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=The type of the source of this digital image +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Event +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Names or describes the specific event the content relates to. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Image Supplier ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifies the most recent supplier of the item, who is not necessarily its owner or creator. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Image Supplier Name +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifies the most recent supplier of the item, who is not necessarily its owner or creator. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Image Supplier Image ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Optional identifier assigned by the Image Supplier to the image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC Fields Last Edited +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=The date and optionally time when any of the IPTC edited +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maximum Available Height +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=The maximum available height in pixels of the original photo from which this photo has been derived by downsizing. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maximum Available Width +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=The maximum available width in pixels of the original photo from which this photo has been derived by downsizing. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS Version +iptcxmp_iptcmodel.property.plus_Version.description=The version number of the PLUS standards in place at the time of the transaction. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=Copyright Owner ID(s) +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Owner or owners of the copyright in the licensed image. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Copyright Owner Name(s) +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Owner or owners of the copyright in the licensed image. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=Image Creator ID(s) +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Creator or creators of the image. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Image Creator Name(s) +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Creator or creators of the image. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Name +iptcxmp_iptcmodel.property.plus_LicensorName.description=Name of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=City +iptcxmp_iptcmodel.property.plus_LicensorCity.description=City of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Country +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Country of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=Email +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Email of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Extended Address +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Extended address of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postal Code +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Postal code of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Region of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Street Address +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Street address of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telephone 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telephone 1 of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telephone 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telephone 2 of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL of a person or company that should be contacted to obtain a licence for using the item or who has licensed the item. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Minor Model Age Disclosure +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Age of the youngest model pictured in the image, at the time that the image was made. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=Model Release ID +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Optional identifier associated with each Model Release. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Model Release Status +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Summarizes the availability and scope of model releases authorizing usage of the likenesses of persons appearing in the photograph. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=Property Release ID +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Optional identifier associated with each Property Release. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Property Release Status +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Summarises the availability and scope of property releases authorizing usage of the properties appearing in the photograph. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Copyright Notice +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Contains any necessary copyright notice for claiming the intellectual property for artwork or an object in the image and should identify the current owner of the copyright of this work with associated intellectual property rights. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Creator +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Contains the name of the artist who has created artwork or an object in the image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Date Created +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Designates the date and optionally the time the artwork or object in the image was created. This relates to artwork or objects with associated intellectual property rights. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Source +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=The organisation or body holding and registering the artwork or object in the image for inventory purposes. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Source Inventory Number +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=The inventory number issued by the organisation or body holding and registering the artwork or object in the image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Title +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=A reference for the artwork or object in the image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=City +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Name of the city of a location. This element is at the fourth level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Country ISO-Code +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=The ISO code of a country of a location. This element is at the second level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Country Name +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=The name of a country of a location. This element is at the second level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Province/State +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=The name of a subregion of a country - a province or state - of a location. This element is at the third level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Sublocation +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Name of a sublocation. This sublocation name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fifth level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=World Region +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=The name of a world region of a location. This element is at the first (topI) level of a top- down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=City +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Name of the city of a location. This element is at the fourth level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Country ISO-Code +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=The ISO code of a country of a location. This element is at the second level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Country Name +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=The name of a country of a location. This element is at the second level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Province/State +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=The name of a subregion of a country - a province or state - of a location. This element is at the third level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Sublocation +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Name of a sublocation. This sublocation name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fifth level of a top-down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=World Region +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=The name of a world region of a location. This element is at the first (topI) level of a top- down geographical hierarchy. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Item Identifier +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=A unique identifier created by a registry and applied by the creator of the item. This value shall not be changed after being applied. This identifier is linked to a corresponding Registry Organisation Identifier. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organization Identifier +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=An identifier for the registry which issued the corresponding Registry Image Id. + + diff --git a/models/iptc/iptc-model_cs.properties b/models/iptc/iptc-model_cs.properties new file mode 100644 index 00000000..a429d36e --- /dev/null +++ b/models/iptc/iptc-model_cs.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Dom\u00e9nov\u00fd model IPTC Alfresco + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspekt IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=M\u011bsto +iptcxmp_iptcmodel.property.photoshop_City.description=N\u00e1zev m\u011bsta, na kter\u00e9 se obsah zam\u011b\u0159uje \u2013 bu\u010f m\u00edsto zobrazen\u00e9 ve vizu\u00e1ln\u00edm m\u00e9diu, nebo m\u00edsto odkazovan\u00e9 v textu \u010di zvukov\u00e9m m\u00e9diu. Tento prvek je na t\u0159et\u00ed \u00farovni geografick\u00e9 hierarchie ve sm\u011bru shoda dol\u016f. +iptcxmp_iptcmodel.property.photoshop_Country.title=Zem\u011b +iptcxmp_iptcmodel.property.photoshop_Country.description=\u00dapln\u00fd n\u00e1zev zem\u011b, na kterou se obsah zam\u011b\u0159uje \u2013 bu\u010f zem\u011b zobrazen\u00e9 ve vizu\u00e1ln\u00edm m\u00e9diu, nebo zem\u011b odkazovan\u00e9 v textu \u010di zvukov\u00e9m m\u00e9diu. Tento prvek je na nejvy\u0161\u0161\u00ed/prvn\u00ed \u00farovni geografick\u00e9 hierarchie ve sm\u011bru shoda dol\u016f. \u00dapln\u00fd n\u00e1zev se vyjad\u0159uje slovn\u011b, nikoliv jako k\u00f3d. K\u00f3d pat\u0159\u00ed do prvku \u201eK\u00f3dZem\u011b\u201c. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=K\u00f3d ISO zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=K\u00f3d zem\u011b, na kterou se obsah zam\u011b\u0159uje \u2013 bu\u010f zem\u011b zobrazen\u00e9 ve vizu\u00e1ln\u00edm m\u00e9diu, nebo zem\u011b odkazovan\u00e9 v textu \u010di zvukov\u00e9m m\u00e9diu. Tento prvek je na nejvy\u0161\u0161\u00ed/prvn\u00ed \u00farovni geografick\u00e9 hierarchie ve sm\u011bru shoda dol\u016f. K\u00f3d by se z\u00edsk\u00e1v\u00e1 jako dvoum\u00edstn\u00fd nebo t\u0159\u00edm\u00edstn\u00fd k\u00f3d podle normy ISO 3166. \u00dapln\u00fd n\u00e1zev zem\u011b pat\u0159\u00ed do prvku \u201eZem\u011b\u201c. +iptcxmp_iptcmodel.property.dc_description.title=Popisek/popis +iptcxmp_iptcmodel.property.dc_description.description=Textov\u00fd popis, v\u010detn\u011b popisk\u016f, obsahu polo\u017eky, pou\u017e\u00edvan\u00fd zvl\u00e1\u0161t\u011b tam, kde objektem nen\u00ed text. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Nadpis +iptcxmp_iptcmodel.property.photoshop_Headline.description=Stru\u010dn\u00e9 shrnut\u00ed popisku. Nadpis nen\u00ed tot\u00e9\u017e co N\u00e1zev. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intelektu\u00e1ln\u00ed \u017e\u00e1nr +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Popisuje povahu, intelektu\u00e1ln\u00ed, um\u011bleckou nebo \u017eurnalistickou charakteristiku polo\u017eky, ne konkr\u00e9tn\u011b jej\u00edho obsahu. +iptcxmp_iptcmodel.property.dc_subject.title=Kl\u00ed\u010dov\u00e1 slova +iptcxmp_iptcmodel.property.dc_subject.description=Kl\u00ed\u010dov\u00e1 slova pro vyj\u00e1d\u0159en\u00ed subjektu obsahu. Kl\u00ed\u010dov\u00fdmi slovy m\u016f\u017ee b\u00fdt voln\u00fd text a nemus\u00ed poch\u00e1zet z \u0159\u00edzen\u00e9ho slovn\u00edku. K\u00f3dy z \u0159\u00edzen\u00e9ho slovn\u00edku IPTC Subject NewsCodes pat\u0159\u00ed do pole \u201eK\u00f3d subjektu\u201c. +iptcxmp_iptcmodel.property.photoshop_State.title=Provincie/st\u00e1t +iptcxmp_iptcmodel.property.photoshop_State.description=N\u00e1zev podoblasti zem\u011b (m\u016f\u017ee se naz\u00fdvat provincie, st\u00e1t nebo n\u011bjak jinak), na kter\u00fd se obsah zam\u011b\u0159uje \u2013 bu\u010f podoblasti zobrazen\u00e9 ve virtu\u00e1ln\u00edm m\u00e9diu nebo podoblasti odkazovan\u00e9 v textu \u010di zvukov\u00e9m m\u00e9diu. Tento prvek je na druh\u00e9 \u00farovni geografick\u00e9 hierarchie. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=K\u00f3d sc\u00e9ny IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Popisuje sc\u00e9nu obsahu zpr\u00e1v. Specifikuje jeden nebo v\u00edce v\u00fdraz\u016f z IPTC \u201eScene-NewsCodes\u201c. Ka\u017ed\u00e1 sc\u00e9na je reprezentov\u00e1na jako \u0159et\u011bzec 6 \u010d\u00edslic v nese\u0159azen\u00e9m seznamu. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=K\u00f3d subjektu IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Specifikuje jeden nebo v\u00edce subjekt\u016f z taxonomie IPTC Subject-NewsCodes za \u00fa\u010delem kategorizace obsahu. Ka\u017ed\u00fd subjekt je reprezentov\u00e1n jako \u0159et\u011bzec 8 \u010d\u00edslic v nese\u0159azen\u00e9m seznamu. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=D\u00edl\u010d\u00ed m\u00edsto +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=N\u00e1zev d\u00edl\u010d\u00edho m\u00edsta, na kter\u00e9 se obsah zam\u011b\u0159uje \u2013 bu\u010f m\u00edsta zobrazen\u00e9ho ve vizu\u00e1ln\u00edm m\u00e9diu, nebo m\u00edsta odkazovan\u00e9ho v textu \u010di zvukov\u00e9m m\u00e9diu. Tento n\u00e1zev m\u00edsta m\u016f\u017ee b\u00fdt bu\u010f n\u00e1zev d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b, nebo n\u00e1zev dob\u0159e zn\u00e1m\u00e9ho m\u00edsta \u010di (p\u0159\u00edrodn\u00edho) monumentu mimo m\u011bsto. Ve smyslu d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b je tento prvek na \u010dtvrt\u00e9 \u00farovni geografick\u00e9 hierarchie ve sm\u011bru shoda dol\u016f. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Datum vytvo\u0159en\u00ed +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Ud\u00e1v\u00e1 datum a voliteln\u011b i \u010das, kdy byl intelektu\u00e1ln\u00ed obsah vytvo\u0159en, nikoliv datum vytvo\u0159en\u00ed jeho fyzick\u00e9 reprezentace. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Autor popisku/popisu +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifik\u00e1tor nebo jm\u00e9no osoby, kter\u00e1 je zodpov\u011bdn\u00e1 za seps\u00e1n\u00ed, \u00fapravu \u010di opravu popisu obsahu. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Pokyny +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Kter\u00fdkoli pokyn od poskytovatele nebo autora pro p\u0159\u00edjemce polo\u017eky. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identifik\u00e1tor \u00falohy +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=\u010c\u00edslo \u010di identifik\u00e1tor pro \u00fa\u010dely zpracov\u00e1n\u00ed vylep\u0161en\u00e9ho pracovn\u00edho postupu. Jedn\u00e1 se o identifik\u00e1tor vytvo\u0159en\u00fd u\u017eivatelem pro \u00falohu, pro kterou je polo\u017eka ur\u010dena. +iptcxmp_iptcmodel.property.dc_title.title=N\u00e1zev +iptcxmp_iptcmodel.property.dc_title.description=Zkr\u00e1cen\u00e1 reference pro polo\u017eku. N\u00e1zev p\u0159edstavuje kr\u00e1tk\u00e9 ozna\u010den\u00ed \u010diteln\u00e9 pro \u010dlov\u011bka, je\u017e m\u016f\u017ee b\u00fdt textem a/nebo \u010d\u00edselnou referenc\u00ed. Nen\u00ed tot\u00e9\u017e jako Nadpis. +iptcxmp_iptcmodel.property.dc_rights.title=Pozn\u00e1mka o autorsk\u00fdch pr\u00e1vech +iptcxmp_iptcmodel.property.dc_rights.description=Obsahuje v\u0161echny nezbytn\u00e9 pozn\u00e1mky k autorsk\u00fdm pr\u00e1v\u016fm pro n\u00e1rokov\u00e1n\u00ed du\u0161evn\u00edho vlastnictv\u00ed k dan\u00e9 polo\u017ece a m\u011bla by identifikovat aktu\u00e1ln\u00edho vlastn\u00edka autorsk\u00fdch pr\u00e1v k polo\u017ece. Ostatn\u00ed entity, jako je autor polo\u017eky, lze p\u0159idat do p\u0159\u00edslu\u0161n\u00fdch pol\u00ed. Pozn\u00e1mky k pr\u00e1v\u016fm na pou\u017eit\u00ed by m\u011bly b\u00fdt uvedeny v \u010d\u00e1sti \u201ePodm\u00ednky pr\u00e1va na pou\u017eit\u00ed\u201c. +iptcxmp_iptcmodel.property.dc_creator.title=Autor +iptcxmp_iptcmodel.property.dc_creator.description=Obsahuje jm\u00e9no osoby, kter\u00e1 vytvo\u0159ila obsah t\u00e9to polo\u017eky, u fotografi\u00ed jde o fotografa, u grafiky jde o grafika a u textov\u00fdch novinek jde o pisatele. V p\u0159\u00edpad\u011b, \u017ee by fotograf nem\u011bl b\u00fdt identifikov\u00e1n, m\u016f\u017ee b\u00fdt pou\u017eit n\u00e1zev spole\u010dnosti nebo organizace. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Pracovn\u00ed pozice autora +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Obsahuje pracovn\u00ed pozici osoby, kter\u00e1 vytvo\u0159ila obsah t\u00e9to polo\u017eky. Jeliko\u017e jde o druh kvalifik\u00e1toru, je t\u0159eba jako povinn\u00fd p\u0159edpoklad pro pou\u017eit\u00ed prvku Pracovn\u00ed pozice autora vyplnit prvek Autor. +iptcxmp_iptcmodel.property.photoshop_Credit.title=\u0158\u00e1dek uzn\u00e1n\u00ed +iptcxmp_iptcmodel.property.photoshop_Credit.description=Uzn\u00e1n\u00ed osob\u00e1m a/nebo organizac\u00edm, kter\u00e9 dodavatel polo\u017eky po\u017eaduje p\u0159i publikov\u00e1n\u00ed polo\u017eky. Jedn\u00e1 se o pole voln\u00e9ho textu. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Podm\u00ednky pou\u017eit\u00ed pr\u00e1v +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Parametry licencov\u00e1n\u00ed polo\u017eky vyj\u00e1d\u0159en\u00e9 ve form\u011b voln\u00e9ho textu. +iptcxmp_iptcmodel.property.photoshop_Source.title=Zdroj +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifikuje p\u016fvodn\u00edho vlastn\u00edka autorsk\u00fdch pr\u00e1v k intelektu\u00e1ln\u00edmu obsahu polo\u017eky. M\u016f\u017ee j\u00edt o agenturu, \u010dlena agentury nebo osobu. Zdroj by se m\u011bl li\u0161it od autora a od subjekt\u016f uveden\u00fdch v pozn\u00e1mce o autorsk\u00fdch pr\u00e1vech. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adresa +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=\u010c\u00e1st adresy v\u011bnovan\u00e1 kontaktn\u00edm \u00fadaj\u016fm. Skl\u00e1d\u00e1 se z voliteln\u00e9ho n\u00e1zvu spole\u010dnosti a v\u0161ech povinn\u00fdch informac\u00ed, aby bylo mo\u017en\u00e9 naj\u00edt budovu nebo po\u0161tovn\u00ed schr\u00e1nku, kam se m\u00e1 doru\u010dovat po\u0161ta. Adresa je proto pole s v\u00edce \u0159\u00e1dky. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=M\u011bsto +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f v\u011bnovan\u00e1 m\u011bstu. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f v\u011bnovan\u00e1 zemi. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-mail(y) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f v\u011bnovan\u00e1 e-mailov\u00fdm adres\u00e1m. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefon(y) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f v\u011bnovan\u00e1 telefonn\u00edm \u010d\u00edsl\u016fm. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=PS\u010c +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f obsahuj\u00edc\u00ed m\u00edstn\u00ed po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=St\u00e1t/provincie +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f obsahuj\u00edc\u00ed informace o regionu, jako jsou st\u00e1t nebo provincie. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Adresa URL webu +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=\u010c\u00e1st kontaktn\u00edch \u00fadaj\u016f v\u011bnovan\u00e1 webov\u00fdm adres\u00e1m. D\u00e1 se uv\u00e9st v\u00edce adres odd\u011blen\u00fdch \u010d\u00e1rkou. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Nal\u00e9havost +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Zastaral\u00e9 a mimo j\u00e1dro IPTC. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategorie +iptcxmp_iptcmodel.property.photoshop_Category.description=Zastaral\u00e9 a mimo j\u00e1dro IPTC. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Dopl\u0148kov\u00e9 kategorie +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Zastaral\u00e9 a mimo j\u00e1dro IPTC. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Dal\u0161\u00ed informace o modelce/modelu +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informace o etnick\u00e9 p\u0159\u00edslu\u0161nosti a dal\u0161\u00edch aspektech modelky/modela na sn\u00edmku podle smlouvy model release. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Grafick\u00e1 d\u00edlo nebo objekt na sn\u00edmku +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Sada metadat o grafick\u00e9m d\u00edle nebo objektu v polo\u017ece. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=K\u00f3d vystupuj\u00edc\u00ed organizace +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=K\u00f3d z \u0159\u00edzen\u00e9ho slovn\u00edku pro identifikaci organizace nebo spole\u010dnosti, kter\u00e1 vystupuje v obsahu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=V\u00fdraz z \u0159\u00edzen\u00e9ho slovn\u00edku +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=V\u00fdraz popisuj\u00edc\u00ed obsah obr\u00e1zku pomoc\u00ed hodnoty z \u0159\u00edzen\u00e9ho slovn\u00edku. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=V\u011bk modelky/modela +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=V\u011bk modelky/modela v dob\u011b po\u0159\u00edzen\u00ed sn\u00edmku na sn\u00edmku podle smlouvy model release. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=N\u00e1zev vystupuj\u00edc\u00ed organizace +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=N\u00e1zev organizace nebo spole\u010dnosti, kter\u00e1 vystupuje v obsahu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Vyobrazen\u00e1 osoba +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Jm\u00e9no osoby, o n\u00ed\u017e obsah polo\u017eky pojedn\u00e1v\u00e1. U fotografi\u00ed jde o osobu vyobrazenou na sn\u00edmku. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identifik\u00e1tor digit\u00e1ln\u00ed fotografie +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Celosv\u011btov\u011b jedine\u010dn\u00fd identifik\u00e1tor polo\u017eky. Vytv\u00e1\u0159\u00ed a aplikuje ho autor polo\u017eky v dob\u011b jej\u00edho vytvo\u0159en\u00ed. N\u00e1sledn\u011b se ji\u017e tato hodnota nesm\u00ed m\u011bnit. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Fyzick\u00fd typ p\u016fvodn\u00ed fotografie +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Typ zdrojov\u00e9ho digit\u00e1ln\u00edho souboru. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Typ zdroje t\u00e9to fotografie +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Typ zdroje tohoto digit\u00e1ln\u00edho sn\u00edmku +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Ud\u00e1lost +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=N\u00e1zvy nebo popisy konkr\u00e9tn\u00ed ud\u00e1losti, s n\u00ed\u017e obsah souvis\u00ed. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID dodavatele sn\u00edmku +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifikuje posledn\u00edho dodavatele polo\u017eky, kter\u00fd nezbytn\u011b nemus\u00ed b\u00fdt jej\u00edm vlastn\u00edkem nebo autorem. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Jm\u00e9no dodavatele sn\u00edmku +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifikuje posledn\u00edho dodavatele polo\u017eky, kter\u00fd nezbytn\u011b nemus\u00ed b\u00fdt jej\u00edm vlastn\u00edkem nebo autorem. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=ID sn\u00edmku dodavatele sn\u00edmku +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Voliteln\u00fd identifik\u00e1tor, kter\u00fd dodavatel sn\u00edmku p\u0159i\u0159azuje ke sn\u00edmku. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Posledn\u00ed \u00faprava pol\u00ed IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Datum a voliteln\u011b i \u010das, kdy bylo upraveno kter\u00e9koli IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maxim\u00e1ln\u00ed dostupn\u00e1 v\u00fd\u0161ka +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Maxim\u00e1ln\u00ed dostupn\u00e1 v\u00fd\u0161ka (v pixelech) p\u016fvodn\u00edho sn\u00edmku, z n\u011bho\u017e byl tento sn\u00edmek z\u00edsk\u00e1n zmen\u0161en\u00edm. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maxim\u00e1ln\u00ed dostupn\u00e1 \u0161\u00ed\u0159ka +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Maxim\u00e1ln\u00ed dostupn\u00e1 \u0161\u00ed\u0159ka (v pixelech) p\u016fvodn\u00edho sn\u00edmku, z n\u011bho\u017e byl tento sn\u00edmek z\u00edsk\u00e1n zmen\u0161en\u00edm. +iptcxmp_iptcmodel.property.plus_Version.title=Verze PLUS +iptcxmp_iptcmodel.property.plus_Version.description=\u010c\u00edslo verze pou\u017eit\u00fdch standard\u016f PLUS v dob\u011b transakce. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID vlastn\u00edka autorsk\u00fdch pr\u00e1v +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Vlastn\u00edk nebo vlastn\u00edci autorsk\u00fdch pr\u00e1v k licencovan\u00e9mu sn\u00edmku. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Jm\u00e9no vlastn\u00edka autorsk\u00fdch pr\u00e1v +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Vlastn\u00edk nebo vlastn\u00edci autorsk\u00fdch pr\u00e1v k licencovan\u00e9mu sn\u00edmku. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID autora sn\u00edmku +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Autor nebo auto\u0159i sn\u00edmku. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Jm\u00e9no autora sn\u00edmku +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Autor nebo auto\u0159i sn\u00edmku. +iptcxmp_iptcmodel.property.plus_LicensorID.title=ID PLUS +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Jm\u00e9no +iptcxmp_iptcmodel.property.plus_LicensorName.description=Jm\u00e9no osoby nebo n\u00e1zev spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=M\u011bsto +iptcxmp_iptcmodel.property.plus_LicensorCity.description=M\u011bsto osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Zem\u011b +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Zem\u011b osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-mail +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=E-mail osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Roz\u0161\u00ed\u0159en\u00e1 adresa +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Roz\u0161\u00ed\u0159en\u00e1 adresa osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=PS\u010c +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=PS\u010c osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Region osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Ulice +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Ulice osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefon 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefon 1 osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefon 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefon 2 osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=Adresa URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=Adresa URL osoby nebo spole\u010dnosti, kterou je t\u0159eba kontaktovat ve v\u011bci z\u00edsk\u00e1n\u00ed licence na pou\u017eit\u00ed polo\u017eky nebo kter\u00e1 si polo\u017eku licencovala. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Zve\u0159ejn\u011bn\u00ed v\u011bku nezletil\u00e9 modelky / nezletil\u00e9ho modela +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=V\u011bk nejmlad\u0161\u00ed modelky / nejmlad\u0161\u00edho modela vyobrazen\u00e9(ho) na sn\u00edmku v okam\u017eiku po\u0159\u00edzen\u00ed sn\u00edmku. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID smlouvy model release +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Voliteln\u00fd identifik\u00e1tor spojen\u00fd s ka\u017edou smlouvou model release. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Stav smlouvy model release +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Shrnuje dostupnost a rozsah smluv model release oprav\u0148uj\u00edc\u00edch k pou\u017eit\u00ed zpodobn\u011bn\u00ed osob na fotografii. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID smlouvy property release +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Voliteln\u00fd identifik\u00e1tor spojen\u00fd s ka\u017edou smlouvou property release. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Stav smlouvy property release +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Shrnuje dostupnost a rozsah smluv property release oprav\u0148uj\u00edc\u00edch k pou\u017eit\u00ed zpodobn\u011bn\u00ed nemovitost\u00ed na fotografii. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Pozn\u00e1mka o autorsk\u00fdch pr\u00e1vech +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Obsahuje v\u0161echny nezbytn\u00e9 pozn\u00e1mky o autorsk\u00fdch pr\u00e1vech pro n\u00e1rokov\u00e1n\u00ed du\u0161evn\u00edho vlastnictv\u00ed ke grafick\u00e9mu d\u00edlu nebo objektu na sn\u00edmku. M\u011bla by b\u00fdt obsa\u017eena toto\u017enost aktu\u00e1ln\u00edho vlastn\u00edka autorsk\u00e9ho pr\u00e1va na toto d\u00edlo spolu se souvisej\u00edc\u00edmi pr\u00e1vy k du\u0161evn\u00edmu vlastnictv\u00ed. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Autor +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Obsahuje jm\u00e9no um\u011blce, kter\u00fd grafick\u00e9 d\u00edlo nebo objekt na sn\u00edmku vytvo\u0159il. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Datum vytvo\u0159en\u00ed +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Ud\u00e1v\u00e1 datum a voliteln\u011b i \u010das vytvo\u0159en\u00ed grafick\u00e9ho d\u00edla nebo objektu na obr\u00e1zku. To souvis\u00ed s grafick\u00fdm d\u00edlem nebo objektem s p\u0159i\u0159azen\u00fdmi pr\u00e1vy k du\u0161evn\u00edmu vlastnictv\u00ed. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Zdroj +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Organizace nebo org\u00e1n uchov\u00e1vaj\u00edc\u00ed nebo registruj\u00edc\u00ed grafick\u00e9 d\u00edlo \u010di objekt na sn\u00edmku pro \u00fa\u010dely inventarizace. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Invent\u00e1rn\u00ed \u010d\u00edslo zdroje +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Invent\u00e1rn\u00ed \u010d\u00edslo vydan\u00e9 organizac\u00ed nebo org\u00e1nem uchov\u00e1vaj\u00edc\u00edm nebo registruj\u00edc\u00edm grafick\u00e9 d\u00edlo \u010di objekt na sn\u00edmku. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=N\u00e1zev +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Odkaz na grafick\u00e9 d\u00edlo \u010di objekt na sn\u00edmku. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=M\u011bsto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=N\u00e1zev m\u011bsta dan\u00e9ho m\u00edsta. Tento prvek je na \u010dtvrt\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=K\u00f3d ISO zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=K\u00f3d ISO zem\u011b dan\u00e9ho m\u00edsta. Tento prvek je na druh\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=N\u00e1zev zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=N\u00e1zev zem\u011b dan\u00e9ho m\u00edsta. Tento prvek je na druh\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provincie/st\u00e1t +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=N\u00e1zev podoblasti zem\u011b \u2013 provincie nebo st\u00e1tu \u2013 dan\u00e9ho m\u00edsta. Tento prvek je na t\u0159et\u00ed \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=D\u00edl\u010d\u00ed m\u00edsto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=N\u00e1zev d\u00edl\u010d\u00edho m\u00edsta. Tento n\u00e1zev d\u00edl\u010d\u00edho m\u00edsta m\u016f\u017ee b\u00fdt bu\u010f n\u00e1zev d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b nebo n\u00e1zev dob\u0159e zn\u00e1m\u00e9ho m\u00edsta \u010di (p\u0159\u00edrodn\u00edho) monumentu mimo m\u011bsto. Ve smyslu d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b je tento prvek na p\u00e1t\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Oblast sv\u011bta +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=N\u00e1zev oblasti sv\u011bta dan\u00e9ho m\u00edsta. Tento prvek je na prvn\u00ed (nejvy\u0161\u0161\u00ed) \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=M\u011bsto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=N\u00e1zev m\u011bsta dan\u00e9ho m\u00edsta. Tento prvek je na \u010dtvrt\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=K\u00f3d ISO zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=K\u00f3d ISO zem\u011b dan\u00e9ho m\u00edsta. Tento prvek je na druh\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=N\u00e1zev zem\u011b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=N\u00e1zev zem\u011b dan\u00e9ho m\u00edsta. Tento prvek je na druh\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provincie/st\u00e1t +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=N\u00e1zev podoblasti zem\u011b \u2013 provincie nebo st\u00e1tu \u2013 dan\u00e9ho m\u00edsta. Tento prvek je na t\u0159et\u00ed \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=D\u00edl\u010d\u00ed m\u00edsto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=N\u00e1zev d\u00edl\u010d\u00edho m\u00edsta. Tento n\u00e1zev d\u00edl\u010d\u00edho m\u00edsta m\u016f\u017ee b\u00fdt bu\u010f n\u00e1zev d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b nebo n\u00e1zev dob\u0159e zn\u00e1m\u00e9ho m\u00edsta \u010di (p\u0159\u00edrodn\u00edho) monumentu mimo m\u011bsto. Ve smyslu d\u00edl\u010d\u00edho m\u00edsta ve m\u011bst\u011b je tento prvek na p\u00e1t\u00e9 \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Oblast sv\u011bta +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=N\u00e1zev oblasti sv\u011bta m\u00edsta. Tento prvek je na prvn\u00ed (nejvy\u0161\u0161\u00ed) \u00farovni geografick\u00e9 hierarchie shora dol\u016f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identifik\u00e1tor polo\u017eky +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Jedine\u010dn\u00fd identifik\u00e1tor vytvo\u0159en\u00fd registrem a aplikovan\u00fd autorem polo\u017eky. Po pou\u017eit\u00ed se ji\u017e tato hodnota nesm\u00ed m\u011bnit. Tento identifik\u00e1tor je spojen s p\u0159\u00edslu\u0161n\u00fdm identifik\u00e1torem organizace registru. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identifik\u00e1tor organizace +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Identifik\u00e1tor registru, kter\u00fd vydal p\u0159\u00edslu\u0161n\u00e9 ID sn\u00edmku registru. + + diff --git a/models/iptc/iptc-model_da.properties b/models/iptc/iptc-model_da.properties new file mode 100644 index 00000000..3be0ce09 --- /dev/null +++ b/models/iptc/iptc-model_da.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC Dom\u00e6nemodel + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-aspekt +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=By +iptcxmp_iptcmodel.property.photoshop_City.description=Navnet p\u00e5 den by, indholdet fokuserer p\u00e5 - enten det sted vist i visuelle medier eller henvist til ved hj\u00e6lp af tekst eller lydmedier. Dette element er p\u00e5 det tredje niveau i et geografisk hierarki oppe fra og ned. +iptcxmp_iptcmodel.property.photoshop_Country.title=Land +iptcxmp_iptcmodel.property.photoshop_Country.description=Fuldt navn p\u00e5 det land, indholdet fokuserer p\u00e5 - enten det land, der vises i visuelle medier eller der henvises til i tekst eller lydmedier. Dette element er p\u00e5 det \u00f8verste/f\u00f8rste niveau i et geografisk hierarki ovenfra og ned. Det fulde navn skal udtrykkes som et verbalt navn og ikke som en kode, en kode skal g\u00e5 til elementet "CountryCode" +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO-landekode +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Kode for det land, indholdet fokuserer p\u00e5 - enten det land, der vises i visuelle medier eller der henvises til i tekst eller lydmedier. Dette element er p\u00e5 det \u00f8verste/f\u00f8rste niveau af et geografisk hierarki ovenfra og ned. Koden skal tages fra ISO 3166 kode med to eller tre bogstaver. Et lands fulde navn skal g\u00e5 til elementet "Land". +iptcxmp_iptcmodel.property.dc_description.title=Forklaring/beskrivelse +iptcxmp_iptcmodel.property.dc_description.description=En tekstbeskrivelse, herunder billedtekster, af elementets indhold, is\u00e6r brugt, hvor objektet ikke er tekst. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Overskrift +iptcxmp_iptcmodel.property.photoshop_Headline.description=En kort oversigt over forklaring. Overskrift er ikke det samme som titel. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intellektuel genre +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Beskriver arten af, det intellektuelle, kunstneriske eller journalistiske kendetegn ved et element, ikke specifikt dets indhold. +iptcxmp_iptcmodel.property.dc_subject.title=N\u00f8gleord +iptcxmp_iptcmodel.property.dc_subject.description=N\u00f8gleord til at udtrykke indholdets emne. N\u00f8gleord kan v\u00e6re fri tekst og beh\u00f8ver ikke at blive taget fra et kontrolleret ordforr\u00e5d. Koder fra det kontrollerede ordforr\u00e5d IPTC Emne Nyhedskoder skal g\u00e5 til feltet "Emnekode". +iptcxmp_iptcmodel.property.photoshop_State.title=Region/stat +iptcxmp_iptcmodel.property.photoshop_State.description=Navnet p\u00e5 et lands underregion - enten kaldet provins eller stat eller noget andet - indholdet fokuserer p\u00e5 - enten underomr\u00e5det vist i visuelle medier eller henvist til med tekst eller lydmedier. Dette element er p\u00e5 det andet niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC Scenekode +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Beskriver et nyhedsindholds scene. Angiver et eller flere udtryk fra IPTC "Scene-Nyhedskoder". Hver scene er repr\u00e6senteret som en streng p\u00e5 6 cifre p\u00e5 en ikke-ordnet liste. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC Emnekode +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Angiver et eller flere emner fra IPTC-Emne-Nyhedskoder-taksonomien for at kategorisere indholdet. Hvert emne er repr\u00e6senteret som en streng af 8 cifre i en uordnet liste. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Underordnet sted +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Navnet p\u00e5 et underordnet sted indholdet fokuserer p\u00e5 - enten den placering, der vises i visuelle medier eller der henvises til med tekst eller lydmedier. Dette stednavn kunne enten v\u00e6re navnet p\u00e5 et underordnet sted i en by eller navnet p\u00e5 et velkendt sted eller (naturligt) monument uden for en by. I betydningen af et underordnet sted til en by er dette element p\u00e5 det fjerde niveau i et geografisk hierark ovenfra og nedi. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Dato Oprettet +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Angiver datoen og valgfrit tidspunktet for, hvorn\u00e5r det intellektuelle indhold blev oprettet snarere end datoen for oprettelsen af den fysiske repr\u00e6sentation. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Tekst/beskrivelse forfatter +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifikator eller navnet p\u00e5 den person, der er involveret i at skrive, redigere eller korrigere beskrivelsen af indholdet. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instruktioner +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Enhver af et antal instruktioner fra udbyderen eller den, der har oprettet, til modtageren af varen. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Jobidentifikator +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Nummer eller identifikator med henblik p\u00e5 forbedret h\u00e5ndtering af workflow. Dette er en brugeroprettet identifikator, der er relateret til det job, som varen leveres til. +iptcxmp_iptcmodel.property.dc_title.title=Titel +iptcxmp_iptcmodel.property.dc_title.description=En kort reference til varen. Titel giver et kort menneskeligt l\u00e6sbart navn, som kan v\u00e6re en tekst og/eller en numerisk reference. Den er ikke det samme som overskrift. +iptcxmp_iptcmodel.property.dc_rights.title=Notits om ophavsret +iptcxmp_iptcmodel.property.dc_rights.description=Indeholder enhver n\u00f8dvendig meddelelse om ophavsret for at g\u00f8re krav p\u00e5 den intellektuelle ejendomsret til denne vare og skal identificere den nuv\u00e6rende ejer af ophavsretten til varen. Andre enheder som den, der har oprettet elementet, kan tilf\u00f8jes i det tilsvarende felt. Bem\u00e6rkninger om brugsrettigheder skal gives i "Vilk\u00e5r for brug af rettigheder". +iptcxmp_iptcmodel.property.dc_creator.title=Opretter +iptcxmp_iptcmodel.property.dc_creator.description=Indeholder navnet p\u00e5 den person, der oprettede indholdet af dette emne, en fotograf til fotos, en grafiker til grafik eller en forfatter til tekstlige nyheder, men i de tilf\u00e6lde hvor fotografen ikke skal identificeres, kan navnet p\u00e5 en virksomhed eller organisation muligvis v\u00e6re passende. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Opretters jobtitel +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Indeholder jobtitlen p\u00e5r den person, der oprettede indholdet af dette emne. Da dette er en slags kvalifikator, skal opretter-elementet udfyldes som obligatorisk foruds\u00e6tning for at bruge opretterens jobtitel. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Kreditlinje +iptcxmp_iptcmodel.property.photoshop_Credit.description=Den kredit til person(er) og/eller organisation(er), der kr\u00e6ves af leverand\u00f8ren af det emne, der skal bruges, n\u00e5r det offentligg\u00f8res. Dette er et fritekstfelt. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Rettigheder Brug Betingelser +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Emnets licensparametre udtrykt i fritekst. +iptcxmp_iptcmodel.property.photoshop_Source.title=Kilde +iptcxmp_iptcmodel.property.photoshop_Source.description=Identificerer den oprindelige ejer af ophavsretten til det intellektuelle indhold af emnet. Dette kan v\u00e6re et agentur, et medlem af et agentur eller en person. Kilden kan v\u00e6re forskellig fra opretter og fra enhederne i Notits om ophavsret. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adresse +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Kontaktoplysningens adressedel. Indeholder et valgfrit firmanavn og alle n\u00f8dvendige oplysninger for at finde den bygning eller postkasse, som posten skal sendes til. Dertill er adressen et felt med flere linjer. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=By +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Kontaktoplysninger for del om by. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Kontaktoplysninger for del om land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-mail +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Kontaktoplysninger for del om e-mailadresse. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefon(er) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Kontaktoplysninger for del om telefonnummer. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postnummer +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Kontaktoplysninger for del, der betegner lokal postnummer. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Land/region +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Kontaktoplysninger for del, der betegner regional information som land eller region. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web URL(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Kontaktoplysninger for del om webadresse. Flere adresser kan gives, adskilt af et komma. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Vigtighed +iptcxmp_iptcmodel.property.photoshop_Urgency.description=For\u00e6ldet og uden for IPTC-kerne. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategori +iptcxmp_iptcmodel.property.photoshop_Category.description=For\u00e6ldet og uden for IPTC-kerne. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Yderligere kategorier +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=For\u00e6ldet og uden for IPTC-kerne. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Yderligere modelinfo +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Information om modellens/modellernes etnicitet og andre faktorer i et model-udgivet billede. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Illustrationer eller objekt i billedet +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Et s\u00e6t metadata om illustrationer eller et objekt i emnet +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Den pr\u00e6senterede organisations kode +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Kode fra et kontrolleret ordforr\u00e5d til identifikation af den organisation eller virksomhed, der pr\u00e6senteret i indholdet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Kontrolleret ordforr\u00e5dsterm +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Et udtryk til beskrivelse af billedets indhold med en v\u00e6rdi fra et kontrolleret ordforr\u00e5d. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Modelalder +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Alder p\u00e5 den modeller/de modeller (mennesker)p\u00e5 det tidspunkt, hvor dette billede blev taget i et model udgivet billede. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Navn p\u00e5 den pr\u00e6senterede organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Navnet p\u00e5 den organisation eller virksomhed, der er vist i indholdet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Viste person +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Navn p\u00e5 en person, som emnets indhold drejer sigr om. Til fotos af en person vist p\u00e5 billedet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digital billedidentifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Globalt unik identifikator for emnet. Det oprettes og anvendes af opretteren af emnet p\u00e5 tidspunktet for dets oprettelse. Denne v\u00e6rdi m\u00e5 ikke \u00e6ndres efter det tidspunkt. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Originalfotos fysiske type +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Kildens digitale filtype. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Kildetype til dette foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Kildetype til dette digitale billede +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Event +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Navngiver eller beskriver den specifikke begivenhed indholdet relaterer til. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Billedes leverand\u00f8r-ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identificerer emnets den nyeste leverand\u00f8r, som ikke n\u00f8dvendigvis er ejer eller opretter. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Billedes leverand\u00f8rnavn +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identificerer emnets den nyeste leverand\u00f8r, som ikke n\u00f8dvendigvis er ejer eller opretter. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Billedleverand\u00f8ren billed-ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Valgfri identifikator tildelt af billedleverand\u00f8ren til billedet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC-felter sidst redigeret +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Datoen og eventuelt tidspunktet for redigering af IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maksimal tilg\u00e6ngelig h\u00f8jde +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Den maksimale tilg\u00e6ngelige h\u00f8jde i pixels af det originale foto, hvorfra dette foto er afledt ved besk\u00e6ring. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maksimal tilg\u00e6ngelig bredde +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Den maksimale tilg\u00e6ngelige bredde i pixels af det originale foto, hvorfra dette foto er afledt ved besk\u00e6ring. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS Version +iptcxmp_iptcmodel.property.plus_Version.description=Versionsnummeret p\u00e5 PLUS-standarderne p\u00e5 tidspunktet for transaktionen. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=Ophavsret ejerr ID(s) +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Ejer eller ejere af ophavsretten til det licenserede billede. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Ophavsret ejers navn(e) +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Ejer eller ejere af ophavsretten til det licenserede billede. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=Opretter af billedet ID(er) +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Opretter eller oprettere af billedet. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Opretter af billede navn(e) +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Opretter eller oprettere af billedet. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Navn +iptcxmp_iptcmodel.property.plus_LicensorName.description=Navn p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=By +iptcxmp_iptcmodel.property.plus_LicensorCity.description=By for en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Land +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Land for en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=e-mail +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=E-mail for en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Udviddet adresse +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Udvidet adresse for en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postnummer +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Postnummer p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Region p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Vej adresse +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Vejnavn p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefon 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefon 1 p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefon 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefon 2 p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL p\u00e5 en person eller virksomhed, der skal kontaktes for at f\u00e5 en licens til brug af emnet, eller som har licens p\u00e5 emnet. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Mindre model aldersoplysninger +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Alder p\u00e5 den yngste model p\u00e5 billedet p\u00e5 det tidspunkt, hvor billedet blev taget. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=Modeludgivelses-id +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Valgfri identifikator tilknyttet hver modeludgivelse. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Modeludgivelsesstatus +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Opsummerer tilg\u00e6ngeligheden og omfanget af modeludgivelser, der tillader brug af ligheden af personer, der vises p\u00e5 fotografiet. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=Ejendomsudgivelses-ID +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Valgfri identifikator tilknyttet hver ejendomsudgivelse. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Ejendomsudgivelsesstatus +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Opsummerer tilg\u00e6ngeligheden og omfanget af ejendomsudgivelser, der tillader brug af de ejendomme, der vises p\u00e5 fotografiet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Notits om ophavsret +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Indeholder enhver n\u00f8dvendig note om ophavsret for at g\u00f8re krav p\u00e5 den intellektuelle ejendomsret til illustrationer eller et objekt i billedet og skal identificere den nuv\u00e6rende ejer af ophavsretten til dette v\u00e6rk med tilh\u00f8rende intellektuelle ejendomsrettigheder. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Opretter +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Indeholder navnet p\u00e5 kunstneren, der har oprettet illustrationer eller et objekt i billedet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Dato Oprettet +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Angiver datoen og eventuelt det tidspunkt, hvor illustrationen eller objektet i billedet blev oprettet. Dette vedr\u00f8rer illustrationer eller objekter med tilknyttede intellektuelle ejendomsrettigheder. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Kilde +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Organisationen eller organet, der holder og registrerer kunstv\u00e6rket eller objektet i billedet til opg\u00f8relsesform\u00e5l. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Kilde opg\u00f8relsesnummer +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Opg\u00f8relsesnummeret udstedt af organisationen eller organet, der holder og registrerer kunstv\u00e6rket eller objektet i billedet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titel +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=En reference til kunstv\u00e6rket eller objektet i billedet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=By +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Navn p\u00e5 byens placering. Dette element ligger p\u00e5 det fjerde niveau af et geografisk hierark oppefra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Land ISO-kode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=ISO-koden for et land p\u00e5 en placering. Dette element er p\u00e5 det andet niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Navn p\u00e5 land +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Navnet p\u00e5 et land p\u00e5 en placering. Dette element er p\u00e5 det andet niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Region/stat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Navnet p\u00e5 en landsdel eller region i et land p\u00e5 en placering. Dette element er p\u00e5 det tredje niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Underordnet sted +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Navn p\u00e5 en underordnet placering. Dette underplaceringsnavn kan enten v\u00e6re navnet p\u00e5 en bydel i en by eller navnet p\u00e5 et velkendt sted eller (naturligt) monument uden for en by. I betydningen af bydel i en by er dette element p\u00e5 det femte niveau i et geografisk hierarki oppefra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Verdensdel +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Navnet p\u00e5 en placerings verdensdel. Dette element er p\u00e5 det f\u00f8rste (topI) niveau i et topografisk geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=By +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Navn p\u00e5 byens placering. Dette element ligger p\u00e5 det fjerde niveau af et geografisk hierark oppefra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Land ISO-kode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=ISO-koden for et land p\u00e5 en placering. Dette element er p\u00e5 det andet niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Navn p\u00e5 land +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Navnet p\u00e5 et land p\u00e5 en placering. Dette element er p\u00e5 det andet niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Region/stat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Navnet p\u00e5 en landsdel eller region i et land p\u00e5 en placering. Dette element er p\u00e5 det tredje niveau i et geografisk hierarki ovenfra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Underordnet sted +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Navn p\u00e5 en underordnet placering. Dette underplaceringsnavn kan enten v\u00e6re navnet p\u00e5 en bydel i en by eller navnet p\u00e5 et velkendt sted eller (naturligt) monument uden for en by. I betydningen af bydel i en by er dette element p\u00e5 det femte niveau i et geografisk hierarki oppefra og ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Verdensdel +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Navnet p\u00e5 en placerings verdensdel. Dette element er p\u00e5 det f\u00f8rste (topI) niveau i et topografisk geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Emne-identifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=En unik identifikator oprettet af et register og anvendt af emnets opretter. Denne v\u00e6rdi \u00e6ndres ikke efter anvendelse. Denne identifikator er knyttet til en tilsvarende organisationsidentifikator til registrering +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organisationsidentifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=En identifikator til det register, der udstedte det tilsvarende registreringsbillede-id. + + diff --git a/models/iptc/iptc-model_de.properties b/models/iptc/iptc-model_de.properties new file mode 100644 index 00000000..6388c727 --- /dev/null +++ b/models/iptc/iptc-model_de.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC-Dom\u00e4nenmodell + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-Aspekt +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Stadt +iptcxmp_iptcmodel.property.photoshop_City.description=Der Name der Stadt, auf die sich der Inhalt bezieht \u2013 entweder der in den visuellen Medien gezeigte Ort oder der Ort, auf den in Text- oder Audiomedien verwiesen wird. Dieses Element befindet sich auf der dritten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.photoshop_Country.title=Land +iptcxmp_iptcmodel.property.photoshop_Country.description=Der vollst\u00e4ndige Name des Landes, auf das sich der Inhalt bezieht \u2013 entweder das in den visuellen Medien gezeigte Land oder das Land, auf das in Text- oder Audiomedien verwiesen wird. Dieses Element befindet sich auf der obersten Ebene einer Hierarchie (von oben nach unten gesehen). Der vollst\u00e4ndige Name muss ein verbaler Name und nicht als Code ausgedr\u00fcckt werden. Ein Code geh\u00f6rt in das Element "L\u00e4ndercode". +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO-L\u00e4nderkennung +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Der vollst\u00e4ndige Name des Landes, auf das sich der Inhalt bezieht \u2013 entweder das in den visuellen Medien gezeigte Land oder das Land, auf das in Text- oder Audiomedien verwiesen wird. Dieses Element befindet sich auf der obersten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). Der Code sollte dem ISO 3166-Code mit zwei oder drei Buchstaben entsprechen. Der vollst\u00e4ndige Name eines Landes geh\u00f6rt in das Element "Land". +iptcxmp_iptcmodel.property.dc_description.title=Beschriftung/Beschreibung +iptcxmp_iptcmodel.property.dc_description.description=Eine Beschreibung des Elementinhalts in Textform, einschlie\u00dflich Bildunterschriften, die insbesondere verwendet wird, wenn das Objekt kein Text ist. +iptcxmp_iptcmodel.property.photoshop_Headline.title=\u00dcberschrift +iptcxmp_iptcmodel.property.photoshop_Headline.description=Eine kurze Zusammenfassung der Bildunterschrift. Die \u00dcberschrift ist nicht gleich dem Titel. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intellektuelles Genre +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Beschreibt die nat\u00fcrliche, intellektuelle, k\u00fcnstlerische oder journalistische Eigenschaft eines Elements, nicht speziell seinen Inhalt. +iptcxmp_iptcmodel.property.dc_subject.title=Stichw\u00f6rter +iptcxmp_iptcmodel.property.dc_subject.description=Stichw\u00f6rter in Bezug auf das Thema des Inhalts. Stichw\u00f6rter k\u00f6nnen freier Text sein und m\u00fcssen nicht aus einem kontrollierten Vokabular stammen. Codes aus dem kontrollierten Vokabular "IPTC Subject NewsCodes" geh\u00f6ren in das Feld "Themencode". +iptcxmp_iptcmodel.property.photoshop_State.title=Bundesland +iptcxmp_iptcmodel.property.photoshop_State.description=Der Name der Unterregion eines Landes (entweder Bundesland, Kanton oder anders genannt), worauf sich der Inhalt bezieht \u2013 entweder die in visuellen Medien dargestellte Unterregion oder die Unterregion, auf die in Text- oder Audiomedien verwiesen wird. Dieses Element befindet sich auf der zweiten Ebene einer geografischen Hierarchie (wie oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC-Szenencode +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Beschreibt die Szene eines Nachrichteninhalts. Gibt einen oder mehrere Begriffe aus "IPTC Scene-NewsCodes" an. Jede Szene wird durch eine 6-stellige Zeichenfolge in einer unsortierten Liste dargestellt. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC-Themencode +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Gibt ein oder mehrere Themen aus der "IPTC Subject-NewsCodes"-Systematik an, um den Inhalt zu kategorisieren. Jedes Thema wird durch eine 8-stellige Zeichenfolge in einer unsortierten Liste dargestellt. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Unterort +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Der Name eines Unterorts, auf den sich der Inhalt bezieht \u2013 entweder der in visuellen Medien dargestellte Ort oder der Ort, auf den Text- oder Audiomedien verweisen. Dieser Ortsname kann entweder der Name eins Unterorts einer Stadt oder der Name eines bekannten Orts oder (nat\u00fcrlichen) Denkmals sein. Im Sinne eines Unterorts einer Stadt befindet sich dieses Element auf der vierten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Datum der Erstellung +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Bezeichnet das Datum und optional die Uhrzeit der Erstellung des intellektuellen Inhalts anstatt das Erstellungsdatum der physischen Darstellung. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Verfasser der Beschriftung/Beschreibung +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Die Kennung oder der Name der Person, die f\u00fcr das Schreiben, Editieren und Korrigieren der Inhaltsbeschreibung zust\u00e4ndig ist. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Anweisungen +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Eine beliebige Anzahl von Anweisungen vom Anbieter oder Ersteller f\u00fcr den Empf\u00e4nger des Elements. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Jobkennung +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Eine Nummer oder Kennung f\u00fcr einen verbesserten Arbeitsablauf. Dies ist eine vom Benutzer erstellte Kennung in Bezug auf den Auftrag, f\u00fcr den das Element bereitgestellt wird. +iptcxmp_iptcmodel.property.dc_title.title=Titel +iptcxmp_iptcmodel.property.dc_title.description=Eine Kurzschriftreferenz f\u00fcr das Element. Der Titel gibt einen kurzen, visuell lesbaren Namen an, der ein Text und/oder eine numerische Referenz sein kann. Er gleicht nicht der \u00dcberschrift. +iptcxmp_iptcmodel.property.dc_rights.title=Copyright-Hinweis +iptcxmp_iptcmodel.property.dc_rights.description=Enth\u00e4lt jeden notwendigen Urheberrechtshinweis f\u00fcr die Beanspruchung des intellektuellen Eigentums f\u00fcr dieses Element und muss den aktuellen Eigent\u00fcmer des Urheberrechts f\u00fcr das Element identifizieren. Andere Entit\u00e4ten wie der Ersteller des Elements k\u00f6nnen im entsprechenden Feld hinzugef\u00fcgt werden. Anmerkungen zu Nutzungsrechten sollten unter "Nutzungsbedingungen" angegeben werden. +iptcxmp_iptcmodel.property.dc_creator.title=Ersteller +iptcxmp_iptcmodel.property.dc_creator.description=Enth\u00e4lt den Namen der Person, die den Inhalt dieses Elements erstellt hat (ein Fotograf f\u00fcr Fotos, ein Grafiker f\u00fcr Grafiken, ein Autor f\u00fcr Texte usw.). Wenn der Fotograf jedoch nicht angegeben werden soll, kann der Name der Firma oder Organisation angegeben werden. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Jobtitel des Erstellers +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Enth\u00e4lt den Jobtitel der Person, die den Inhalt dieses Elements erstellt hat. Da dies eine Art Qualifikator ist, muss das Element "Ersteller" als Pflichtvoraussetzung f\u00fcr die Nutzung des Jobtitels des Erstellers ausgef\u00fcllt sein. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Danksagungszeile +iptcxmp_iptcmodel.property.photoshop_Credit.description=Die Danksagung f\u00fcr Personen und/oder Organisationen, die der Anbieter des Elements bei der Ver\u00f6ffentlichung verwendet sehen will. Dies ist ein Freitextfeld. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Nutzungsbedingungen +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Die Lizenzierungsparameter des Elements als Freitext ausgedr\u00fcckt. +iptcxmp_iptcmodel.property.photoshop_Source.title=Quelle +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifiziert den urspr\u00fcnglichen Eigent\u00fcmer des Urheberrechts f\u00fcr den intellektuellen Inhalt des Elements. Das k\u00f6nnte eine Agentur, ein Mitglied einer Agentur oder eine Einzelperson sein. Die Quelle kann sich vom Ersteller und von den Entit\u00e4ten in "Copyright-Hinweis" unterscheiden. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adresse +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Die Adresse innerhalb der Kontaktinformationen bestehend aus einem optionalen Firmennamen und allen erforderlichen Informationen, um das Geb\u00e4ude oder Postfach zu finden, an das Post gesendet wird. Aus diesem Grund ist die Adresse ein mehrzeiliges Feld. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Stadt +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Die Stadt innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Das Land innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-Mail-Adresse(n) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Die E-Mail-Adresse innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefonnummer(n) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Die Telefonnummer innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postleitzahl +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Die lokale Postleitzahl innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Bundesland +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Regionale Informationen wie Bundesland oder Kanton innerhalb der Kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web-URL(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Die Website innerhalb der Kontaktinformationen. Es k\u00f6nnen mehrere, durch ein Komma getrennte Adressen angegeben werden. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Dringlichkeit +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Veraltet und au\u00dferhalb von IPTC Core. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategorie +iptcxmp_iptcmodel.property.photoshop_Category.description=Veraltet und au\u00dferhalb von IPTC Core. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Erg\u00e4nzende Kategorien +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Veraltet und au\u00dferhalb von IPTC Core. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Zus\u00e4tzliche Modellinformationen +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informationen \u00fcber die Ethnizit\u00e4t und andere Facetten des Modells/der Modelle in einem vom Modell freigegebenen Bild. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Kunstwerk oder Objekt im Bild +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Ein Metadatensatz \u00fcber ein Kunstwerk oder Objekt im Element. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Kennung der empfohlenen Organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Code aus eine kontrolliertem Vokabular zur Identifizierung der Organisation oder Firma, die im Inhalt genannt wird. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Kontrollierter Vokabularbegriff +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Ein Begriff zur Beschreibung des Bildinhalts durch einen Wert aus einem kontrollierten Vokabular. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Modellalter +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Das Alter des menschlichen Modells zum Zeitpunkt der Aufnahme des vom Modell freigegebenen Bildes. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Name der empfohlenen Organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Der Name der Organisation oder Firma, die im Inhalt genannt wird. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Gezeigte Person +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Der Name einer Person, auf die sich der Inhalt des Elements bezieht. Bei Fotos ist es eine auf dem Bild dargestellte Person. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digitale Bildkennung +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Global einheitliche Kennung f\u00fcr das Element. Sie wird vom Ersteller des Elements zum Zeitpunkt der Erstellung erstellt und angewendet. Dieser Wert darf anschlie\u00dfend nicht ge\u00e4ndert werden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Physikalischer Typ des Originalfotos +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Der Typ der digitalen Quelldatei. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Quelltyp des Fotos +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Der Typ der Quelle dieses digitalen Bildes +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Ereignis +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Benennt oder beschreibt das spezifische Ereignis, auf das sich der Inhalt bezieht. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Bildanbieter-ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifiziert den aktuellen Anbieter des Elements, der nicht unbedingt sein Eigent\u00fcmer oder Ersteller sein muss. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Name des Bildanbieters +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifiziert den aktuellen Anbieter des Elements, der nicht unbedingt sein Eigent\u00fcmer oder Ersteller sein muss. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Bild-ID des Bildanbieters +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Optionale Kennung, die der Bildanbieter dem Bild zuweist. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Zuletzt ge\u00e4nderte IPTC-Felder +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Das Datum und optional die Uhrzeit der bearbeiteten IPTC-Felder. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maximal verf\u00fcgbare H\u00f6he +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Die maximal verf\u00fcgbare H\u00f6he (in Pixel) des Originalfotos, von dem dieses Foto zur Verkleinerung stammt. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maximal verf\u00fcgbare Breite +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Die maximal verf\u00fcgbare Breite (in Pixel) des Originalfotos, von dem dieses Foto zur Verkleinerung stammt. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS-Version +iptcxmp_iptcmodel.property.plus_Version.description=Die Versionsnummer der PLUS-Standards, die zum Zeitpunkt der Transaktion galten. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=Urheberrechtsinhaber-ID(s) +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Der/die Eigent\u00fcmer des Urheberrechts im lizenzierten Bild. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Name(n) des Urheberrechtsinhabers +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Der/die Eigent\u00fcmer des Urheberrechts im lizenzierten Bild. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=Bildersteller-ID(s) +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Der/die Ersteller des Bildes. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Name(n) des Bilderstellers +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Der/die Ersteller des Bildes. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS-ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=Die ID einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Name +iptcxmp_iptcmodel.property.plus_LicensorName.description=Der Name einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Stadt +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Die Stadt einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Land +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Das Land einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-Mail-Adresse +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Die E-Mail-Adresse einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Erweiterte Adresse +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Die erweiterte Adresse einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postleitzahl +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Die Postleitzahl einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Die Region einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Stra\u00dfe +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Die Stra\u00dfe einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefon 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Die erste Telefonnummer einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefon 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Die zweite Telefonnummer einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=Die URL einer Person oder Firma, die kontaktiert werden muss, um eine Lizenz zur Nutzung des Elements zu erhalten oder die das Element lizenziert hat. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Altersangabe des Teilmodells +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Das Alter des j\u00fcngsten Modells im Bild zum Zeit der Erstellung des Bildes. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID der Modellversion +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Eine optionale Kennung in Verbindung mit jeder Modellfreigabe. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status der Modellversion +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Fasst die Verf\u00fcgbarkeit und den Umfang von Modellfreigaben zusammen, um die Nutzung der Abbildung der Personen im Foto zu autorisieren. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID der Eigentumsfreigabe +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Eine optionale Kennung in Verbindung mit jeder Eigentumsfreigabe. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status der Eigentumsfreigabe +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Fasst die Verf\u00fcgbarkeit und den Umfang von Eigentumsfreigaben zusammen, um die Nutzung der Bildrechte des Foto zu autorisieren. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Copyright-Hinweis +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Enth\u00e4lt alle notwendigen Urheberrechtshinweise f\u00fcr die Beanspruchung des intellektuellen Eigentums eines Kunstwerks oder Objekts im Bild und muss den aktuellen Eigent\u00fcmer des Urheberrechts dieses Werks mit zugeh\u00f6rigen Rechten des intellektuellen Eigentums angeben. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Ersteller +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Enth\u00e4lt den Namen des K\u00fcnstlers, der ein Kunstwerk oder Objekt im Bild erstellt hat. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Datum der Erstellung +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Gibt das Datum und optional die Uhrzeit der Erstellung des Kunstwerks oder Objekts im Bild an. Dies steht in Verbindung mit Kunstwerken oder Objekten mit zugeh\u00f6rigen Rechten des intellektuellen Eigentums. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Quelle +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Die Firma oder Institution, die das Kunstwerk oder Objekt im Bild f\u00fcr Bestandszwecke verwaltet und registriert. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Nummer des Quelllagerbestands +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Die von der Organisation oder Institution vergebene Bestandsnummer, die das Kunstwerk oder Objekt im Bild verwaltet und registriert. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titel +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Eine Referenz f\u00fcr das Kunstwerk oder Objekt im Bild. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Stadt +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Der Stadtname eines Orts. Dieses Element befindet sich auf der vierten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=ISO-L\u00e4nderkennung +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=Der ISO-Code eines Landes, in dem ein Ort liegt. Dieses Element befindet sich auf der zweiten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=L\u00e4ndername +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Der Name eines Landes, in dem ein Ort liegt. Dieses Element befindet sich auf der zweiten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Bundesland +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Der Name einer Unterregion eines Landes (ein Bundesland oder Kanton), in der ein Ort liegt. Dieses Element befindet sich auf der dritten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Unterort +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Der Name eines Unterorts. Dieser Unterortsname kann entweder der Name eines Unterorts einer Stadt oder der Name eines bekannten Orts oder (nat\u00fcrlichen) Denkmals au\u00dferhalb einer Stadt sein. Im Sinne eines Unterorts einer Stadt befindet sich dieses Element auf der f\u00fcnften Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Weltregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Der Name einer Weltregion, in der ein Ort liegt. Dieses Element befindet sich auf der ersten (topI) Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Stadt +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Der Stadtname eines Orts. Dieses Element befindet sich auf der vierten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=ISO-L\u00e4nderkennung +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=Der ISO-Code eines Landes, in dem ein Ort liegt. Dieses Element befindet sich auf der zweiten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=L\u00e4ndername +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Der Name eines Landes, in dem ein Ort liegt. Dieses Element befindet sich auf der zweiten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Bundesland +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Der Name einer Unterregion eines Landes (ein Bundesland oder Kanton), in der ein Ort liegt. Dieses Element befindet sich auf der dritten Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Unterort +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Der Name eines Unterorts. Dieser Unterortsname kann entweder der Name eines Unterorts einer Stadt oder der Name eines bekannten Orts oder (nat\u00fcrlichen) Denkmals au\u00dferhalb einer Stadt sein. Im Sinne eines Unterorts einer Stadt befindet sich dieses Element auf der f\u00fcnften Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Weltregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Der Name einer Weltregion, in der ein Ort liegt. Dieses Element befindet sich auf der ersten (topI) Ebene einer geografischen Hierarchie (von oben nach unten gesehen). +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Element-ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Eine eindeutige Kennung, die von einem Register erstellt oder vom Ersteller des Elements angewendet wurde. Dieser Wert darf nach seiner Anwendung nicht mehr ge\u00e4ndert werden. Diese Kennung ist mit einer entsprechenden Registerorganisationskennung verkn\u00fcpft. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organisations-ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Eine Kennung f\u00fcr die Registerstelle, welche die entsprechende Registerbild-ID ausgestellt hat. + + diff --git a/models/iptc/iptc-model_es.properties b/models/iptc/iptc-model_es.properties new file mode 100644 index 00000000..be1d8b69 --- /dev/null +++ b/models/iptc/iptc-model_es.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Modelo de dominio IPTC de Alfresco + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspecto IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Ciudad +iptcxmp_iptcmodel.property.photoshop_City.description=Nombre de la ciudad en la que se centra el contenido, ya sea el lugar que se muestra en los medios visuales o al que se hace referencia en los medios de texto o audio. Este elemento se encuentra en el tercer nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.photoshop_Country.title=Pa\u00eds +iptcxmp_iptcmodel.property.photoshop_Country.description=Nombre completo del pa\u00eds en el que se centra el contenido, ya sea el pa\u00eds que se muestra en los medios visuales o al que se hace referencia en los medios de texto o audio. Este elemento se encuentra en el nivel superior o primero de una jerarqu\u00eda geogr\u00e1fica descendente. El nombre debe expresarse como nombre completo y no en forma de c\u00f3digo; el c\u00f3digo se reserva para el elemento "C\u00f3digo de pa\u00eds ISO". +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=C\u00f3digo de pa\u00eds ISO +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=C\u00f3digo del pa\u00eds en el que se centra el contenido, ya sea el pa\u00eds que se muestra en los medios visuales o al que se hace referencia en los medios de texto o audio. Este elemento se encuentra en el nivel superior o primero de una jerarqu\u00eda geogr\u00e1fica descendente. El c\u00f3digo debe ser el c\u00f3digo ISO 3166 de dos o tres letras. El nombre completo de un pa\u00eds debe ir en el elemento "Pa\u00eds". +iptcxmp_iptcmodel.property.dc_description.title=Pie de foto/descripci\u00f3n +iptcxmp_iptcmodel.property.dc_description.description=Descripci\u00f3n, incluidas leyendas, del contenido del elemento, que se utiliza especialmente cuando el objeto no es texto. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Titular +iptcxmp_iptcmodel.property.photoshop_Headline.description=Breve sinopsis de la leyenda. El Titular no es lo mismo que el T\u00edtulo. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=G\u00e9nero intelectual +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Describe la naturaleza, caracter\u00edstica intelectual, art\u00edstica o period\u00edstica de un elemento; no espec\u00edficamente su contenido. +iptcxmp_iptcmodel.property.dc_subject.title=Palabras clave +iptcxmp_iptcmodel.property.dc_subject.description=Palabras clave para expresar el tema del contenido. Las palabras clave pueden ser texto libre y no tienen que proceder de un vocabulario controlado. Los c\u00f3digos del vocabulario controlado de C\u00f3digos de noticias de asuntos IPTC deben ir en el campo "C\u00f3digo de asunto". +iptcxmp_iptcmodel.property.photoshop_State.title=Provincia/Estado +iptcxmp_iptcmodel.property.photoshop_State.description=Nombre de la divisi\u00f3n regional de un pa\u00eds, ya sea una provincia, un estado o cualquier otra demarcaci\u00f3n, en la que se centra el contenido, ya sea la regi\u00f3n que se muestra en los medios visuales o a la que se hace referencia en los medios de texto o audio. Este elemento se encuentra en el segundo nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=C\u00f3digo de escena IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Describe la escena de un contenido de noticias. Especifica uno o m\u00e1s t\u00e9rminos de los "C\u00f3digos de noticias de escena" IPTC. Cada Escena se representa por medio de una cadena de 6 d\u00edgitos en una lista desordenada. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=C\u00f3digo de asunto IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Categoriza el contenido por medio de uno o m\u00e1s Asuntos de la taxonom\u00eda de C\u00f3digos de noticias de asuntos IPTC. Cada Asunto se representa por medio de una cadena de 8 d\u00edgitos en una lista desordenada. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Ubicaci\u00f3n subordinada +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Nombre de la ubicaci\u00f3n subordinada en la que se centra el contenido, ya sea la ubicaci\u00f3n que se muestra en los medios visuales o a la que se hace referencia en los medios de texto o audio. Este nombre de ubicaci\u00f3n puede ser el nombre de una ubicaci\u00f3n subordinada de una ciudad o el nombre de una ubicaci\u00f3n conocida o un monumento (natural) fuera de una ciudad. En el sentido de ubicaci\u00f3n subordinada de una ciudad, se encuentra en el cuarto nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Fecha de creaci\u00f3n +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Designa la fecha y, opcionalmente, la hora en las que se cre\u00f3 el contenido intelectual y no la fecha de creaci\u00f3n de la representaci\u00f3n f\u00edsica. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Autor del pie de foto/descripci\u00f3n +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identificador o nombre de la persona responsable de la redacci\u00f3n, edici\u00f3n o correcci\u00f3n de la descripci\u00f3n del contenido. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instrucciones +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Cualquier instrucci\u00f3n del proveedor o creador al destinatario del elemento. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identificador de trabajo +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=N\u00famero o identificador destinado a mejorar la gesti\u00f3n del flujo de trabajo. Es un identificador creado por el usuario que hace referencia al trabajo para el que se suministra el elemento. +iptcxmp_iptcmodel.property.dc_title.title=T\u00edtulo +iptcxmp_iptcmodel.property.dc_title.description=Referencia abreviada del elemento. El T\u00edtulo es un nombre breve comprensible por la mente humana que puede ser texto o una referencia num\u00e9rica. No es lo mismo que el Titular. +iptcxmp_iptcmodel.property.dc_rights.title=Nota acerca del copyright +iptcxmp_iptcmodel.property.dc_rights.description=Contiene cualquier aviso de copyright necesario para acreditar la propiedad intelectual del elemento y debe identificar al propietario actual del copyright del mismo. Se pueden agregar otras entidades como el creador del elemento en el campo correspondiente. Las notas sobre los derechos de uso deben incluirse en "Condic. uso de los derechos". +iptcxmp_iptcmodel.property.dc_creator.title=Creador +iptcxmp_iptcmodel.property.dc_creator.description=Nombre de la persona que cre\u00f3 el contenido del elemento: un fot\u00f3grafo en el caso de fotograf\u00edas, un artista gr\u00e1fico en el de gr\u00e1ficos y un escritor en el de art\u00edculos; si no debe identificarse al fot\u00f3grafo, el nombre de una empresa u organizaci\u00f3n puede ser suficiente. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Cargo del creador +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Indica el cargo de la persona que cre\u00f3 el contenido del elemento. Como se trata de un calificador del elemento Creador, este debe rellenarse como requisito previo obligatorio para utilizar Cargo del creador. +iptcxmp_iptcmodel.property.photoshop_Credit.title=L\u00ednea de reconocimiento +iptcxmp_iptcmodel.property.photoshop_Credit.description=El reconocimiento a persona(s) u organizaci\u00f3n(es) exigido por el proveedor del elemento que debe incluirse cuando se publica dicho elemento. Se trata de un campo de texto libre. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Condic. uso de los derechos +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Los par\u00e1metros de licencia del elemento expresados en texto libre. +iptcxmp_iptcmodel.property.photoshop_Source.title=Origen +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifica al propietario original del copyright del contenido intelectual del elemento. Puede ser una agencia, un miembro de una agencia o un individuo. La fuente puede ser distinta a la indicada en Creador y a las entidades indicadas en Nota acerca del copyright. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Direcci\u00f3n +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=La secci\u00f3n de la direcci\u00f3n que contiene la informaci\u00f3n de contacto. Incluye un nombre de empresa opcional y toda la informaci\u00f3n necesaria para ubicar el edificio o el buz\u00f3n de correos al que debe enviarse el correo. Se trata de un campo de varias l\u00edneas. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Ciudad +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica la ciudad. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica el pa\u00eds. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=Correo electr\u00f3nico(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica el correo electr\u00f3nico. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Tel\u00e9fono(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica el n\u00famero de tel\u00e9fono. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=C\u00f3digo postal +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica el c\u00f3digo postal. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Estado/Provincia +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica los datos de la regi\u00f3n, por ejemplo, el estado o la provincia +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=URL de web +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=La secci\u00f3n de la informaci\u00f3n de contacto que indica la direcci\u00f3n web. Pueden incluirse varias direcciones, separadas por una coma. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Urgencia +iptcxmp_iptcmodel.property.photoshop_Urgency.description=En desuso y fuera del N\u00facleo IPTC. +iptcxmp_iptcmodel.property.photoshop_Category.title=Categor\u00eda +iptcxmp_iptcmodel.property.photoshop_Category.description=En desuso y fuera del N\u00facleo IPTC. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Categor\u00edas complementarias +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=En desuso y fuera del N\u00facleo IPTC. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Informaci\u00f3n de modelo adicional +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informaci\u00f3n sobre el origen \u00e9tnico y otros aspectos de los modelos en im\u00e1genes publicadas en las que aparezcan modelos. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Ilustraci\u00f3n u objeto en la imagen +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Conjunto de metadatos sobre la ilustraci\u00f3n o el objeto que se muestra en el elemento. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=C\u00f3digo de organizaci\u00f3n destacada +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=C\u00f3digo de un vocabulario controlado para identificar la organizaci\u00f3n o empresa que aparece en el contenido. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=T\u00e9rmino de vocabulario controlado +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=T\u00e9rmino que describe el contenido de la imagen mediante un valor de un vocabulario controlado. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Edad del modelo +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Edad de los modelos en el momento en que se capt\u00f3 la imagen en im\u00e1genes con modelos publicadas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Nombre de organizaci\u00f3n destacada +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Nombre de la organizaci\u00f3n o empresa que aparece en el contenido. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Persona mostrada +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Nombre de la persona de la que trata el contenido del elemento. En las fotograf\u00edas, la persona que se muestra en la imagen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identificador de imagen digital +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Identificador \u00fanico global del elemento. Lo genera y aplica el creador del elemento en el momento de la creaci\u00f3n de este y no puede modificarse posteriormente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Tipo f\u00edsico de foto original +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=El tipo del archivo digital de origen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Tipo de origen de foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=El tipo del original de la imagen digital. +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Evento +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Nombra o describe el evento espec\u00edfico con el que se relaciona el contenido. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID del proveedor de imagen +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifica al proveedor m\u00e1s reciente del elemento; puede ser distinto de su propietario y creador. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Nombre de proveedor de imagen +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifica al proveedor m\u00e1s reciente del elemento; puede ser distinto de su propietario y creador. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=ID de imagen de proveedor de imagen +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Identificador opcional asignado a la imagen por el proveedor de la misma. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=\u00daltimos campos IPTC editados +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=La fecha y, opcionalmente, la hora en las que se edit\u00f3 cualquiera de los campos IPTC. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Altura m\u00e1xima disponible +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=La altura m\u00e1xima disponible en p\u00edxeles de la fotograf\u00eda original de la que se ha obtenido esta otra mediante la reducci\u00f3n de tama\u00f1o. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Anchura m\u00e1xima disponible +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=La anchura m\u00e1xima disponible en p\u00edxeles de la fotograf\u00eda original de la que se ha obtenido esta otra mediante la reducci\u00f3n de tama\u00f1o. +iptcxmp_iptcmodel.property.plus_Version.title=Versi\u00f3n PLUS +iptcxmp_iptcmodel.property.plus_Version.description=El n\u00famero de versi\u00f3n de los est\u00e1ndares PLUS vigentes en el momento de la transacci\u00f3n. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID del propietario de copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Propietario o propietarios del copyright de la imagen con licencia. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Nombre del propietario de copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Propietario o propietarios del copyright de la imagen con licencia. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID del creador de la imagen +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Creador o creadores de la imagen. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Nombre del creador de imagen +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Creador o creadores de la imagen. +iptcxmp_iptcmodel.property.plus_LicensorID.title=ID PLUS +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nombre +iptcxmp_iptcmodel.property.plus_LicensorName.description=Nombre de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Ciudad +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Ciudad de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Pa\u00eds +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Pa\u00eds de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=Correo electr\u00f3nico +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Correo electr\u00f3nico de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Direcci\u00f3n completa +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Direcci\u00f3n completa de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=C\u00f3digo postal +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=C\u00f3digo postal de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Regi\u00f3n +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Regi\u00f3n de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Direcci\u00f3n +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Calle y n\u00famero de edificio de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Tel\u00e9fono 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Tel\u00e9fono 1 de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Tel\u00e9fono 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Tel\u00e9fono 2 de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL de la persona o empresa que ha concedido la licencia del elemento o con la que ponerse en contacto para obtener la licencia de uso del elemento. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Revelaci\u00f3n de edad del modelo menor +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Edad del modelo m\u00e1s joven que aparece en la imagen en el momento en que se capt\u00f3 la imagen. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID de la cesi\u00f3n de derechos de imagen +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Identificador opcional asociado a cada formulario de cesi\u00f3n de derechos de imagen de los modelos. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Estado de la cesi\u00f3n de derechos de imagen +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Resume la disponibilidad y el alcance de las autorizaciones de cesi\u00f3n de los derechos de imagen de los modelos que aparecen en la fotograf\u00eda. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID de la cesi\u00f3n de derechos de propiedad +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Identificador opcional asociado a cada autorizaci\u00f3n de cesi\u00f3n de los derechos de propiedad. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Estado de la cesi\u00f3n de derechos de propiedad +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Resume la disponibilidad y el alcance de las autorizaciones de cesi\u00f3n de los derechos de propiedad que permiten el uso de las propiedades que aparecen en la fotograf\u00eda. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Nota acerca del copyright +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Contiene cualquier aviso de copyright necesario para determinar la propiedad intelectual de una ilustraci\u00f3n o un objeto que aparece en la imagen, y debe identificar al propietario actual del copyright de dicha ilustraci\u00f3n u objeto con los correspondientes derechos de propiedad intelectual asociados. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Creador +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Indica el nombre del artista que ha creado la ilustraci\u00f3n o el objeto que aparece en la imagen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Fecha de creaci\u00f3n +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Designa la fecha y, opcionalmente, la hora en las que se cre\u00f3 la ilustraci\u00f3n o el objeto que aparece en la imagen. Es aplicable a las ilustraciones o los objetos con derechos de propiedad intelectual asociados. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Origen +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=La organizaci\u00f3n o el organismo titular de la ilustraci\u00f3n o del objeto que aparecen en la imagen o que los registra a efectos de inventario. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=N\u00famero de inventario de origen +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=El n\u00famero de inventario emitido por la organizaci\u00f3n o el organismo que es titular de la ilustraci\u00f3n o el objeto que aparece en la imagen o que los registra. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=T\u00edtulo +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Referencia de la ilustraci\u00f3n o del objeto que aparece en la imagen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Ciudad +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Nombre de la ciudad de una ubicaci\u00f3n. Este elemento se encuentra en el cuarto nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=C\u00f3digo ISO del pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=C\u00f3digo ISO de un pa\u00eds de una ubicaci\u00f3n. Este elemento se encuentra en el segundo nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Nombre del pa\u00eds de una ubicaci\u00f3n. Este elemento se encuentra en el segundo nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provincia/Estado +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Nombre de una regi\u00f3n de un pa\u00eds (una provincia o estado) de una ubicaci\u00f3n. Este elemento se encuentra en el tercer nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Ubicaci\u00f3n subordinada +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Nombre de una ubicaci\u00f3n subordinada. Este nombre de ubicaci\u00f3n subordinada puede ser el nombre de una ubicaci\u00f3n subordinada de una ciudad o el nombre de una ubicaci\u00f3n conocida o un monumento (natural) fuera de una ciudad. En el sentido de una ubicaci\u00f3n subordinada de una ciudad, este elemento se encuentra en el quinto nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Regi\u00f3n mundial +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Nombre de una regi\u00f3n mundial de una ubicaci\u00f3n. Este elemento se encuentra en el primer nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Ciudad +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Nombre de la ciudad de una ubicaci\u00f3n. Este elemento se encuentra en el cuarto nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=C\u00f3digo ISO del pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=C\u00f3digo ISO de un pa\u00eds de una ubicaci\u00f3n. Este elemento se encuentra en el segundo nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Nombre del pa\u00eds de una ubicaci\u00f3n. Este elemento se encuentra en el segundo nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provincia/Estado +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Nombre de una regi\u00f3n de un pa\u00eds (una provincia o estado) de una ubicaci\u00f3n. Este elemento se encuentra en el tercer nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Ubicaci\u00f3n subordinada +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Nombre de una ubicaci\u00f3n subordinada. Este nombre de ubicaci\u00f3n subordinada puede ser el nombre de una ubicaci\u00f3n subordinada de una ciudad o el nombre de una ubicaci\u00f3n conocida o un monumento (natural) fuera de una ciudad. En el sentido de una ubicaci\u00f3n subordinada de una ciudad, este elemento se encuentra en el quinto nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Regi\u00f3n mundial +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Nombre de una regi\u00f3n mundial de una ubicaci\u00f3n. Este elemento se encuentra en el primer nivel de una jerarqu\u00eda geogr\u00e1fica descendente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identificador de elemento +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Identificador \u00fanico creado por una organizaci\u00f3n de registro y aplicado por el creador del elemento. No puede modificarse despu\u00e9s de su aplicaci\u00f3n. Este identificador est\u00e1 vinculado al correspondiente identificador de organizaci\u00f3n de registro. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identificador de organizaci\u00f3n +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Identificador de la organizaci\u00f3n de registro que emiti\u00f3 el correspondiente ID de imagen de organizaci\u00f3n de registro. + + diff --git a/models/iptc/iptc-model_fi.properties b/models/iptc/iptc-model_fi.properties new file mode 100644 index 00000000..1c0e50b6 --- /dev/null +++ b/models/iptc/iptc-model_fi.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfrescon IPTC-toimialuemalli + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-ominaisuusjoukko +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Kaupunki +iptcxmp_iptcmodel.property.photoshop_City.description=Sis\u00e4ll\u00f6n aiheena olevan kaupungin nimi -- paikka joko n\u00e4kyy visuaalisessa muodossa, tai siihen viitataan tekstiss\u00e4 tai \u00e4\u00e4nitiedostossa. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian kolmannella tasolla. +iptcxmp_iptcmodel.property.photoshop_Country.title=Maa +iptcxmp_iptcmodel.property.photoshop_Country.description=Sis\u00e4ll\u00f6n aiheena olevan maan koko nimi -- maa joko n\u00e4kyy visuaalisessa muodossa, tai siihen viitataan tekstiss\u00e4 tai \u00e4\u00e4nitiedostossa. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian ylimm\u00e4ll\u00e4 tasolla. Maan nimi tulee olla sanallisessa muodossa, ei tunnuksena. Tunnuksen voi lis\u00e4t\u00e4 elementtiin "Maatunnus". +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO maatunnus +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Sis\u00e4ll\u00f6n aiheena olevan maan tunnus -- maa joko n\u00e4kyy visuaalisessa muodossa, tai siihen viitataan tekstiss\u00e4 tai \u00e4\u00e4nitiedostossa. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian ylimm\u00e4ll\u00e4 tasolla. Tunnuksen tulee olla ISO 3166 -standardin mukainen kaksi- tai kolmenumeroinen tunnus. Maan koko nimen voi lis\u00e4t\u00e4 elementtiin "Maa". +iptcxmp_iptcmodel.property.dc_description.title=Kuvateksti/kuvaus +iptcxmp_iptcmodel.property.dc_description.description=Kohteen sis\u00e4ll\u00f6n sanallinen kuvaus, mukaanlukien kuvatekstit. K\u00e4ytet\u00e4\u00e4n erityisesti ei-tekstillisen sis\u00e4ll\u00f6n kanssa. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Aihe +iptcxmp_iptcmodel.property.photoshop_Headline.description=Kuvauksen lyhyt yhteenveto. Aihe ei ole sama kuin Otsikko. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=\u00c4lyllinen laji +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Kuvaa kohteen luonnetta ja sen \u00e4lyllisi\u00e4, taiteellisia tai journalistisia ominaisuuksia. Ei kuvaa kohteen sis\u00e4lt\u00f6\u00e4. +iptcxmp_iptcmodel.property.dc_subject.title=Avainsanat +iptcxmp_iptcmodel.property.dc_subject.description=Avainsanat, jotka kuvaavat sis\u00e4ll\u00f6n aihetta. Avainsanat voivat olla vapaata teksti\u00e4, eik\u00e4 niiden tarvitse kuulua hallittuun sanastoon. IPTC:n Subject NewsCodes -sanastoon kuuluvat tunnukset tulee lis\u00e4t\u00e4 "Aihetunnus"-kentt\u00e4\u00e4n. +iptcxmp_iptcmodel.property.photoshop_State.title=Provinssi/osavaltio +iptcxmp_iptcmodel.property.photoshop_State.description=Sis\u00e4ll\u00f6n aiheena olevan maan alueen -- provinssi, osavaltio, tai muu alue -- nimi. Alue n\u00e4kyy joko visuaalisessa muodossa, tai siihen viitataan tekstiss\u00e4 tai \u00e4\u00e4nitiedostossa. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian toisella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC Kohtaustunnus +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Kuvailee uutissis\u00e4ll\u00f6n kohtausta. M\u00e4\u00e4ritt\u00e4\u00e4 yhden tai useamman termin IPTC:n "Scene-NewsCodes"-tunnuksista. Jokaista kohtausta vastaa kuuden numeron sarja satunnaisessa j\u00e4rjestyksess\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC Aihetunnus +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=M\u00e4\u00e4ritt\u00e4\u00e4 yhden tai useamman aiheen IPTC:n Subject-NewsCodes-luokittelusta sis\u00e4ll\u00f6n lajittelemiseksi. Jokaista aihetta vastaa kahdeksan numeron sarja satunnaisessa j\u00e4rjestyksess\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Alasijainti +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Sis\u00e4ll\u00f6n aiheena olevan alasijainnin nimi -- paikka joko n\u00e4kyy visuaalisessa muodossa, tai siihen viitataan tekstiss\u00e4 tai \u00e4\u00e4nitiedostossa. T\u00e4m\u00e4 sijainnin nimi voi olla kaupungin alasijainnin nimi, tai tunnetun paikan tai monumentin nimi kaupungin ulkopuolella. Jos kyse on kaupungin alasijainnista, t\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian nelj\u00e4nnell\u00e4 tasolla. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Luontip\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=M\u00e4\u00e4ritt\u00e4\u00e4 \u00e4lyllisen sis\u00e4ll\u00f6n luontip\u00e4iv\u00e4m\u00e4\u00e4r\u00e4n ja valinnaisesti luontiajan, eik\u00e4 fyysisen objektin luontip\u00e4iv\u00e4m\u00e4\u00e4r\u00e4\u00e4. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Kuvatekstin/kuvauksen kirjoittaja +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Tunniste, jolla viitataan sis\u00e4ll\u00f6n kuvauksen kirjoittajaan, muokkaajaan, tai korjaajaan. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Ohjeet +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Mik\u00e4 tahansa kohteen tarjoajan tai luojan kohteen saajalle tekemist\u00e4 ohjeista. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Ty\u00f6n tunniste +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Numero tai tunniste ty\u00f6nkulun hallitsemisen helpottamiseksi. K\u00e4ytt\u00e4j\u00e4 luo tunnisteen ty\u00f6lle, johon kohde liittyy. +iptcxmp_iptcmodel.property.dc_title.title=Otsikko +iptcxmp_iptcmodel.property.dc_title.description=Lyhyt viittaus kohteelle. Otsikko on lyhyt nimi, jonka ihminen pystyy lukemaan. Se voi olla sanallinen ja/tai numeerinen viittaus. Otsikko on eri kuin aihe. +iptcxmp_iptcmodel.property.dc_rights.title=Tekij\u00e4noikeushuomautus +iptcxmp_iptcmodel.property.dc_rights.description=Sis\u00e4lt\u00e4\u00e4 tarvittavan tekij\u00e4noikeushuomautuksen t\u00e4m\u00e4n kohteen \u00e4lyllisen omaisuuden vaatimiseksi, ja tunnistaa kohteen tekij\u00e4noikeuden nykyisen omistajan. Muut yksik\u00f6t, kuten kohteen luoja, voidaan lis\u00e4t\u00e4 niille tarkoitettuihin kenttiin. K\u00e4ytt\u00f6oikeuksiin liittyv\u00e4t merkinn\u00e4t tulee lis\u00e4t\u00e4 kohdassa "K\u00e4ytt\u00f6oikeusehdot". +iptcxmp_iptcmodel.property.dc_creator.title=Luoja +iptcxmp_iptcmodel.property.dc_creator.description=Sis\u00e4lt\u00e4\u00e4 kohteen sis\u00e4ll\u00f6n luojan nimen, kuvan valokuvaajan nimen, grafiikan piirt\u00e4j\u00e4n nimen, tai tekstillisen uutisen kirjoittajan nimen. Jos valokuvaajan nime\u00e4 ei saa julkistaa, voidaan k\u00e4ytt\u00e4\u00e4 yrityksen tai j\u00e4rjest\u00f6n nime\u00e4. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Luojan ammattinimike +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Sis\u00e4lt\u00e4\u00e4 kohteen sis\u00e4ll\u00f6n luojan ammattinimikkeen. T\u00e4m\u00e4 on tarkenne, joten Luoja-elementti tulee olla t\u00e4ytetty ensin, jotta ammattinimikkeen voi lis\u00e4t\u00e4. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Kunniamerkki +iptcxmp_iptcmodel.property.photoshop_Credit.description=Kohteen tarjoajan edellytt\u00e4m\u00e4 kunnia, joka annetaan henkil\u00f6lle tai j\u00e4rjest\u00f6lle, ja k\u00e4ytet\u00e4\u00e4n kun kohde julkaistaan. T\u00e4m\u00e4 on vapaasti t\u00e4ytett\u00e4v\u00e4 kenttt\u00e4. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=K\u00e4ytt\u00f6oikeusehdot +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Vapaasti t\u00e4ytett\u00e4v\u00e4ss\u00e4 kent\u00e4ss\u00e4 ilmoitetun kohteen lisensointiehdot. +iptcxmp_iptcmodel.property.photoshop_Source.title=L\u00e4hde +iptcxmp_iptcmodel.property.photoshop_Source.description=M\u00e4\u00e4ritt\u00e4\u00e4 kohteen \u00e4lyllisen sis\u00e4ll\u00f6n tekij\u00e4noikeuden alkuper\u00e4isen omistajan. T\u00e4m\u00e4 voi olla virasto, viraston j\u00e4sen, tai yksityishenkil\u00f6. L\u00e4hde voi olla eri kuin luoja ja tekij\u00e4noikeushuomautus-kent\u00e4ss\u00e4 mainitut tahot. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Osoite +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Yhteystietojen osoitekentt\u00e4. Sis\u00e4lt\u00e4\u00e4 valinnaisen yhti\u00f6nimen ja kaikki rakennuksen tai postilokeron tarvittavat tiedot postin l\u00e4hett\u00e4miseksi. T\u00e4st\u00e4 syyst\u00e4 osoitekent\u00e4ss\u00e4 on useampi rivi. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Kaupunki +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Yhteystietojen kaupunkikentt\u00e4 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Maa +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Yhteystietojen maakentt\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=S\u00e4hk\u00f6posti(t) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Yhteystietojen s\u00e4hk\u00f6postiosoitekentt\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Puhelinnumero(t) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Yhteystietojen puhelinnumerokentt\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postinumero +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Yhteystietojen kentt\u00e4, joka osoittaa paikallisen postinumeron. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Osavaltio/provinssi +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Yhteystietojen kentt\u00e4, joka osoittaa paikallisia tietoja kuten osavaltion tai provinssin. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web-osoite/osoitteet +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Yhteystietojen web-osoitekentt\u00e4. Voit lis\u00e4t\u00e4 useamman osoitteen, jos erotat ne pilkulla. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Kiireellisyys +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Vanhentunut ja IPTC Core -standardin ulkopuolella. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategoria +iptcxmp_iptcmodel.property.photoshop_Category.description=Vanhentunut ja IPTC Core -standardin ulkopuolella. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Lis\u00e4kategoriat +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Vanhentunut ja IPTC Core -standardin ulkopuolella. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=T\u00e4ydent\u00e4v\u00e4t mallitiedot +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Tietoja mallien etnisyydest\u00e4 ja muista ominaisuuksista, mallin julkaisemassa kuvassa. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Kuvassa oleva taideteos tai esine +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Kohteessa olevan taideteoksen tai esineen metetiedot +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Kyseess\u00e4 olevan j\u00e4rjest\u00f6n tunnus +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Hallittuun sanastoon kuuluva tunnus, jolla tunnistetaan sis\u00e4ll\u00f6ss\u00e4 esiintyv\u00e4 j\u00e4rjest\u00f6 tai yritys. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Hallitun sanaston termi +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Hallittuun sanastoon kuuluva termi, jolla kuvaillaan kuvan sis\u00e4lt\u00f6\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Mallin ik\u00e4 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Ihmismalli(e)n ik\u00e4 kuvanottohetkell\u00e4, mallin julkaisemassa kuvassa. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Kyseess\u00e4 olevan j\u00e4rjest\u00f6n nimi +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Sis\u00e4ll\u00f6ss\u00e4 esiintyv\u00e4n j\u00e4rjest\u00f6n tai yrityksen nimi. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=N\u00e4ytetty henkil\u00f6 +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Kohteen sis\u00e4ll\u00f6ss\u00e4 esiintyv\u00e4n henkil\u00f6n nimi. Valokuvien kohdalla t\u00e4m\u00e4 on kuvassa n\u00e4kyv\u00e4 henkil\u00f6. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digitaalisen kuvan tunniste +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Maailmanlaajuisesti ainutlaatuinen tunniste kohteelle. Tunnisteen luo kohteen luoja luomishetkell\u00e4, jonka j\u00e4lkeen t\u00e4t\u00e4 arvoa ei voi muuttaa. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Alkuper\u00e4isen kuvan fyysinen tyyppi +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Digitaalisen l\u00e4hdetiedoston tyyppi +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Kuvan l\u00e4hteen tyyppi +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=T\u00e4m\u00e4n digitaalisen kuvan l\u00e4hteen tyyppi +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Tapahtuma +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Nime\u00e4\u00e4 tai kuvailee tapahtumaa, johon sis\u00e4lt\u00f6 viittaa. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Kuvan tarjoajan identiteetti +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=M\u00e4\u00e4ritt\u00e4\u00e4 kohteen viimeisimm\u00e4n tarjoajan, joka ei v\u00e4ltt\u00e4m\u00e4tt\u00e4 ole sama kuin sen omistaja tai luoja. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Kuvan tarjoajan nimi +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=M\u00e4\u00e4ritt\u00e4\u00e4 kohteen viimeisimm\u00e4n tarjoajan, joka ei v\u00e4ltt\u00e4m\u00e4tt\u00e4 ole sama kuin sen omistaja tai luoja. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Kuvan tarjoajan kuvatunniste +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Valinnainen tunniste, jonka kuvan tarjoaja voi antaa kuvalle. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Viimeksi muokatut IPTC-kent\u00e4t +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=P\u00e4iv\u00e4 ja valinnaisesti aika, jolloin IPTC-kentti\u00e4 muokattiin +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Suurin mahdollinen korkeus +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=T\u00e4m\u00e4n pienennetyn kuvan alkuper\u00e4iskuvan suurin mahdollinen korkeus pikseleiss\u00e4. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Suurin mahdollinen leveys +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=T\u00e4m\u00e4n pienennetyn kuvan alkuper\u00e4iskuvan suurin mahdollinen leveys pikseleiss\u00e4. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS-versio +iptcxmp_iptcmodel.property.plus_Version.description=Liiketapahtuman aikaan k\u00e4yt\u00f6ss\u00e4 ollut PLUS-standardien versionumero. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=Tekij\u00e4noikeuksien omistajan/omistajien identiteetti/identiteetit +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Lisensoidun kuvan tekij\u00e4noikeuksien omistaja tai omistajat. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Tekij\u00e4noikeuksien omistajan nimi/nimet +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Lisensoidun kuvan tekij\u00e4noikeuksien omistaja tai omistajat. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=Kuvan luojan identiteetti +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Kuvan luoja tai luojat +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Kuvan luojan nimi/nimet +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Kuvan luoja tai luojat. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS-identiteetti +iptcxmp_iptcmodel.property.plus_LicensorID.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen identiteetti. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nimi +iptcxmp_iptcmodel.property.plus_LicensorName.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen nimi. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Kaupunki +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen kotikaupunki. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Maa +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen kotimaa. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=S\u00e4hk\u00f6posti +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen s\u00e4hk\u00f6postiosoite. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Koko osoite +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen koko osoite. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postinumero +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen postinumero. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Alue +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen alue. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Katuosoite +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen katuosoite. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Puhelinnumero 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen puhelinnumero 1. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Puhelinnumero 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen puhelinnumero 2. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=Web-osoite +iptcxmp_iptcmodel.property.plus_LicensorURL.description=Kohteen lisensoineen tai sen lisenssist\u00e4 vastaavan henkil\u00f6n tai yrityksen web-osoite. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Alaik\u00e4isen mallin ik\u00e4tiedot +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Nuorimman kuvassa esiintyv\u00e4n mallin ik\u00e4 kuvanottohetkell\u00e4. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=Mallijulkaisun tunniste +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Jokaisen mallijulkaisun yhteydess\u00e4 oleva valinnainen tunniste. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Mallijulkaisun tila +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Tiivist\u00e4\u00e4 mallijulkaisujen saatavuuden ja ulottuvuuden. Mallijulkaisut valtuuttavat valokuvassa esiintyvien henkil\u00f6iden n\u00e4k\u00f6isyyden k\u00e4yt\u00f6n. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=Omaisuusjulkaisun tunniste +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Jokaisen omaisuusjulkaisun yhteydess\u00e4 oleva valinnainen tunniste. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Omaisuusjulkaisun tila +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Tiivist\u00e4\u00e4 omaisuusjulkaisujen saatavuuden ja ulottuvuuden. Omaisuusjulkaisut valtuuttavat valokuvassa esiintyvien omaisuuksien k\u00e4yt\u00f6n. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Tekij\u00e4noikeushuomautus +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Sis\u00e4lt\u00e4\u00e4 tarvittavan tekij\u00e4noikeushuomautuksen taideteoksen tai kuvan objektin \u00e4lyllisen omaisuuden vaatimiseksi, ja tunnistaa kohteen tekij\u00e4noikeuden nykyisen omistajan ja asianmukaiset immateriaalioikeudet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Luoja +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Sis\u00e4lt\u00e4\u00e4 sen taiteilijan nimen, joka on luonut kuvassa olevan taideteoksen tai objektin. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Luontip\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=M\u00e4\u00e4ritt\u00e4\u00e4 kuvassa olevan taideteoksen tai objektin luontip\u00e4iv\u00e4m\u00e4\u00e4r\u00e4n ja valinnaisesti luontiajan. T\u00e4m\u00e4 koskee taideteoksia ja objekteja, joilla on asianmukaiset immateriaalioikeudet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=L\u00e4hde +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=J\u00e4rjest\u00f6 tai organisaatio, joka s\u00e4ilytt\u00e4\u00e4 ja rekister\u00f6i kuvassa olevan taideteoksen tai objektin inventaariota varten. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=L\u00e4hteen inventaarionumero +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Inventaarionumoero, jonka on antanut j\u00e4rjest\u00f6 tai organisaatio, joka s\u00e4ilytt\u00e4\u00e4 ja rekister\u00f6i kuvassa olevan taideteoksen tai objektin. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Otsikko +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Viittaus kuvassa olevaan taideteokseen tai objektiin. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Kaupunki +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Sijainnin kaupungin nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian nelj\u00e4nnell\u00e4 tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Maan ISO-tunnus +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=Sijainnin maan ISO-tunnus. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian toisella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Maan nimi +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Sijainnin maan nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian toisella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provinssi/osavaltio +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Sijainnin maan alueen - provinssi tai osavaltio - nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian kolmannella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Alasijainti +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Alasijainnin nimi. T\u00e4m\u00e4 sijainnin nimi voi olla kaupungin alasijainnin nimi, tai tunnetun paikan tai monumentin nimi kaupungin ulkopuolella. Jos kyse on kaupungin alasijainnista, t\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian viidennell\u00e4 tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Maailman alue +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Sijainnin maailman alueen nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian ylimm\u00e4ll\u00e4 (topI) tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Kaupunki +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Sijainnin kaupungin nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian nelj\u00e4nnell\u00e4 tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Maan ISO-tunnus +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=Sijainnin maan ISO-tunnus. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian toisella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Maan nimi +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Sijainnin maan nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian toisella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provinssi/osavaltio +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Sijainnin maan alueen - provinssi tai osavaltio - nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian kolmannella tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Alasijainti +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Alasijainnin nimi. T\u00e4m\u00e4 sijainnin nimi voi olla kaupungin alasijainnin nimi, tai tunnetun paikan tai monumentin nimi kaupungin ulkopuolella. Jos kyse on kaupungin alasijainnista, t\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian viidennell\u00e4 tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Maailman alue +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Sijainnin maailman alueen nimi. T\u00e4m\u00e4 elementti on maantieteellisen ylh\u00e4\u00e4lt\u00e4 alas -hierarkian ylimm\u00e4ll\u00e4 (topI) tasolla. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Kohteen tunniste +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Rekisteriviraston luoma ja kohteen luojan soveltama ainutlaatuinen tunniste. T\u00e4t\u00e4 arvoa ei tule muuttaa soveltamisen j\u00e4lkeen. T\u00e4m\u00e4 tunniste littyy vastaavaan rekisteriviraston tunnisteeseen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Rekisteriviraston tunniste +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Kuvan tunnisteen luoneen rekisteriviraston tunniste. + + diff --git a/models/iptc/iptc-model_fr.properties b/models/iptc/iptc-model_fr.properties new file mode 100644 index 00000000..7241ff8e --- /dev/null +++ b/models/iptc/iptc-model_fr.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Mod\u00e8le de domaine IPTC Alfresco + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspect IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Ville +iptcxmp_iptcmodel.property.photoshop_City.description=Nom de la ville \u00e0 laquelle le contenu est consacr\u00e9 -- endroit repr\u00e9sent\u00e9 visuellement ou cit\u00e9 dans un texte ou un contenu audio. Cet \u00e9l\u00e9ment se situe au niveau trois d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.photoshop_Country.title=Pays +iptcxmp_iptcmodel.property.photoshop_Country.description=Nom complet du pays auquel le contenu est consacr\u00e9 -- pays repr\u00e9sent\u00e9 visuellement ou cit\u00e9 dans un texte ou un contenu audio. Cet \u00e9l\u00e9ment se situe au premier niveau (le plus haut) d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. Le nom complet doit \u00eatre exprim\u00e9 sous forme verbale et non de code, le code \u00e9tant r\u00e9serv\u00e9 \u00e0 l'\u00e9l\u00e9ment "Code du pays" +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=Code ISO du pays +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Code du pays auquel le contenu est consacr\u00e9 -- pays repr\u00e9sent\u00e9 visuellement ou cit\u00e9 dans un texte ou un contenu audio. Cet \u00e9l\u00e9ment se situe au premier niveau (le plus haut) d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. Le code doit \u00eatre un code ISO\u00a03166 de deux ou trois lettres. Le nom complet d'un pays est r\u00e9serv\u00e9 \u00e0 l'\u00e9l\u00e9ment "Pays". +iptcxmp_iptcmodel.property.dc_description.title=L\u00e9gende/Description +iptcxmp_iptcmodel.property.dc_description.description=Une description r\u00e9dig\u00e9e (avec l\u00e9gendes) du contenu de l'\u00e9l\u00e9ment, utilis\u00e9e en particulier quand l'objet n'est pas du texte. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Manchette +iptcxmp_iptcmodel.property.photoshop_Headline.description=Un court r\u00e9sum\u00e9 de la l\u00e9gende. La manchette est diff\u00e9rente du titre. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Genre intellectuel +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=D\u00e9crit la nature, la caract\u00e9ristique intellectuelle, artistique ou journalistique d'un \u00e9l\u00e9ment, et pas sp\u00e9cifiquement son contenu. +iptcxmp_iptcmodel.property.dc_subject.title=Mots cl\u00e9s +iptcxmp_iptcmodel.property.dc_subject.description=Mots cl\u00e9s pour exprimer le sujet du contenu. Les mots cl\u00e9s peuvent \u00eatre du texte libre et n'ont pas besoin d'appartenir \u00e0 un vocabulaire normalis\u00e9. Les codes appartenant au vocabulaire normalis\u00e9 des codes sujets d'actualit\u00e9 IPTC sont \u00e0 indiquer dans le champ "Code sujet". +iptcxmp_iptcmodel.property.photoshop_State.title=Province/Etat +iptcxmp_iptcmodel.property.photoshop_State.description=Nom de la r\u00e9gion secondaire du pays -- province, Etat ou autre -- auquel le contenu est consacr\u00e9 -- r\u00e9gion secondaire repr\u00e9sent\u00e9e visuellement ou cit\u00e9e dans un texte ou un contenu audio. Cet \u00e9l\u00e9ment se situe au niveau deux d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=Code sc\u00e8ne IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=D\u00e9crit la sc\u00e8ne d'un contenu d'actualit\u00e9. Sp\u00e9cifie un ou plusieurs termes des "codes sc\u00e8nes d'actualit\u00e9" IPTC. Chaque sc\u00e8ne est repr\u00e9sent\u00e9e sous la forme d'une cha\u00eene de 6\u00a0chiffres dans une liste non tri\u00e9e. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=Code sujet IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Sp\u00e9cifie un ou plusieurs sujets de la taxonomie des codes sujets d'actualit\u00e9 IPTC pour cat\u00e9goriser le contenu. Chaque sujet est repr\u00e9sent\u00e9 sous la forme d'une cha\u00eene de 8\u00a0chiffres dans une liste non tri\u00e9e. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Lieu secondaire +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Nom du lieu secondaire auquel le contenu est consacr\u00e9 -- lieu repr\u00e9sent\u00e9 visuellement ou cit\u00e9 dans un texte ou un contenu audio. Ce nom de lieu peut \u00eatre le nom d'un lieu secondaire d'une ville ou le nom d'un lieu ou d'un monument (naturel) c\u00e9l\u00e8bre en dehors d'une ville. En tant que lieu secondaire d'une ville, cet \u00e9l\u00e9ment se situe au niveau quatre d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Date de cr\u00e9ation +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=D\u00e9signe la date et \u00e9ventuellement l'heure auxquelles le contenu intellectuel a \u00e9t\u00e9 cr\u00e9\u00e9 plut\u00f4t que la date de cr\u00e9ation de la repr\u00e9sentation physique. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Auteur de la l\u00e9gende/description +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifiant ou nom de la personne impliqu\u00e9e dans la r\u00e9daction, la modification ou la correction de la description du contenu. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instructions +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Une ou plusieurs instructions du fournisseur ou du cr\u00e9ateur \u00e0 l'intention du destinataire de l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identifiant de la t\u00e2che +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Num\u00e9ro ou identifiant destin\u00e9 \u00e0 faciliter le traitement du workflow. L'identifiant est cr\u00e9\u00e9 par un utilisateur pour la t\u00e2che pour laquelle l'\u00e9l\u00e9ment est fourni. +iptcxmp_iptcmodel.property.dc_title.title=Titre +iptcxmp_iptcmodel.property.dc_title.description=Courte r\u00e9f\u00e9rence d\u00e9crivant l'\u00e9l\u00e9ment. Le titre correspond \u00e0 un nom court et lisible qui peut \u00eatre du texte et/ou une r\u00e9f\u00e9rence num\u00e9rique. Il est diff\u00e9rent de la manchette. +iptcxmp_iptcmodel.property.dc_rights.title=Mention de copyright +iptcxmp_iptcmodel.property.dc_rights.description=Contient toute mention de copyright n\u00e9cessaire, relative \u00e0 la propri\u00e9t\u00e9 intellectuelle de cet \u00e9l\u00e9ment et doit identifier l'actuel propri\u00e9taire du copyright de l'\u00e9l\u00e9ment. D'autres entit\u00e9s, comme le cr\u00e9ateur de l'\u00e9l\u00e9ment, peuvent \u00eatre ajout\u00e9es dans le champ correspondant. Les notes concernant les droits d'utilisation doivent \u00eatre ajout\u00e9es dans "Conditions d'utilisation des droits". +iptcxmp_iptcmodel.property.dc_creator.title=Cr\u00e9ateur +iptcxmp_iptcmodel.property.dc_creator.description=Contient le nom de la personne qui a cr\u00e9\u00e9 le contenu de cet \u00e9l\u00e9ment, un photographe pour des photos, un graphiste pour des images ou un auteur pour du texte, mais au cas o\u00f9 le photographe ne doit pas \u00eatre identifi\u00e9, le nom d'une entreprise ou organisation peut \u00eatre appropri\u00e9. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Fonction du cr\u00e9ateur +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Contient la fonction de la personne qui a cr\u00e9\u00e9 le contenu de cet \u00e9l\u00e9ment. Puisqu'il s'agit d'une sorte de qualificateur, l'\u00e9l\u00e9ment Cr\u00e9ateur doit \u00eatre obligatoirement renseign\u00e9 pour pouvoir utiliser le champ Fonction du cr\u00e9ateur. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Ligne de cr\u00e9dit +iptcxmp_iptcmodel.property.photoshop_Credit.description=Cr\u00e9dit \u00e0 l'intention de personne(s) et/ou d'organisation(s) requis par le fournisseur de l'\u00e9l\u00e9ment \u00e0 utiliser lors de la publication. Il s'agit d'un champ de texte libre. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Conditions d'utilisation des droits +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Les param\u00e8tres de licence de l'\u00e9l\u00e9ment exprim\u00e9s sous forme de texte libre. +iptcxmp_iptcmodel.property.photoshop_Source.title=Source +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifie le propri\u00e9taire d'origine du copyright pour le contenu intellectuel de l'\u00e9l\u00e9ment. Il peut s'agir d'une agence, d'un membre d'une agence ou d'un particulier. La source peut \u00eatre diff\u00e9rente du cr\u00e9ateur et des entit\u00e9s figurant dans la mention de copyright. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adresse +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=La partie adresse des informations de contact. Comprend \u00e9ventuellement un nom de soci\u00e9t\u00e9 et toutes les informations requises pour localiser le b\u00e2timent ou la bo\u00eete postale auxquels le courrier doit \u00eatre envoy\u00e9. \u00c0 cette fin, le champ d'adresse comporte plusieurs lignes. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Ville +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=La partie ville des informations de contact. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Pays +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=La partie pays des informations de contact. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-mail(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=La partie adresse e-mail des informations de contact. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=T\u00e9l\u00e9phone(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=La partie num\u00e9ro de t\u00e9l\u00e9phone des informations de contact. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Code postal +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=La partie des informations de contact correspondant au code postal local. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Province/Etat +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=La partie des informations de contact correspondant aux informations sur la r\u00e9gion, par ex. l'Etat ou la province. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=URL Web +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=La partie adresse web des informations de contact. Plusieurs adresses peuvent \u00eatre ajout\u00e9es, s\u00e9par\u00e9es par une virgule. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Priorit\u00e9 +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Obsol\u00e8te et en dehors d'IPTC. +iptcxmp_iptcmodel.property.photoshop_Category.title=Cat\u00e9gorie +iptcxmp_iptcmodel.property.photoshop_Category.description=Obsol\u00e8te et en dehors d'IPTC. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Cat\u00e9gories suppl\u00e9mentaires +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Obsol\u00e8te et en dehors d'IPTC. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Informations suppl\u00e9mentaires sur le mod\u00e8le +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informations sur l'origine ethnique et d'autres caract\u00e9ristiques du/des mod\u00e8les dans le cas d'une image de mod\u00e8le(s). +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Conception graphique ou objet dans l'image +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Un ensemble de m\u00e9tadonn\u00e9es sur une conception graphique ou un objet dans l'\u00e9l\u00e9ment +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Code de l'organisation repr\u00e9sent\u00e9e +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Code appartenant \u00e0 un vocabulaire normalis\u00e9 pour identifier l'organisation ou l'entreprise dont il est question dans le contenu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Vocabulaire normalis\u00e9 +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Un terme pour d\u00e9crire le contenu de l'image \u00e0 l'aide d'une valeur appartenant \u00e0 un vocabulaire normalis\u00e9. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Age du mod\u00e8le +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Age du ou des mod\u00e8les humains au moment o\u00f9 la photo a \u00e9t\u00e9 prise dans le cas d'une image de mod\u00e8le(s). +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Nom de l'organisation repr\u00e9sent\u00e9e +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Nom de l'organisation ou entreprise dont il est question dans le contenu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Personne affich\u00e9e +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Nom de la personne sur laquelle porte le contenu de l'\u00e9l\u00e9ment. Pour des photos, il s'agit de la personne repr\u00e9sent\u00e9e sur l'image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identifiant de l'image num\u00e9rique +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Identifiant global unique de l'\u00e9l\u00e9ment. Il est cr\u00e9\u00e9 et appliqu\u00e9 par le cr\u00e9ateur de l'\u00e9l\u00e9ment au moment de sa cr\u00e9ation. Cette valeur n'est pas modifiable par la suite. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Type physique de la photo d'origine +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Le type du fichier num\u00e9rique source. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Type de source de photo +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Le type de la source de cette image num\u00e9rique +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Ev\u00e9nement +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Nomme ou d\u00e9crit l'\u00e9v\u00e9nement sp\u00e9cifique auquel le contenu est consacr\u00e9. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID du fournisseur de l'image +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifie le fournisseur le plus r\u00e9cent de l'\u00e9l\u00e9ment, qui n'est pas n\u00e9cessairement son propri\u00e9taire ou son cr\u00e9ateur. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Nom du fournisseur de l'image +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifie le fournisseur le plus r\u00e9cent de l'\u00e9l\u00e9ment, qui n'est pas n\u00e9cessairement son propri\u00e9taire ou son cr\u00e9ateur. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=ID de l'image du fournisseur +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Identifiant facultatif attribu\u00e9 \u00e0 l'image par le fournisseur de l'image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Derni\u00e8re modification des champs IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=La date et \u00e9ventuellement l'heure de la modification d'un ou plusieurs champs IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Hauteur maximale disponible +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=La hauteur maximale disponible en pixels de la photo originale de laquelle cette photo est d\u00e9riv\u00e9e par redimensionnement. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Largeur maximale disponible +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=La largeur maximale disponible en pixels de la photo originale de laquelle cette photo est d\u00e9riv\u00e9e par redimensionnement. +iptcxmp_iptcmodel.property.plus_Version.title=Version PLUS +iptcxmp_iptcmodel.property.plus_Version.description=Num\u00e9ro de version des normes PLUS en vigueur au moment de la transaction. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID(s) du ou des propri\u00e9taire(s) du copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Le ou les propri\u00e9taires du copyright de l'image sous licence. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Nom(s) de d\u00e9tenteur de copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Le ou les propri\u00e9taires du copyright de l'image sous licence. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID(s) du ou des cr\u00e9ateur(s) de l'image +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Le ou les cr\u00e9ateurs de l'image. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Nom(s) de cr\u00e9ateur d'image +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Le ou les cr\u00e9ateurs de l'image. +iptcxmp_iptcmodel.property.plus_LicensorID.title=ID PLUS +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nom +iptcxmp_iptcmodel.property.plus_LicensorName.description=Nom de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Ville +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Ville de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Pays +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Pays de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-mail +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=E-mail de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Adresse compl\u00e8te +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Adresse compl\u00e8te de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Code postal +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Code postal de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=R\u00e9gion +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=R\u00e9gion de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Rue +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Rue de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=T\u00e9l\u00e9phone\u00a01 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=T\u00e9l\u00e9phone\u00a01 de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=T\u00e9l\u00e9phone\u00a02 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=T\u00e9l\u00e9phone\u00a02 de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL de la personne ou de l'entreprise \u00e0 contacter pour obtenir une licence pour utiliser l'\u00e9l\u00e9ment ou qui d\u00e9tient une licence pour l'\u00e9l\u00e9ment. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Age des mod\u00e8les mineurs +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Age du mod\u00e8le le plus jeune repr\u00e9sent\u00e9 sur l'image, au moment o\u00f9 la photo a \u00e9t\u00e9 prise. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID de l'autorisation du mod\u00e8le +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Identifiant facultatif associ\u00e9 \u00e0 chaque autorisation du mod\u00e8le. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Statut de l'autorisation du mod\u00e8le +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=R\u00e9sume la disponibilit\u00e9 et la port\u00e9e des autorisations des mod\u00e8les autorisant l'utilisation d'images des personnes apparaissant sur la photographie. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID de l'autorisation de la propri\u00e9t\u00e9 +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Identifiant facultatif associ\u00e9 \u00e0 chaque autorisation de la propri\u00e9t\u00e9. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Statut de l'autorisation de la propri\u00e9t\u00e9 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=R\u00e9sume la disponibilit\u00e9 et la port\u00e9e des autorisations des propri\u00e9t\u00e9s autorisant l'utilisation des propri\u00e9t\u00e9s apparaissant sur la photographie. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Mention de copyright +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Contient toute mention de copyright n\u00e9cessaire, relative \u00e0 la propri\u00e9t\u00e9 intellectuelle d'une conception graphique ou d'un objet sur l'image et doit identifier l'actuel propri\u00e9taire de ce copyright et des droits de propri\u00e9t\u00e9 intellectuelle associ\u00e9s. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Cr\u00e9ateur +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Contient le nom de l'artiste qui a cr\u00e9\u00e9 la conception graphique ou un objet dans l'image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Date de cr\u00e9ation +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=D\u00e9signe la date et \u00e9ventuellement l'heure auxquelles la conception graphique ou l'objet dans l'image a \u00e9t\u00e9 cr\u00e9\u00e9. Concerne les conceptions graphiques ou objets auxquels des droits de propri\u00e9t\u00e9 intellectuelle sont associ\u00e9s. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Source +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=L'organisation ou l'entit\u00e9 qui d\u00e9tient et enregistre la conception graphique ou l'objet dans l'image \u00e0 des fins d'inventaire. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Num\u00e9ro d'inventaire de la source +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Le num\u00e9ro d'inventaire d\u00e9livr\u00e9 par l'organisation ou l'entit\u00e9 qui d\u00e9tient et enregistre la conception graphique ou l'objet dans l'image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titre +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Une r\u00e9f\u00e9rence d\u00e9crivant la conception graphique ou l'objet dans l'image. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Ville +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Nom de la ville d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau quatre d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Code ISO du pays +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=Le code ISO du pays d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau deux d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Nom du pays +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Le nom du pays d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau deux d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Province/Etat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Le nom de la r\u00e9gion secondaire du pays - province ou Etat - d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau trois d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Lieu secondaire +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Nom d'un lieu secondaire. Il peut s'agir du nom du lieu secondaire d'une ville ou du nom d'un lieu ou d'un monument (naturel) c\u00e9l\u00e8bre en dehors d'une ville. En tant que lieu secondaire d'une ville, cet \u00e9l\u00e9ment se situe au niveau cinq d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=R\u00e9gion du monde +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Nom de la r\u00e9gion du monde d'un lieu. Cet \u00e9l\u00e9ment se situe au premier niveau (le plus haut) d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Ville +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Nom de la ville d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau quatre d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Code ISO du pays +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=Le code ISO du pays d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau deux d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Nom du pays +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Le nom du pays d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau deux d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Province/Etat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Le nom de la r\u00e9gion secondaire du pays - province ou Etat - d'un lieu. Cet \u00e9l\u00e9ment se situe au niveau trois d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Lieu secondaire +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Nom d'un lieu secondaire. Il peut s'agir du nom du lieu secondaire d'une ville ou du nom d'un lieu ou d'un monument (naturel) c\u00e9l\u00e8bre en dehors d'une ville. En tant que lieu secondaire d'une ville, cet \u00e9l\u00e9ment se situe au niveau cinq d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=R\u00e9gion du monde +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Nom de la r\u00e9gion du monde d'un lieu. Cet \u00e9l\u00e9ment se situe au premier niveau (le plus haut) d'une hi\u00e9rarchie g\u00e9ographique de haut en bas. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identifiant de l'\u00e9l\u00e9ment +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Un identifiant unique cr\u00e9\u00e9 par un organisme d'enregistrement et appliqu\u00e9 par le cr\u00e9ateur de l'\u00e9l\u00e9ment. Une fois appliqu\u00e9e, cette valeur n'est pas modifiable. Cet identifiant est li\u00e9 \u00e0 l'identifiant correspondant de l'organisme d'enregistrement. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identifiant de l'organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Un identifiant pour l'organisme d'enregistrement qui a d\u00e9livr\u00e9 l'ID correspondant d'enregistrement de l'image. + + diff --git a/models/iptc/iptc-model_it.properties b/models/iptc/iptc-model_it.properties new file mode 100644 index 00000000..895b5510 --- /dev/null +++ b/models/iptc/iptc-model_it.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Modello di dominio Alfresco IPTC + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspetto IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Citt\u00e0 +iptcxmp_iptcmodel.property.photoshop_City.description=Nome della citt\u00e0 su cui \u00e8 incentrato il contenuto. Pu\u00f2 trattarsi del luogo mostrato nel contenuto multimediale visivo o citato nel testo o nel contenuto multimediale audio. Questo elemento si trova al terzo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.photoshop_Country.title=Paese +iptcxmp_iptcmodel.property.photoshop_Country.description=Nome completo del paese su cui \u00e8 incentrato il contenuto. Pu\u00f2 trattarsi del paese mostrato nel contenuto multimediale visivo o citato nel testo o nel contenuto multimediale audio. Questo elemento si trova al primo livello di una gerarchia geografica verticale. Il nome completo deve essere espresso in forma descrittiva e non come codice. Il codice viene usato per l'elemento "CountryCode" +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=Codice paese ISO +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Codice del paese su cui \u00e8 incentrato il contenuto. Pu\u00f2 trattarsi del paese mostrato nel contenuto multimediale visivo o citato nel testo o nel contenuto multimediale audio. Questo elemento si trova al primo livello di una gerarchia geografica verticale. Il codice deve corrispondere al codice ISO 3166 a due o tre lettere. Il nome completo di un paese deve essere usato per l'elemento "Country". +iptcxmp_iptcmodel.property.dc_description.title=Didascalia/Descrizione +iptcxmp_iptcmodel.property.dc_description.description=Una descrizione testuale, incluse eventuali didascalie, del contenuto di un elemento che viene utilizzata in particolare quando l'oggetto non \u00e8 di tipo "testo". +iptcxmp_iptcmodel.property.photoshop_Headline.title=Intestazione +iptcxmp_iptcmodel.property.photoshop_Headline.description=Un breve riepilogo della didascalia. L'intestazione non corrisponde al titolo. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Genere intellettuale +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Descrive la natura intellettuale, artistica o giornalistica di un elemento, non specificatamente il suo contenuto. +iptcxmp_iptcmodel.property.dc_subject.title=Parole chiave +iptcxmp_iptcmodel.property.dc_subject.description=Parole chiave che esprimono l'argomento del contenuto. Possono essere costituite da testo libero e non devono necessariamente provenire da un vocabolario controllato. I codici del vocabolario controllato IPTC Subject NewsCodes devono essere inseriti nel campo "Codice oggetto". +iptcxmp_iptcmodel.property.photoshop_State.title=Provincia/Stato +iptcxmp_iptcmodel.property.photoshop_State.description=Nome della sottoregione di un paese, denominata provincia, stato o in qualsiasi altro modo, su cui \u00e8 incentrato il contenuto. Pu\u00f2 trattarsi della sottoregione mostrata nel contenuto multimediale visivo o citata nel testo o nel contenuto multimediale audio. Questo elemento si trova al secondo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=Codice scena IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Descrive la scena di un contenuto informativo. Specifica uno o pi\u00f9 termini del vocabolario "Scene-NewsCodes" di IPTC . Ogni scena \u00e8 rappresentata come una stringa di 6 cifre in un elenco non ordinato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=Codice oggetto IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Specifica uno o pi\u00f9 oggetti contenuti nella tassonomia Subject-NewsCodes di IPTC per classificare il contenuto. Ogni oggetto \u00e8 rappresentato come una stringa di 8 cifre in un elenco non ordinato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Sottolocalit\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Nome di una sottolocalit\u00e0 su cui \u00e8 incentrato il contenuto. Pu\u00f2 trattarsi della localit\u00e0 mostrata nel contenuto multimediale visivo o citata nel testo o nel contenuto multimediale audio. Il nome della localit\u00e0 pu\u00f2 essere sia il nome di una sottolocalit\u00e0 di una citt\u00e0 sia il nome di una localit\u00e0 nota oppure di un'attrazione naturale o un monumento ubicato fuori da una citt\u00e0. Quando si riferisce alla sottolocalit\u00e0 di una citt\u00e0, questo elemento si trova al quarto livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Data di creazione +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Indica la data e (facoltativamente) l'ora di creazione di un contenuto intellettuale e non la data di creazione della rappresentazione fisica. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Autore didascalia/descrizione +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identificatore del nome della persona che si \u00e8 occupata della scrittura, redazione o correzione della descrizione del contenuto. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Istruzioni +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Qualsiasi istruzione fornita dal provider o dal creatore dell'elemento al destinatario. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identificatore job +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Numero o identificatore finalizzato a migliorare la gestione del workflow. Si tratta di un identificatore creato dall'utente e correlato al job per il quale viene fornito l'elemento. +iptcxmp_iptcmodel.property.dc_title.title=Titolo +iptcxmp_iptcmodel.property.dc_title.description=Un riferimento abbreviato per l'elemento. Fornisce un nome breve, leggibile dall'uomo, che pu\u00f2 essere costituito da testo e/o da un riferimento numerico. Non corrisponde all'intestazione. +iptcxmp_iptcmodel.property.dc_rights.title=Nota copyright +iptcxmp_iptcmodel.property.dc_rights.description=Contiene tutti gli avvisi di copyright necessari per rivendicare la propriet\u00e0 intellettuale dell'elemento e deve identificare il titolare attuale del copyright dell'elemento. Altre entit\u00e0, come il creatore dell'elemento, possono essere aggiunte nel campo corrispondente. Le note relative ai diritti di utilizzo devono essere fornite nel campo "Condizioni di utilizzo dei diritti". +iptcxmp_iptcmodel.property.dc_creator.title=Creatore +iptcxmp_iptcmodel.property.dc_creator.description=Contiene il nome della persona che ha creato il contenuto dell'elemento, ovvero un fotografo per le foto, un grafico per gli elementi grafici o uno scrittore per i contenuti testuali. Qualora il fotografo non debba essere identificato, \u00e8 possibile utilizzare il nome di una societ\u00e0 o di un'organizzazione. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Qualifica creatore +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Contiene la qualifica della persona che ha creato il contenuto dell'elemento. Poich\u00e9 si tratta di un qualificatore, l'elemento Creatore deve essere necessariamente specificato per poter compilare il campo Qualifica creatore. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Riconoscimenti +iptcxmp_iptcmodel.property.photoshop_Credit.description=I riconoscimenti alla persona (o persone) e/o all'organizzazione (o organizzazioni) che la persona che fornisce l'elemento richiede che vengano inseriti al momento della sua pubblicazione. Si tratta di un campo a testo libero. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Condizioni di utilizzo dei diritti +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=I criteri per la concessione in licenza dell'elemento esposti in forma di testo libero. +iptcxmp_iptcmodel.property.photoshop_Source.title=Fonte +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifica il titolare originario del copyright sul contenuto intellettuale dell'elemento. Pu\u00f2 trattarsi di un'agenzia o di una persona fisica. La fonte pu\u00f2 essere diversa dal Creatore e dalle entit\u00e0 indicate nel campo Nota copyright. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Indirizzo +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=La parte delle informazioni di contatto relativa all'indirizzo. Comprende la ragione sociale (facoltativa) e tutte le informazioni necessarie per individuare l'edificio o la casella postale a cui inviare la corrispondenza. A tale scopo, il campo dell'indirizzo \u00e8 composto da pi\u00f9 righe. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Citt\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=La parte delle informazioni di contatto relativa alla citt\u00e0. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Paese +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=La parte delle informazioni di contatto relativa al paese. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-mail +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=La parte delle informazioni di contatto relativa all'indirizzo e-mail. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefono +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=La parte delle informazioni di contatto relativa al numero di telefono. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=CAP +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=La parte delle informazioni di contatto relativa al codice postale. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Stato/Provincia +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=La parte delle informazioni di contatto che fornisce indicazioni sull'area geografica, come lo stato o la provincia. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=URL Web +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=La parte delle informazioni di contatto relativa all'indirizzo Web. Possono essere forniti pi\u00f9 indirizzi separati da una virgola. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Urgenza +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Deprecata e non inclusa nell'IPTC Core. +iptcxmp_iptcmodel.property.photoshop_Category.title=Categoria +iptcxmp_iptcmodel.property.photoshop_Category.description=Deprecata e non inclusa nell'IPTC Core. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Categorie supplementari +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Deprecata e non inclusa nell'IPTC Core. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Informazioni aggiuntive sul modello +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informazioni relative all'origine etnica e ad altri aspetti del modello/della modella (o dei modelli/delle modelle) in un'immagine con liberatoria. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Grafica o oggetto nell'immagine +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Insieme di metadati relativi a un elemento grafico o un oggetto contenuto nell'elemento +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Codice organizzazione in evidenza +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Codice di un vocabolario controllato che identifica l'organizzazione o la societ\u00e0 mostrata nel contenuto. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Termine da vocabolario controllato +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Termine che descrive il contenuto dell'immagine mediante un valore proveniente da un vocabolario controllato. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Et\u00e0 del modello +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Et\u00e0 del modello/della modella al momento dell'acquisizione dell'immagine per la quale il modello/la modella ha rilasciato una liberatoria. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Nome organizzazione in evidenza +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Nome dell'organizzazione o della societ\u00e0 mostrata nel contenuto. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Persona mostrata +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Nome della persona raffigurata nel contenuto dell'elemento. Per le foto, si tratta della persona mostrata nell'immagine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identificatore immagine digitale +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Identificatore univoco globale dell'elemento. Viene creato e applicato dal creatore dell'elemento al momento della sua creazione. Questo valore non pu\u00f2 essere modificato successivamente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Tipo fisico della foto originale +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Tipo di file digitale di origine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Tipo di fonte della foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Tipo di fonte dell'immagine digitale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Evento +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Denomina o descrive l'evento specifico a cui si riferisce il contenuto. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID fornitore immagine +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifica l'ultimo fornitore dell'elemento, che non coincide necessariamente con il suo proprietario o creatore. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Nome fornitore immagine +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifica l'ultimo fornitore dell'elemento, che non coincide necessariamente con il suo proprietario o creatore. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=ID immagine del fornitore immagine +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Identificatore facoltativo assegnato all'immagine dal fornitore dell'immagine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Ultima modifica campi IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=La data e (facoltativamente) l'ora in cui \u00e8 stato modificato un campo IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Massima altezza disponibile +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=La massima altezza in pixel disponibile della foto originale da cui \u00e8 stata tratta questa foto riducendone le dimensioni. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Massima larghezza disponibile +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=La massima larghezza in pixel disponibile della foto originale da cui \u00e8 stata tratta questa foto riducendone le dimensioni. +iptcxmp_iptcmodel.property.plus_Version.title=Versione PLUS +iptcxmp_iptcmodel.property.plus_Version.description=Il numero di versione degli standard PLUS applicati al momento della transazione. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID del proprietario del copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Proprietario o proprietari del copyright dell'immagine concessa in licenza. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Nome/i proprietario/i copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Proprietario o proprietari del copyright dell'immagine concessa in licenza. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID creatore immagine +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Creatore o creatori dell'immagine. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Nome/i creatore/i immagine +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Creatore o creatori dell'immagine. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nome +iptcxmp_iptcmodel.property.plus_LicensorName.description=Nome della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Citt\u00e0 +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Citt\u00e0 della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Paese +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Paese della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-mail +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Indirizzo e-mail della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Indirizzo completo +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Indirizzo completo della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=CAP +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Codice postale della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Area +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Area geografica della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Indirizzo +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Via e numero civico della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefono 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Primo numero di telefono della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefono 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Secondo numero di telefono della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL della persona o dell'azienda da contattare per ottenere una licenza per l'utilizzo dell'elemento o che ha concesso in licenza l'elemento. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Divulgazione et\u00e0 del modello pi\u00f9 giovane +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Et\u00e0 del modello o della modella pi\u00f9 giovane raffigurato/a nell'immagine al momento dell'acquisizione dell'immagine. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID liberatoria modello +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Identificatore facoltativo associato a ogni liberatoria del modello/della modella. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Stato liberatoria modello +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Riepiloga la disponibilit\u00e0 e l'ambito di applicazione delle liberatorie del modello/della modella in cui si autorizza l'uso delle sembianze delle persone ritratte nella foto. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID liberatoria propriet\u00e0 +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Identificatore facoltativo associato a ogni liberatoria relativa alla propriet\u00e0. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Stato liberatoria propriet\u00e0 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Riepiloga la disponibilit\u00e0 e l'ambito di applicazione delle liberatorie relative alle propriet\u00e0 in cui si autorizza l'uso delle propriet\u00e0 raffigurate nella foto. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Nota copyright +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Contiene tutti gli avvisi di copyright necessari per rivendicare la propriet\u00e0 intellettuale dell'elemento grafico o di un oggetto nell'immagine e deve identificare il titolare attuale del copyright dell'opera a cui sono associati i diritti di propriet\u00e0 intellettuale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Creatore +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Contiene il nome dell'artista che ha creato l'elemento grafico o un oggetto nell'immagine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Data di creazione +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Indica la data e (facoltativamente) l'ora di creazione dell'elemento grafico o dell'oggetto nell'immagine. Si riferisce agli elementi grafici o agli oggetti a cui sono associati i diritti di propriet\u00e0 intellettuale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Fonte +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=L'organizzazione o l'organismo che detiene e ha registrato l'elemento grafico o l'oggetto nell'immagine a fini di inventario. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Numero di inventario fonte +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Il numero di inventario assegnato dall'organizzazione o dall'organismo che detiene e ha registrato l'elemento grafico o l'oggetto nell'immagine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titolo +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Riferimento utilizzato per identificare l'elemento grafico o l'oggetto nell'immagine. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Citt\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Nome della citt\u00e0 della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al quarto livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Codice paese ISO +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=Codice ISO del paese della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al secondo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Nome paese +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Nome del paese della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al secondo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provincia/Stato +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Nome di una sottoregione del paese (stato o provincia) della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al terzo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Sottolocalit\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Nome di una sottolocalit\u00e0. Tale nome pu\u00f2 essere sia il nome di una sottolocalit\u00e0 di una citt\u00e0 sia il nome di una localit\u00e0 nota oppure di un'attrazione naturale o un monumento ubicato fuori da una citt\u00e0. Quando si riferisce alla sottolocalit\u00e0 di una citt\u00e0, questo elemento si trova al quinto livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Area geografica +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Nome dell'area geografica di una localit\u00e0. Questo elemento si trova al primo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Citt\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Nome della citt\u00e0 della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al quarto livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Codice paese ISO +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=Codice ISO del paese della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al secondo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Nome paese +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Nome del paese della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al secondo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provincia/Stato +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Nome di una sottoregione del paese (stato o provincia) della localit\u00e0 mostrata nell'immagine. Questo elemento si trova al terzo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Sottolocalit\u00e0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Nome di una sottolocalit\u00e0. Tale nome pu\u00f2 essere sia il nome di una sottolocalit\u00e0 di una citt\u00e0 sia il nome di una localit\u00e0 nota oppure di un'attrazione naturale o un monumento ubicato fuori da una citt\u00e0. Quando si riferisce alla sottolocalit\u00e0 di una citt\u00e0, questo elemento si trova al quinto livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Area geografica +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Nome dell'area geografica di una localit\u00e0. Questo elemento si trova al primo livello di una gerarchia geografica verticale. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identificatore elemento +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Identificatore univoco creato da un registro e applicato dal creatore dell'elemento. Una volta applicato, questo valore non pu\u00f2 pi\u00f9 essere modificato. Questo identificatore \u00e8 connesso al corrispondente Identificatore dell'organismo di registrazione. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identificatore organizzazione +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Identificatore del registro che ha rilasciato il corrispondente ID immagine registro. + + diff --git a/models/iptc/iptc-model_ja.properties b/models/iptc/iptc-model_ja.properties new file mode 100644 index 00000000..27ed8afe --- /dev/null +++ b/models/iptc/iptc-model_ja.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC \u30c9\u30e1\u30a4\u30f3\u30e2\u30c7\u30eb + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC\u30a2\u30b9\u30da\u30af\u30c8 +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.photoshop_City.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308b\u90fd\u5e02\u540d -- \u30d3\u30b8\u30e5\u30a2\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u8868\u793a\u3055\u308c\u308b\u5834\u6240\u3001\u30c6\u30ad\u30b9\u30c8\u3084\u30aa\u30fc\u30c7\u30a3\u30aa\u30e1\u30c7\u30a3\u30a2\u3067\u53c2\u7167\u3055\u308c\u308b\u5834\u6240\u306e\u3044\u305a\u308c\u304b\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e3\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_Country.title=\u56fd +iptcxmp_iptcmodel.property.photoshop_Country.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308b\u56fd\u306e\u30d5\u30eb\u30cd\u30fc\u30e0 -- \u30d3\u30b8\u30e5\u30a2\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u8868\u793a\u3055\u308c\u308b\u56fd\u3001\u30c6\u30ad\u30b9\u30c8\u3084\u30aa\u30fc\u30c7\u30a3\u30aa\u30e1\u30c7\u30a3\u30a2\u3067\u53c2\u7167\u3055\u308c\u308b\u56fd\u306e\u3044\u305a\u308c\u304b\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e\u6700\u4e0a\u4f4d/\u6700\u521d\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002\u30d5\u30eb\u30cd\u30fc\u30e0\u306f\u30b3\u30fc\u30c9\u3067\u306f\u306a\u304f\u8a00\u8a9e\u540d\u3068\u3057\u3066\u8868\u73fe\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u3001\u30b3\u30fc\u30c9\u306f "CountryCode "\u8981\u7d20\u306b\u5165\u308c\u308b\u3079\u304d\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=\u56fd\u306e ISO \u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308b\u56fd\u306e\u30b3\u30fc\u30c9 -- \u30d3\u30b8\u30e5\u30a2\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u8868\u793a\u3055\u308c\u308b\u56fd\u3001\u30c6\u30ad\u30b9\u30c8\u3084\u30aa\u30fc\u30c7\u30a3\u30aa\u30e1\u30c7\u30a3\u30a2\u3067\u53c2\u7167\u3055\u308c\u308b\u56fd\u306e\u3044\u305a\u308c\u304b\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e\u6700\u4e0a\u4f4d/\u7b2c\u4e00\u968e\u5c64\u306b\u3042\u308a\u307e\u3059\u3002\u30b3\u30fc\u30c9\u306f\u3001ISO 3166\u306e2\u6587\u5b57\u307e\u305f\u306f3\u6587\u5b57\u306e\u30b3\u30fc\u30c9\u304b\u3089\u53d6\u5f97\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u56fd\u306e\u30d5\u30eb\u30cd\u30fc\u30e0\u306f\u3001"Country"\u8981\u7d20\u306b\u5165\u308c\u308b\u3079\u304d\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.dc_description.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3/\u8aac\u660e\u6587 +iptcxmp_iptcmodel.property.dc_description.description=\u7279\u306b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u30c6\u30ad\u30b9\u30c8\u3067\u306f\u306a\u3044\u5834\u5408\u306b\u4f7f\u7528\u3055\u308c\u308b\u3001\u30a2\u30a4\u30c6\u30e0\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3092\u542b\u3080\u30c6\u30ad\u30b9\u30c8\u306b\u3088\u308b\u8aac\u660e\u3002 +iptcxmp_iptcmodel.property.photoshop_Headline.title=\u898b\u51fa\u3057 +iptcxmp_iptcmodel.property.photoshop_Headline.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u7c21\u5358\u306a\u6982\u8981\u3002 \u898b\u51fa\u3057\u306f\u30bf\u30a4\u30c8\u30eb\u3068\u540c\u3058\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=\u77e5\u7684\u30b8\u30e3\u30f3\u30eb +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=\u30a2\u30a4\u30c6\u30e0\u306e\u6027\u8cea\u3001\u77e5\u7684\u3001\u82b8\u8853\u7684\u307e\u305f\u306f\u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0\u7684\u306a\u7279\u5fb4\u3092\u8aac\u660e\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u7279\u306b\u305d\u306e\u5185\u5bb9\u3092\u793a\u3059\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +iptcxmp_iptcmodel.property.dc_subject.title=\u30ad\u30fc\u30ef\u30fc\u30c9 +iptcxmp_iptcmodel.property.dc_subject.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u4e3b\u984c\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3002 \u30ad\u30fc\u30ef\u30fc\u30c9\u306f\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8\u3067\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u3001\u7d71\u5236\u8a9e\u5f59\u304b\u3089\u53d6\u5f97\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u7d71\u5236\u8a9e\u5f59IPTCSubject NewsCodes\u306e\u30b3\u30fc\u30c9\u306f\u3001"Subject Code"\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u5165\u308c\u308b\u3079\u304d\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_State.title=\u90fd\u9053\u5e9c\u770c +iptcxmp_iptcmodel.property.photoshop_State.description=\u56fd\u306e\u30b5\u30d6\u30ea\u30fc\u30b8\u30e7\u30f3\u540d -- \u90fd\u9053\u5e9c\u770c\u305d\u306e\u4ed6\u306e\u3044\u305a\u308c\u304b -- \u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308b -- \u30d3\u30b8\u30e5\u30a2\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u8868\u793a\u3055\u308c\u308b\u30b5\u30d6\u30ea\u30fc\u30b8\u30e7\u30f3\u307e\u305f\u306f\u30c6\u30ad\u30b9\u30c8\u3084\u30aa\u30fc\u30c7\u30a3\u30aa\u30e1\u30c7\u30a3\u30a2\u3067\u53c2\u7167\u3055\u308c\u308b\u30b5\u30d6\u30ea\u30fc\u30b8\u30e7\u30f3\u306e\u3044\u305a\u308c\u304b\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e2\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC \u30b7\u30fc\u30f3\u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=\u30cb\u30e5\u30fc\u30b9\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u30b7\u30fc\u30f3\u3092\u8aac\u660e\u3057\u307e\u3059\u3002IPTC\u306e "Scene-NewsCodes "\u304b\u30891\u3064\u4ee5\u4e0a\u306e\u7528\u8a9e\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002\u5404\u30b7\u30fc\u30f3\u306f\u3001\u9806\u5e8f\u4ed8\u3051\u3089\u308c\u3066\u3044\u306a\u3044\u30ea\u30b9\u30c8\u3067\u306f6\u6841\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u8868\u3055\u308c\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC \u30b5\u30d6\u30b8\u30a7\u30af\u30c8\u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u5206\u985e\u3059\u308b\u305f\u3081\u306b\u3001IPTCSubject-NewsCodes\u5206\u985e\u6cd5\u304b\u30891\u3064\u4ee5\u4e0a\u306e\u4e3b\u984c\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002\u5404\u4e3b\u984c\u306f\u3001\u9806\u5e8f\u4ed8\u3051\u3089\u308c\u3066\u3044\u306a\u3044\u30ea\u30b9\u30c8\u3067\u306f8\u6841\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u8868\u3055\u308c\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308b\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u540d -- \u30d3\u30b8\u30e5\u30a2\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u8868\u793a\u3055\u308c\u308b\u5834\u6240\u3001\u30c6\u30ad\u30b9\u30c8\u3084\u30aa\u30fc\u30c7\u30a3\u30aa\u30e1\u30c7\u30a3\u30a2\u3067\u53c2\u7167\u3055\u308c\u308b\u5834\u6240\u306e\u3044\u305a\u308c\u304b\u3002\u3053\u306e\u5834\u6240\u306e\u540d\u524d\u306f\u3001\u3042\u308b\u90fd\u5e02\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u3082\u3042\u308c\u3070\u3001\u90fd\u5e02\u306e\u5916\u306b\u3042\u308b\u6709\u540d\u306a\u5834\u6240\u3084\uff08\u81ea\u7136\u306e\uff09\u8a18\u5ff5\u7891\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u3002\u90fd\u5e02\u3078\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u3044\u3046\u610f\u5473\u3067\u306f\u3001\u3053\u306e\u8981\u7d20\u306f\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e4\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=\u4f5c\u6210\u65e5 +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=\u7269\u7406\u7684\u8868\u73fe\u306e\u4f5c\u6210\u65e5\u3067\u306f\u306a\u304f\u3001\u77e5\u7684\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u4f5c\u6210\u3055\u308c\u305f\u65e5\u4ed8\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6642\u523b\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3/\u8aac\u660e\u6587\u306e\u4f5c\u6210\u8005 +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u8aac\u660e\u306e\u4f5c\u6210\u3001\u7de8\u96c6\u3001\u307e\u305f\u306f\u4fee\u6b63\u306b\u95a2\u4e0e\u3057\u305f\u8b58\u5225\u5b50\u307e\u305f\u306f\u4eba\u7269\u306e\u540d\u524d\u3002 +iptcxmp_iptcmodel.property.photoshop_Instructions.title=\u624b\u9806 +iptcxmp_iptcmodel.property.photoshop_Instructions.description=\u30a2\u30a4\u30c6\u30e0\u306e\u63d0\u4f9b\u8005\u307e\u305f\u306f\u4f5c\u6210\u8005\u304b\u3089\u53d7\u4fe1\u8005\u3078\u306e\u3044\u304f\u3064\u304b\u306e\u6307\u793a\u306e\u3044\u305a\u308c\u304b\u3002 +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=\u30b8\u30e7\u30d6 ID +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u51e6\u7406\u306e\u6539\u5584\u3092\u76ee\u7684\u3068\u3057\u305f\u756a\u53f7\u307e\u305f\u306f\u8b58\u5225\u5b50\u3002\u3053\u308c\u306f\u3001\u30a2\u30a4\u30c6\u30e0\u304c\u4f9b\u7d66\u3055\u308c\u308b\u30b8\u30e7\u30d6\u306b\u95a2\u9023\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u4f5c\u6210\u3057\u305f\u8b58\u5225\u5b50\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.dc_title.title=\u30bf\u30a4\u30c8\u30eb +iptcxmp_iptcmodel.property.dc_title.description=\u30a2\u30a4\u30c6\u30e0\u306e\u7701\u7565\u5f62\u53c2\u7167\u3002\u30bf\u30a4\u30c8\u30eb\u306f\u4eba\u9593\u304c\u8aad\u3081\u308b\u77ed\u3044\u540d\u524d\u3067\u3001\u30c6\u30ad\u30b9\u30c8\u3084\u6570\u5b57\u306e\u53c2\u7167\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u308c\u306f\u898b\u51fa\u3057\u3068\u306f\u7570\u306a\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.dc_rights.title=\u8457\u4f5c\u6a29\u60c5\u5831 +iptcxmp_iptcmodel.property.dc_rights.description=\u3053\u306e\u30a2\u30a4\u30c6\u30e0\u306e\u77e5\u7684\u8ca1\u7523\u6a29\u3092\u4e3b\u5f35\u3059\u308b\u305f\u3081\u306b\u5fc5\u8981\u306a\u8457\u4f5c\u6a29\u8868\u793a\u3092\u542b\u307f\u3001\u30a2\u30a4\u30c6\u30e0\u306e\u8457\u4f5c\u6a29\u306e\u73fe\u5728\u306e\u6240\u6709\u8005\u3092\u7279\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u30a2\u30a4\u30c6\u30e0\u306e\u4f5c\u6210\u8005\u306e\u3088\u3046\u306a\u4ed6\u306e\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u306f\u3001\u5bfe\u5fdc\u3059\u308b\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u8ffd\u52a0\u3067\u304d\u307e\u3059\u3002\u4f7f\u7528\u6a29\u306b\u95a2\u3059\u308b\u6ce8\u8a18\u306f\u3001\u300c\u6a29\u5229\u4f7f\u7528\u6761\u4ef6\u300d\u306b\u8a18\u8f09\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.dc_creator.title=\u4f5c\u6210\u8005 +iptcxmp_iptcmodel.property.dc_creator.description=\u5199\u771f\u3067\u3042\u308c\u3070\u30d5\u30a9\u30c8\u30b0\u30e9\u30d5\u30a1\u30fc\u3001\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3067\u3042\u308c\u3070\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3001\u6587\u5b57\u30cb\u30e5\u30fc\u30b9\u3067\u3042\u308c\u3070\u30e9\u30a4\u30bf\u30fc\u306a\u3069\u3001\u3053\u306e\u30a2\u30a4\u30c6\u30e0\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u4f5c\u6210\u3057\u305f\u4eba\u306e\u540d\u524d\u304c\u8a18\u8f09\u3055\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u30d5\u30a9\u30c8\u30b0\u30e9\u30d5\u30a1\u30fc\u304c\u7279\u5b9a\u3055\u308c\u308b\u3079\u304d\u3067\u306f\u306a\u3044\u5834\u5408\u306f\u3001\u4f01\u696d\u3084\u7d44\u7e54\u306e\u540d\u524d\u304c\u9069\u5207\u306a\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=\u4f5c\u6210\u8005\u306e\u5f79\u8077\u540d +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=\u3053\u306e\u30a2\u30a4\u30c6\u30e0\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u4f5c\u6210\u3057\u305f\u4eba\u306e\u5f79\u8077\u540d\u304c\u542b\u307e\u308c\u307e\u3059\u3002\u3053\u308c\u306f\u4e00\u7a2e\u306e\u4fee\u98fe\u5b50\u3067\u3042\u308b\u305f\u3081\u3001Creator\u306e\u5f79\u8077\u3092\u4f7f\u7528\u3059\u308b\u305f\u3081\u306e\u5fc5\u9808\u306e\u524d\u63d0\u6761\u4ef6\u3068\u3057\u3066Creator\u8981\u7d20\u3092\u5165\u529b\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_Credit.title=\u89e3\u8aac +iptcxmp_iptcmodel.property.photoshop_Credit.description=\u516c\u958b\u6642\u306b\u4f7f\u7528\u3055\u308c\u308b\u30a2\u30a4\u30c6\u30e0\u306e\u4f9b\u7d66\u8005\u304c\u5fc5\u8981\u3068\u3059\u308b\u500b\u4eba\u304a\u3088\u3073/\u307e\u305f\u306f\u7d44\u7e54\u3078\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u3002\u3053\u308c\u306f\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=\u8457\u4f5c\u6a29\u5229\u7528\u898f\u7d04 +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=\u30d5\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8\u3067\u8868\u73fe\u3055\u308c\u305f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u30d1\u30e9\u30e1\u30fc\u30bf\u3002 +iptcxmp_iptcmodel.property.photoshop_Source.title=\u30bd\u30fc\u30b9 +iptcxmp_iptcmodel.property.photoshop_Source.description=\u30a2\u30a4\u30c6\u30e0\u306e\u77e5\u7684\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u5bfe\u3059\u308b\u8457\u4f5c\u6a29\u306e\u5143\u306e\u6240\u6709\u8005\u3092\u7279\u5b9a\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u30a8\u30a4\u30b8\u30a7\u30f3\u30b7\u30fc\u3001\u6c38\u30b8\u30a7\u30f3\u30c1\u30fc\u306e\u30e1\u30f3\u30d0\u30fc\u3001\u307e\u305f\u306f\u500b\u4eba\u3067\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30bd\u30fc\u30b9\u306fCreator\u3084CopyrightNotice\u306e\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3068\u306f\u7570\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308b\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=\u4f4f\u6240 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=\u9023\u7d61\u5148\u4f4f\u6240\u90e8\u5206\u3002\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u4f1a\u793e\u540d\u3068\u3001\u90f5\u4fbf\u7269\u306e\u9001\u4fe1\u5148\u3068\u306a\u308b\u5efa\u7269\u307e\u305f\u306f\u90f5\u4fbf\u30dd\u30b9\u30c8\u3092\u898b\u3064\u3051\u308b\u305f\u3081\u306b\u5fc5\u8981\u306a\u3059\u3079\u3066\u306e\u60c5\u5831\u3067\u69cb\u6210\u3055\u308c\u307e\u3059\u3002\u305d\u306e\u305f\u3081\u306b\u3001\u4f4f\u6240\u306f\u8907\u6570\u884c\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3067\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=\u9023\u7d61\u5148\u60c5\u5831\u306e\u90fd\u5e02\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=\u56fd +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=\u9023\u7d61\u5148\u60c5\u5831\u306e\u56fd\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E \u30e1\u30fc\u30eb +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=\u9023\u7d61\u5148\u60c5\u5831\u306eE\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=\u96fb\u8a71\u756a\u53f7 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=\u9023\u7d61\u5148\u60c5\u5831\u306e\u96fb\u8a71\u756a\u53f7\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=\u90f5\u4fbf\u756a\u53f7 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=\u9023\u7d61\u5148\u60c5\u5831\u306e\u5730\u57df\u306e\u90f5\u4fbf\u756a\u53f7\u3092\u793a\u3059\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=\u90fd\u9053\u5e9c\u770c +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=\u9023\u7d61\u5148\u60c5\u5831\u306e\u90fd\u9053\u5e9c\u770c\u306a\u3069\u306e\u5730\u57df\u60c5\u5831\u3092\u793a\u3059\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web \u30da\u30fc\u30b8\u306e URL +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=\u9023\u7d61\u5148\u306e\u30a6\u30a7\u30d6\u30a2\u30c9\u30ec\u30b9\u90e8\u5206\u3002\u8907\u6570\u306e\u30a2\u30c9\u30ec\u30b9\u3092\u30b3\u30f3\u30de\u3067\u533a\u5207\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.photoshop_Urgency.title=\u7dca\u6025\u5ea6 +iptcxmp_iptcmodel.property.photoshop_Urgency.description=\u975e\u63a8\u5968\u3067\u3042\u308a\u3001IPTC Core\u306e\u5bfe\u8c61\u5916\u3002 +iptcxmp_iptcmodel.property.photoshop_Category.title=\u30ab\u30c6\u30b4\u30ea +iptcxmp_iptcmodel.property.photoshop_Category.description=\u975e\u63a8\u5968\u3067\u3042\u308a\u3001IPTC Core\u306e\u5bfe\u8c61\u5916\u3002 +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=\u88dc\u8db3\u30ab\u30c6\u30b4\u30ea +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=\u975e\u63a8\u5968\u3067\u3042\u308a\u3001IPTC Core\u306e\u5bfe\u8c61\u5916\u3002 + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=\u305d\u306e\u4ed6\u306e\u30e2\u30c7\u30eb\u60c5\u5831 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=\u30e2\u30c7\u30eb\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u753b\u50cf\u5185\u306e\u30e2\u30c7\u30eb\u306e\u6c11\u65cf\u6027\u304a\u3088\u3073\u305d\u306e\u4ed6\u306e\u5074\u9762\u306b\u95a2\u3059\u308b\u60c5\u5831\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u307e\u305f\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=\u30a2\u30a4\u30c6\u30e0\u306e\u4e2d\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u95a2\u3059\u308b\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30bb\u30c3\u30c8 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=\u63b2\u8f09\u56e3\u4f53\u306e\u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u63b2\u8f09\u3055\u308c\u3066\u3044\u308b\u7d44\u7e54\u307e\u305f\u306f\u4f1a\u793e\u3092\u7279\u5b9a\u3059\u308b\u305f\u3081\u306e\u7d71\u5236\u8a9e\u5f59\u304b\u3089\u306e\u30b3\u30fc\u30c9\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=\u7ba1\u7406\u7528\u8a9e +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=\u7d71\u5236\u8a9e\u5f59\u306e\u5024\u3067\u753b\u50cf\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u8aac\u660e\u3059\u308b\u7528\u8a9e\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=\u30e2\u30c7\u30eb\u306e\u5e74\u9f62 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=\u30e2\u30c7\u30eb\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u753b\u50cf\u3067\u3001\u3053\u306e\u753b\u50cf\u304c\u64ae\u5f71\u3055\u308c\u305f\u6642\u70b9\u3067\u306e\u4eba\u9593\u306e\u30e2\u30c7\u30eb\u306e\u5e74\u9f62\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=\u63b2\u8f09\u56e3\u4f53\u306e\u540d\u79f0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u63b2\u8f09\u3055\u308c\u3066\u3044\u308b\u7d44\u7e54\u307e\u305f\u306f\u4f1a\u793e\u306e\u540d\u79f0\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=\u63b2\u8f09\u4eba\u7269 +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=\u30a2\u30a4\u30c6\u30e0\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5bfe\u8c61\u3068\u3059\u308b\u4eba\u7269\u306e\u540d\u524d\u3002\u5199\u771f\u306e\u5834\u5408\u306f\u3001\u753b\u50cf\u306b\u5199\u3063\u3066\u3044\u308b\u4eba\u7269\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=\u30c7\u30b8\u30bf\u30eb\u753b\u50cf ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=\u30a2\u30a4\u30c6\u30e0\u306e\u4e16\u754c\u7684\u306b\u30e6\u30cb\u30fc\u30af\u306a\u8b58\u5225\u5b50\u3002\u3053\u308c\u306f\u3001\u30a2\u30a4\u30c6\u30e0\u306e\u4f5c\u6210\u6642\u306b\u30a2\u30a4\u30c6\u30e0\u306e\u4f5c\u6210\u8005\u306b\u3088\u3063\u3066\u4f5c\u6210\u304a\u3088\u3073\u9069\u7528\u3055\u308c\u307e\u3059\u3002\u305d\u308c\u4ee5\u964d\u306f\u3001\u3053\u306e\u5024\u3092\u5909\u66f4\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=\u5143\u306e\u5199\u771f\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=\u30bd\u30fc\u30b9\u30c7\u30b8\u30bf\u30eb\u30d5\u30a1\u30a4\u30eb\u306e\u30bf\u30a4\u30d7\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=\u3053\u306e\u5199\u771f\u306e\u30bd\u30fc\u30b9\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=\u30c7\u30b8\u30bf\u30eb\u753b\u50cf\u306e\u30bd\u30fc\u30b9\u306e\u30bf\u30a4\u30d7 +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=\u30a4\u30d9\u30f3\u30c8 +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u95a2\u9023\u3059\u308b\u7279\u5b9a\u306e\u30a4\u30d9\u30f3\u30c8\u306b\u540d\u524d\u3092\u4ed8\u3051\u308b\u304b\u8aac\u660e\u3057\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=\u753b\u50cf\u63d0\u4f9b\u8005\u306e ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=\u30a2\u30a4\u30c6\u30e0\u306e\u6700\u65b0\u306e\u4f9b\u7d66\u8005\u3092\u793a\u3059\u3082\u306e\u3067\u3001\u5fc5\u305a\u3057\u3082\u305d\u306e\u6240\u6709\u8005\u3084\u4f5c\u6210\u8005\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=\u753b\u50cf\u63d0\u4f9b\u8005\u306e\u6c0f\u540d +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=\u30a2\u30a4\u30c6\u30e0\u306e\u6700\u65b0\u306e\u4f9b\u7d66\u8005\u3092\u793a\u3059\u3082\u306e\u3067\u3001\u5fc5\u305a\u3057\u3082\u305d\u306e\u6240\u6709\u8005\u3084\u4f5c\u6210\u8005\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=\u753b\u50cf\u63d0\u4f9b\u8005\u306e\u753b\u50cf ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=\u753b\u50cf\u63d0\u4f9b\u8005\u306b\u3088\u3063\u3066\u753b\u50cf\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8b58\u5225\u5b50\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC \u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u6700\u7d42\u7de8\u96c6\u65e5 +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=IPTC\u306e\u3044\u305a\u308c\u304b\u304c\u7de8\u96c6\u3055\u308c\u305f\u65e5\u4ed8\u3068\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u6642\u523b +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=\u6700\u5927\u53ef\u80fd\u9ad8\u3055 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=\u3053\u306e\u5199\u771f\u3092\u30c0\u30a6\u30f3\u30b5\u30a4\u30ba\u3057\u3066\u5f97\u305f\u5143\u306e\u5199\u771f\u306e\u3001\u5229\u7528\u53ef\u80fd\u306a\u6700\u5927\u306e\u9ad8\u3055\uff08\u30d4\u30af\u30bb\u30eb\uff09\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=\u6700\u5927\u53ef\u80fd\u5e45 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=\u3053\u306e\u5199\u771f\u3092\u30c0\u30a6\u30f3\u30b5\u30a4\u30ba\u3057\u3066\u5f97\u305f\u5143\u306e\u5199\u771f\u306e\u5229\u7528\u53ef\u80fd\u306a\u6700\u5927\u5e45\uff08\u30d4\u30af\u30bb\u30eb\uff09 +iptcxmp_iptcmodel.property.plus_Version.title=PLUS \u306e\u30d0\u30fc\u30b8\u30e7\u30f3 +iptcxmp_iptcmodel.property.plus_Version.description=\u30c8\u30e9\u30f3\u30b6\u30af\u30b7\u30e7\u30f3\u6642\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308bPLUS\u898f\u683c\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u3002 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=\u8457\u4f5c\u6a29\u6240\u6709\u8005\u306e ID +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=\u30e9\u30a4\u30bb\u30f3\u30b9\u3055\u308c\u305f\u753b\u50cf\u306e\u8457\u4f5c\u6a29\u306e\u6240\u6709\u8005\u3002 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=\u8457\u4f5c\u6a29\u6240\u6709\u8005\u306e\u6c0f\u540d +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=\u30e9\u30a4\u30bb\u30f3\u30b9\u3055\u308c\u305f\u753b\u50cf\u306e\u8457\u4f5c\u6a29\u306e\u6240\u6709\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=\u753b\u50cf\u5236\u4f5c\u8005\u306e ID +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=\u753b\u50cf\u306e\u4f5c\u6210\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=\u753b\u50cf\u5236\u4f5c\u8005\u306e\u6c0f\u540d +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=\u753b\u50cf\u306e\u4f5c\u6210\u8005\u3002 +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eID\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eID\u3002 +iptcxmp_iptcmodel.property.plus_LicensorName.title=\u9023\u7d61\u5148 +iptcxmp_iptcmodel.property.plus_LicensorName.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u540d\u524d\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u540d\u524d\u3002 +iptcxmp_iptcmodel.property.plus_LicensorCity.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.plus_LicensorCity.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u90fd\u5e02\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u90fd\u5e02\u3002 +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=\u56fd +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u56fd\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u56fd\u3002 +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E \u30e1\u30fc\u30eb +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eE\u30e1\u30fc\u30eb\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eE\u30e1\u30fc\u30eb\u3002 +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=\u62e1\u5f35\u30a2\u30c9\u30ec\u30b9 +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u62e1\u5f35\u30a2\u30c9\u30ec\u30b9\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u62e1\u5f35\u30a2\u30c9\u30ec\u30b9\u3002 +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=\u90f5\u4fbf\u756a\u53f7 +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u90f5\u4fbf\u756a\u53f7\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u90f5\u4fbf\u756a\u53f7\u3002 +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u5730\u57df\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u5730\u57df\u3002 +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=\u756a\u5730 +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u756a\u5730\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u756a\u5730\u3002 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=\u96fb\u8a71\u756a\u53f7 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u96fb\u8a71 1\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u756a\u5730\u3002 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=\u96fb\u8a71\u756a\u53f7 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u96fb\u8a71 2\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306e\u96fb\u8a71 2\u3002 +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=\u30a2\u30a4\u30c6\u30e0\u4f7f\u7528\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u9023\u7d61\u3092\u53d6\u308b\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eURL\u3001\u307e\u305f\u306f\u30a2\u30a4\u30c6\u30e0\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u53d6\u5f97\u3057\u305f\u500b\u4eba\u307e\u305f\u306f\u4f1a\u793e\u306eURL\u3002 +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=\u6700\u3082\u82e5\u3044\u30e2\u30c7\u30eb\u306e\u64ae\u5f71\u6642\u306e\u5e74\u9f62 +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=\u753b\u50cf\u304c\u4f5c\u6210\u3055\u308c\u305f\u6642\u70b9\u3067\u306e\u3001\u753b\u50cf\u306b\u5199\u3055\u308c\u3066\u3044\u308b\u6700\u5e74\u5c11\u306e\u30e2\u30c7\u30eb\u306e\u5e74\u9f62\u3002 +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=\u30e2\u30c7\u30eb\u30ea\u30ea\u30fc\u30b9 ID +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=\u5404\u30e2\u30c7\u30eb\u30ea\u30fc\u30ea\u30fc\u30b9\u306b\u95a2\u9023\u3059\u308b\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8b58\u5225\u5b50\u3002 +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=\u30e2\u30c7\u30eb\u30ea\u30ea\u30fc\u30b9\u306e\u30b9\u30c6\u30fc\u30bf\u30b9 +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=\u5199\u771f\u306b\u5199\u3063\u3066\u3044\u308b\u4eba\u7269\u306e\u8096\u50cf\u6a29\u306e\u4f7f\u7528\u3092\u8a31\u53ef\u3059\u308b\u30e2\u30c7\u30eb\u30ea\u30ea\u30fc\u30b9\u306e\u53ef\u7528\u6027\u3068\u7bc4\u56f2\u3092\u8981\u7d04\u3057\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u30ea\u30ea\u30fc\u30b9 ID +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=\u5404\u30d7\u30ed\u30d1\u30c6\u30a3\u30ea\u30ea\u30fc\u30b9\u306b\u95a2\u9023\u3059\u308b\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8b58\u5225\u5b50\u3002 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u30ea\u30ea\u30fc\u30b9\u306e\u30b9\u30c6\u30fc\u30bf\u30b9 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=\u5199\u771f\u306b\u5199\u3063\u3066\u3044\u308b\u4eba\u7269\u306e\u8096\u50cf\u6a29\u306e\u4f7f\u7528\u3092\u8a31\u53ef\u3059\u308b\u30d7\u30ed\u30d1\u30c6\u30a3\u30ea\u30ea\u30fc\u30b9\u306e\u53ef\u7528\u6027\u3068\u7bc4\u56f2\u3092\u8981\u7d04\u3057\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=\u8457\u4f5c\u6a29\u60c5\u5831 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u307e\u305f\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u77e5\u7684\u8ca1\u7523\u6a29\u3092\u4e3b\u5f35\u3059\u308b\u305f\u3081\u306b\u5fc5\u8981\u306a\u8457\u4f5c\u6a29\u8868\u793a\u3092\u542b\u307f\u3001\u95a2\u9023\u3059\u308b\u77e5\u7684\u8ca1\u7523\u6a29\u3068\u3068\u3082\u306b\u3053\u306e\u4f5c\u54c1\u306e\u8457\u4f5c\u6a29\u306e\u73fe\u5728\u306e\u6240\u6709\u8005\u3092\u7279\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=\u4f5c\u6210\u8005 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u307e\u305f\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3057\u305f\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u306e\u540d\u524d\u304c\u542b\u307e\u308c\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=\u4f5c\u6210\u65e5 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u4f5c\u6210\u3055\u308c\u305f\u65e5\u4ed8\u3068\u3001\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6642\u523b\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u95a2\u9023\u3059\u308b\u77e5\u7684\u8ca1\u7523\u6a29\u3092\u6301\u3064\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u307e\u305f\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u95a2\u9023\u3057\u3066\u3044\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=\u30bd\u30fc\u30b9 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=\u5728\u5eab\u7ba1\u7406\u306e\u76ee\u7684\u3067\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4fdd\u6301\u30fb\u767b\u9332\u3057\u3066\u3044\u308b\u7d44\u7e54\u3084\u56e3\u4f53\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=\u30bd\u30fc\u30b9\u306e\u30a4\u30f3\u30d9\u30f3\u30c8\u30ea\u756a\u53f7 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=\u753b\u50cf\u306e\u4e2d\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u4fdd\u6301\u30fb\u767b\u9332\u3057\u3066\u3044\u308b\u7d44\u7e54\u3084\u56e3\u4f53\u304c\u767a\u884c\u3059\u308b\u76ee\u9332\u756a\u53f7\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=\u30bf\u30a4\u30c8\u30eb +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=\u753b\u50cf\u5185\u306e\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u53c2\u7167\u5148\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=\u5834\u6240\u306e\u90fd\u5e02\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e4\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=\u56fd\u306e ISO \u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=\u5834\u6240\u306e\u56fd\u306eISO\u30b3\u30fc\u30c9\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e4\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=\u56fd\u540d +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=\u5834\u6240\u306e\u56fd\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e4\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=\u90fd\u9053\u5e9c\u770c +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=\u56fd\u306e\u30b5\u30d6\u30ea\u30fc\u30b8\u30e7\u30f3\u540d - \u5834\u6240\u306e - \u90fd\u9053\u5e9c\u770c\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e3\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u540d\u3002\u3053\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u540d\u306f\u3001\u3042\u308b\u90fd\u5e02\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u3068\u3001\u90fd\u5e02\u306e\u5916\u306b\u3042\u308b\u6709\u540d\u306a\u5834\u6240\u3084\uff08\u5929\u7136\uff09\u8a18\u5ff5\u7269\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u90fd\u5e02\u3078\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u3044\u3046\u610f\u5473\u3067\u306f\u3001\u3053\u306e\u8981\u7d20\u306f\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e5\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=\u4e16\u754c\u5730\u57df +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=\u5834\u6240\u306e\u30ef\u30fc\u30eb\u30c9\u30ea\u30fc\u30b8\u30e7\u30f3\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e\u6700\u521d\uff08\u30c8\u30c3\u30d7I\uff09\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=\u5e02\u533a\u753a\u6751 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=\u5834\u6240\u306e\u90fd\u5e02\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e4\u756a\u76ee\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=\u56fd\u306e ISO \u30b3\u30fc\u30c9 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=\u5834\u6240\u306e\u56fd\u306eISO\u30b3\u30fc\u30c9\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e2\u756a\u76ee\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=\u56fd\u540d +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=\u5834\u6240\u306e\u56fd\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e2\u756a\u76ee\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=\u90fd\u9053\u5e9c\u770c +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=\u56fd\u306e\u30b5\u30d6\u30ea\u30fc\u30b8\u30e7\u30f3\u540d - \u5834\u6240\u306e - \u90fd\u9053\u5e9c\u770c\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e3\u756a\u76ee\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u540d\u3002\u3053\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u540d\u306f\u3001\u3042\u308b\u90fd\u5e02\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u3068\u3001\u90fd\u5e02\u306e\u5916\u306b\u3042\u308b\u6709\u540d\u306a\u5834\u6240\u3084\uff08\u5929\u7136\uff09\u8a18\u5ff5\u7269\u306e\u540d\u524d\u3067\u3042\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u90fd\u5e02\u3078\u306e\u30b5\u30d6\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u3044\u3046\u610f\u5473\u3067\u306f\u3001\u3053\u306e\u8981\u7d20\u306f\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e5\u756a\u76ee\u306e\u30ec\u30d9\u30eb\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=\u4e16\u754c\u5730\u57df +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=\u5834\u6240\u306e\u30ef\u30fc\u30eb\u30c9\u30ea\u30fc\u30b8\u30e7\u30f3\u540d\u3002\u3053\u306e\u8981\u7d20\u306f\u3001\u30c8\u30c3\u30d7\u30c0\u30a6\u30f3\u306e\u5730\u7406\u7684\u968e\u5c64\u306e\u6700\u521d\uff08\u30c8\u30c3\u30d7I\uff09\u306b\u3042\u308a\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=\u30a2\u30a4\u30c6\u30e0 ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=\u30ec\u30b8\u30b9\u30c8\u30ea\u306b\u3088\u3063\u3066\u4f5c\u6210\u3055\u308c\u3001\u30a2\u30a4\u30c6\u30e0\u306e\u4f5c\u6210\u8005\u306b\u3088\u3063\u3066\u9069\u7528\u3055\u308c\u308b\u30e6\u30cb\u30fc\u30af\u306a\u8b58\u5225\u5b50\u3002\u3053\u306e\u5024\u306f\u3001\u9069\u7528\u5f8c\u306b\u5909\u66f4\u3057\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002\u3053\u306e\u8b58\u5225\u5b50\u306f\u3001\u5bfe\u5fdc\u3059\u308b\u30ec\u30b8\u30b9\u30c8\u30ea\u7d44\u7e54\u8b58\u5225\u5b50\u306b\u30ea\u30f3\u30af\u3055\u308c\u3066\u3044\u307e\u3059\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=\u7d44\u7e54 ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=\u5bfe\u5fdc\u3059\u308b\u30ec\u30b8\u30b9\u30c8\u30ea\u30a4\u30e1\u30fc\u30b8ID\u3092\u767a\u884c\u3057\u305f\u30ec\u30b8\u30b9\u30c8\u30ea\u306e\u8b58\u5225\u5b50\u3002 + + diff --git a/models/iptc/iptc-model_nb.properties b/models/iptc/iptc-model_nb.properties new file mode 100644 index 00000000..9d7503e9 --- /dev/null +++ b/models/iptc/iptc-model_nb.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC-domenemodell + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-aspekt +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Poststed +iptcxmp_iptcmodel.property.photoshop_City.description=Navnet p\u00e5 byen innholdet fokuserer p\u00e5 \u2013 enten stedet vist i visuelle medier eller henvist til via tekst eller lydmedier. Dette elementet er p\u00e5 tredje niv\u00e5 av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.photoshop_Country.title=Land +iptcxmp_iptcmodel.property.photoshop_Country.description=Det fulle navnet p\u00e5 landet innholdet fokuserer p\u00e5 \u2013 enten landet vist i visuelle medier eller henvist til via tekst eller lydmedier. Dette elementet er p\u00e5 det \u00f8verste/f\u00f8rste niv\u00e5et av et loddrett geografisk hierarki. Det fulle navnet skal uttrykkes som et verbalt navn og ikke som en kode; en kode skal g\u00e5 til elementet "Landskode". +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO-landskode +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Koden for landet innholdet fokuserer p\u00e5 \u2013 enten landet som vises i visuelle medier eller henvist til via tekst eller lydmedier. Dette elementet er p\u00e5 det \u00f8verste/f\u00f8rste niv\u00e5et av et loddrett geografisk hierarki. Koden skal tas fra den to eller tre bokstaver lange koden i ISO 3166. Det fulle navnet p\u00e5 et land skal g\u00e5 til "Land"-elementet. +iptcxmp_iptcmodel.property.dc_description.title=Bildetekst/beskrivelse +iptcxmp_iptcmodel.property.dc_description.description=En tekstbeskrivelse, inkludert bildetekster, av elementets innhold, spesielt brukt n\u00e5r objektet ikke er tekst. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Overskrift +iptcxmp_iptcmodel.property.photoshop_Headline.description=Et kort sammendrag av bildeteksten. Overskriften er ikke det samme som tittelen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Sjanger +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Beskriver typen av eller intellektuelle, kunstneriske eller journalistiske karakteristikker ved et element, og ikke spesifikt innholdet. +iptcxmp_iptcmodel.property.dc_subject.title=N\u00f8kkelord +iptcxmp_iptcmodel.property.dc_subject.description=N\u00f8kkelord som uttrykker emnet for innholdet. N\u00f8kkelord kan v\u00e6re fritekst og trenger ikke \u00e5 tas fra et kontrollert vokabular. Koder fra det kontrollerte vokabularet IPTC-emnets nyhetskoder m\u00e5 g\u00e5 til "Emnekode"-feltet. +iptcxmp_iptcmodel.property.photoshop_State.title=Provins/stat +iptcxmp_iptcmodel.property.photoshop_State.description=Navnet p\u00e5 et lands underordnede region \u2013 kalt provins eller stat eller hva som helst annet \u2013 som innholdet fokuserer p\u00e5 \u2013 enten den underordnede regionen vist i visuelle medier eller som henvises til via tekst eller lydmedier. Dette elementet er p\u00e5 det andre niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC-scenekode +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Beskriver scenen av et nyhetsinnhold. Spesifiserer ett eller flere begreper fra IPTCs "scene-nyhetskoder". Hver scene representeres som en streng med 6 sifre i en usortert liste. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC-emnekode +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Spesifiserer ett eller flere emner fra IPTCs taksonomi for emne-nyhetskoder for \u00e5 kategorisere innholdet. Hvert emne representeres som en streng med 8 sifre i en usortert liste. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Stedsinformasjon +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Navnet p\u00e5 det underordnede stedet innholdet fokuserer p\u00e5 \u2013 enten stedet vist i visuelle medier eller henvist til via tekst eller lydmedier. Dette stedsnavnet kan enten v\u00e6re navnet p\u00e5 et underordnet sted i en by eller navnet p\u00e5 et velkjent sted eller (naturlig) monument utenfor en by. Som underordnet sted i en by er dette elementet p\u00e5 det fjerde niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Dato opprettet +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Tilordner dato og eventuelt klokkeslett for n\u00e5r det immaterielle innholdet ble opprettet, heller enn datoen for opprettelsen av den fysiske representasjonen. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Forfatter av bildetekst/beskrivelse +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifikator for eller navnet p\u00e5 personen som er involvert i skriving, redigering eller korrigering av beskrivelsen av innholdet. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instruksjoner +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Alt av instruksjoner fra leverand\u00f8ren eller oppretteren til mottakeren av elementet. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Jobbidentifikator +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Nummer eller identifikator for bedre h\u00e5ndtering av arbeidsflyt. Dette er en brukeropprettet identifikator knyttet til jobben elementet leveres for. +iptcxmp_iptcmodel.property.dc_title.title=Tittel +iptcxmp_iptcmodel.property.dc_title.description=En referanse i kortform til elementet. Tittelen gir et kort navn som kan leses av mennesker, som kan v\u00e6re en tekst- og/eller numerisk referanse. Det er ikke det samme som Overskrift. +iptcxmp_iptcmodel.property.dc_rights.title=Opphavsmelding +iptcxmp_iptcmodel.property.dc_rights.description=Inneholder alle n\u00f8dvendige opphavsmeldinger for \u00e5 p\u00e5berope seg de immaterielle rettighetene til elementet, og skal identifisere den n\u00e5v\u00e6rende eieren av opphavsretten til elementet. Andre enheter, som oppretteren av elementet, kan legges til i det aktuelle feltet. Merknader om bruksrettigheter skal oppgis under "Bruksvilk\u00e5r". +iptcxmp_iptcmodel.property.dc_creator.title=Oppretter +iptcxmp_iptcmodel.property.dc_creator.description=Inneholder navnet p\u00e5 personen som opprettet innholdet for dette elementet \u2013 en fotograf for fotografier, en grafiker for grafikk eller en skribent for tekstnyheter, men i tilfeller der fotografen ikke skal identifiseres, kan navnet p\u00e5 selskapet eller organisasjonen v\u00e6re passende. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Oppretters stillingstittel +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Inneholder jobbtittelen til personen som opprettet innholdet for dette elementet. Da dette er en slags kvalifikator, m\u00e5 oppretterelementet fylles ut som en obligatorisk forutsetning for \u00e5 bruke oppretterens jobbtittel. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Takk til +iptcxmp_iptcmodel.property.photoshop_Credit.description=Personer og/eller organisasjoner som leverand\u00f8ren av elementet krever at skal nevnes ved publisering. Dette er et fritekstfelt. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Bruksvilk\u00e5r +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Lisensieringsparametrene for elementet, uttrykt i fritekst. +iptcxmp_iptcmodel.property.photoshop_Source.title=Kilde +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifiserer den opprinnelige eieren av opphavsretten til elementets immaterielle innhold. Dette kan v\u00e6re et byr\u00e5, et medlem av et byr\u00e5 eller en enkeltperson. Kilden kan skille seg fra oppretteren og fra enhetene under opphavsmeldingen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adresse +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Adressedelen av kontaktopplysningene. Best\u00e5r av et valgfritt selskapsnavn og all p\u00e5krevd informasjon for \u00e5 finne bygningen eller postboksen som posten skal sendes til. Adressefeltet har flere linjer. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Poststed +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Poststed-delen av kontaktopplysningene. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Land-delen av kontaktopplysningene. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-post(er) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=E-postadresse-delen av kontaktopplysningene. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefon(er) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Telefonnummer-delen av kontaktopplysningene. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postnummer +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Delen av kontaktopplysningene som oppgir det lokale postnummeret. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Stat/provins +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Delen av kontaktopplysningene som oppgir regional informasjon slik som stat eller provins. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Nett-URL +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Nettadresse-delen av kontaktopplysningene. Flere adresser kan gis, atskilt av et komma. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Prioritet +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Avskrevet og utenfor IPTC-kjernen. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategori +iptcxmp_iptcmodel.property.photoshop_Category.description=Avskrevet og utenfor IPTC-kjernen. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Supplerende kategorier +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Avskrevet og utenfor IPTC-kjernen. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Mer modellinformasjon +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informasjon om etnisitet og andre aspekter av modellen(e) i et modellkontraktsbilde. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Bilde eller objekt i bildet +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Et sett med metadata om grafikken eller et objekt i elementet +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Koden til den aktuelle organisasjonen +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Kode fra et kontrollert vokabular for \u00e5 identifisere organisasjonen eller selskapet som omtales i innholdet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Styrt vokabularbegrep +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Et begrep for \u00e5 beskrive innholdet i bildet via en verdi fra et styrt vokabular. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Modellalder +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Alderen til de menneskelige modellene p\u00e5 tidspunktet dette bildet ble tatt i et modellkontraktsbilde. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Navnet til den aktuelle organisasjonen +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Navnet p\u00e5 organisasjonen eller selskapet som omtales i innholdet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Person som vises +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Navnet p\u00e5 en person som innholdet i dette elementet handler om. For fotografier er dette en person som vises p\u00e5 bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digital bildeidentifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Globalt unik identifikator for elementet. Det opprettes og brukes av oppretteren av elementet p\u00e5 tidspunktet for opprettelsen. Denne verdien skal ikke endres etter dette tidspunktet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Fysisk type til det opprinnelige bildet +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Typen av digital kildefil. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Type bildekilde +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Tupen av kilde til dette digitale bildet +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Hendelse +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Navngir eller beskriver den spesifikke hendelsen innholdet handler om. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Bildeleverand\u00f8rens ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifiserer den nyligste leverand\u00f8ren av elementet, som ikke n\u00f8dvendigvis er eieren eller oppretteren. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Bildeleverand\u00f8rens navn +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifiserer den nyligste leverand\u00f8ren av elementet, som ikke n\u00f8dvendigvis er eieren eller oppretteren. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Bildeleverand\u00f8rens bilde-ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Valgfri identifikator tilordnet av bildeleverand\u00f8ren til bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Siste redigerte IPTC-felt +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Datoen og eventuelt klokkeslettet da noe av IPTC ble redigert +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maksimal tilgjengelig h\u00f8yde +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Maksimal tilgjengelig h\u00f8yde i piksler av det originale fotografiet som dette fotografiet er avledet fra ved \u00e5 redusere st\u00f8rrelsen. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maksimal tilgjengelig bredde +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Maksimuk tilgjengelig bredde i piksler av det originale fotografiet som dette fotografiet er avledet fra ved \u00e5 redusere st\u00f8rrelsen. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS-versjon +iptcxmp_iptcmodel.property.plus_Version.description=Versjonsnummeret av PLUS-standardene som gjelder p\u00e5 tidspunktet for transaksjonen. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID eller ID-er til innehaveren av opphavsretten +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Eieren eller eierne av opphavsretten til det lisensierte bildet. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Navnet/navnene til innehaver(e) av opphavrett +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Eieren eller eierne av opphavsretten til det lisensierte bildet. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID eller ID-er til bildeoppretteren +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Oppretteren eller oppretterne av bildet. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Navnet/navnene til bildeoppretter(e) +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Oppretteren eller oppretterne av bildet. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUSS-ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID-en til en person eller et selskap som skal kontaktes for \u00e5 skaffe seg en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Navn +iptcxmp_iptcmodel.property.plus_LicensorName.description=Navnet p\u00e5 en person eller selskapet som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Poststed +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Byen til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Land +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Landet til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-post +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=E-posten til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Utvidet adresse +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Den utvidede adressen til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postnummer +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Postnummeret til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Regionen til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Gateadresse +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Gateadressen til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefon 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefonnummer 1 til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefon 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefonnummer 2 til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL-adressen til en person eller et selskap som skal kontaktes for \u00e5 skaffe en lisens for \u00e5 bruke elementet, eller som har lisensiert elementet. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Offentliggj\u00f8ring om modeller og mindre\u00e5rige +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Alderen p\u00e5 den yngste modellen p\u00e5 bildet, p\u00e5 tidspunktet da bildet ble til. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID ved modellkontrakt +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Valgfri identifikator knyttet til hver modellkontrakt. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status ved modellkontrakt +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Oppsummerer tilgjengeligheten og omfanget av modellkontrakter som autoriserer bruk av likheten til personer som vises p\u00e5 bildet. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID ved egenskapskontrakt +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Valgfri identifikator knyttet til hver egenskapskontrakt. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status ved egenskapskontrakt +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Oppsummerer tilgjengeligheten og omfanget av egenskapskontrakter som autoriserer bruk av egenskaper som vises p\u00e5 bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Opphavsmelding +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Inneholder n\u00f8dvendig opphavsmelding for \u00e5 p\u00e5berope seg de immaterielle rettighetene til grafikk eller et objekt i bildet, og skal identifisere den n\u00e5v\u00e6rende eieren av opphavsretten av dette arbeidet, med tilknyttede immaterielle rettigheter. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Oppretter +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Inneholder navnet p\u00e5 kunstneren som har skapt grafikken eller et objekt p\u00e5 bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Dato opprettet +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Angir datoen og eventuelt tidspunktet for n\u00e5r grafikken eller objektet p\u00e5 bildet ble opprettet. Dette viser til grafikk eller objekter med tilknyttede immaterielle rettigheter. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Kilde +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Organisasjonen eller organet som innehar og registrerer grafikken eller objektet p\u00e5 bildet for inventarform\u00e5l. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Kildens inventarnummer +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Inventarnummeret utstedt av organisasjonen eller organet som innehar og registrerer grafikken eller objektet p\u00e5 bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Tittel +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=En referanse til grafikken eller objektet p\u00e5 bildet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Poststed +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Navnet p\u00e5 poststedet til en beliggenhet. Dette elementet er p\u00e5 det fjerde niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Landets ISO-kode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=ISO-koden til landet til en beliggenhet. Dette elementet er p\u00e5 det andre niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Navn p\u00e5 landet +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Navnet p\u00e5 landet til en beliggenhet. Dette elementet er p\u00e5 det andre niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provins/stat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Navnet p\u00e5 den underordnede regionen av et land \u2013 en provins eller stat \u2013 for en beliggenhet. Dette elementet er p\u00e5 det tredje niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Stedsinformasjon +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Navnet p\u00e5 et underordnet sted. Dette navnet p\u00e5 underordnet sted skal enten v\u00e6re navnet p\u00e5 et underordnet sted til en by, eller navnet p\u00e5 et velkjent sted eller et (naturlig) monument utenfor en by. Som underordnet sted til en by er dette elementet p\u00e5 det femte niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Verdensregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Navnet p\u00e5 en beliggenhets verdensregion. Dette elementet er p\u00e5 det f\u00f8rste (\u00f8verste) niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Poststed +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Navnet p\u00e5 poststedet til en beliggenhet. Dette elementet er p\u00e5 det fjerde niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Landets ISO-kode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=ISO-koden til landet til en beliggenhet. Dette elementet er p\u00e5 det andre niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Navn p\u00e5 landet +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Navnet p\u00e5 landet til en beliggenhet. Dette elementet er p\u00e5 det andre niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provins/stat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Navnet p\u00e5 den underordnede regionen av et land \u2013 en provins eller stat \u2013 for en beliggenhet. Dette elementet er p\u00e5 det tredje niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Stedsinformasjon +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Navnet p\u00e5 et underordnet sted. Dette navnet p\u00e5 underordnet sted skal enten v\u00e6re navnet p\u00e5 et underordnet sted til en by, eller navnet p\u00e5 et velkjent sted eller et (naturlig) monument utenfor en by. Som underordnet sted til en by er dette elementet p\u00e5 det femte niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Verdensregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Navnet p\u00e5 en beliggenhets verdensregion. Dette elementet er p\u00e5 det f\u00f8rste (\u00f8verste) niv\u00e5et av et loddrett geografisk hierarki. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Objektidentifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=En unik identifikator opprettet av et register og brukt av oppretteren av elementet. Denne verdien skal ikke endres etter innf\u00f8ring. Denne identifikatoren er knyttet til en samsvarende organisasjonsidentifikator for registeret. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organisasjonsidentifikator +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=En identifikator for registeret som utstedte den samsvarende registerbilde-ID-en. + + diff --git a/models/iptc/iptc-model_nl.properties b/models/iptc/iptc-model_nl.properties new file mode 100644 index 00000000..d93a1cfd --- /dev/null +++ b/models/iptc/iptc-model_nl.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC-domeinmodel + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-aspect +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Plaats +iptcxmp_iptcmodel.property.photoshop_City.description=De naam van de plaats waarop de content betrekking heeft - dit is de plaats die in visuele media wordt weergegeven of waarnaar in tekst of audiomedia wordt verwezen. Dit element bevindt zich op het derde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.photoshop_Country.title=Land +iptcxmp_iptcmodel.property.photoshop_Country.description=De volledige naam van het land waarop de content betrekking heeft - dit is het land dat in visuele media wordt weergegeven of waarnaar in tekst of audiomedia wordt verwezen. Dit element bevindt zich op het bovenste/eerste niveau van een geografische hi\u00ebrarchie van boven naar beneden. De volledige naam moet worden uitgedrukt als een verbale naam en niet als een code, een code moet gaan naar het element "Landcode". +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO-landcode +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=De code van het land waarop de content betrekking heeft - dit is het land dat in visuele media wordt weergegeven of waarnaar in tekst of audiomedia wordt verwezen. Dit element bevindt zich op het bovenste/eerste niveau van een geografische hi\u00ebrarchie van boven naar beneden. De code moet worden verkregen op basis van de twee- of drieletterige code uit de ISO 3166-norm. De volledige naam moet gaan naar het element "Land". +iptcxmp_iptcmodel.property.dc_description.title=Bijschrift/omschrijving +iptcxmp_iptcmodel.property.dc_description.description=Een tekstuele beschrijving, met inbegrip van bijschriften, van de content van het item, die met name wordt gebruikt wanneer het object niet uit tekst bestaat. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Koptitel +iptcxmp_iptcmodel.property.photoshop_Headline.description=Een korte samenvatting van het bijschrift. Koptitel is niet hetzelfde als Titel. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intellectueel genre +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Een beschrijving van de aard, intellectuele, artistieke of journalistieke eigenschap van een item, niet specifiek de inhoud ervan. +iptcxmp_iptcmodel.property.dc_subject.title=Trefwoorden +iptcxmp_iptcmodel.property.dc_subject.description=Trefwoorden waarmee het onderwerp van de content wordt uitgedrukt. Trefwoorden kunnen uit vrije tekst bestaan en hoeven niet afkomstig te zijn uit een gecontroleerde woordenlijst. Codes uit de gecontroleerde woordenlijst IPTC-onderwerpnieuwscodes moeten komen te staan in het veld "Onderwerpcode". +iptcxmp_iptcmodel.property.photoshop_State.title=Provincie/staat +iptcxmp_iptcmodel.property.photoshop_State.description=De naam van de subregio van een land - dit wordt bijvoorbeeld een provincie of staat genoemd - waarop de content betrekking heeft. Dit is de subregio die in visuele media wordt weergegeven of waarnaar in tekst of audiomedia wordt verwezen. Dit element bevindt zich op het tweede niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC-sc\u00e8necode +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Beschrijving van de sc\u00e8ne van nieuwscontent. Deze bestaan uit \u00e9\u00e9n of meerdere termen uit de IPTC-"sc\u00e8ne-nieuwscodes". Elke sc\u00e8ne wordt aangeduid als een tekenreeks van 6 cijfers in een niet-geordende lijst. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC-onderwerpcode +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Hiermee worden een of meerdere onderwerpen uit de IPTC-onderwerp-nieuwscode-taxonomie opgegeven voor het categoriseren van de content. Elk onderwerp wordt aangeduid als een tekenreeks van 8 cijfers in een niet-geordende lijst. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Sublocatie +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=De naam van een sublocatie waarop de content betrekking heeft - dit is de locatie die in visuele media wordt weergegeven of waarnaar in tekst of audiomedia wordt verwezen. Deze locatienaam kan de naam zijn van een sublocatie van een plaats of de naam van een bekende locatie of een bekend (natuur)monument buiten een plaats. In de betekenis van een sublocatie van een plaats bevindt dit element zich op het vierde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Aanmaakdatum +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Hiermee worden de datum en desgewenst de tijd weergegeven waarop de intellectuele content is gemaakt, in tegenstelling tot de datum waarop de fysieke weergave is gemaakt. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Auteur van bijschrift/omschrijving +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=De ID of naam van de persoon die betrokken is bij het schrijven, bewerken of corrigeren van de beschrijving van de content. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instructies +iptcxmp_iptcmodel.property.photoshop_Instructions.description=De instructies van de leverancier of maker voor de ontvanger van het item. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Taaknaam +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Een nummer of ID voor verbeterde afhandeling van de workflow. Deze wordt gemaakt door de gebruiker en heeft betrekking op de taak waarvoor het item is verstrekt. +iptcxmp_iptcmodel.property.dc_title.title=Titel +iptcxmp_iptcmodel.property.dc_title.description=Een verkorte verwijzing voor het item. Titel is een korte, menselijk leesbare naam die een tekst- en/of numerieke verwijzing kan zijn. Titel is niet hetzelfde als Koptitel. +iptcxmp_iptcmodel.property.dc_rights.title=Kennisgeving over auteursrechten +iptcxmp_iptcmodel.property.dc_rights.description=Dit bevat elke benodigde auteursrechtverklaring voor aanspraken op het intellectuele eigendom voor dit item en dient de huidige eigenaar van het auteursrecht voor het item te identificeren. Andere entiteiten zoals de maker van het item kunnen in het bijbehorende veld worden ingevoerd. Opmerkingen over gebruiksrechten moeten worden ingevoerd in "Gebruiksvoorwaarden voor rechten". +iptcxmp_iptcmodel.property.dc_creator.title=Maker +iptcxmp_iptcmodel.property.dc_creator.description=Dit bevat de naam van de persoon die de content van dit item heeft gemaakt, een fotograaf in het geval van foto's, een grafisch kunstenaar bij grafische kunst, of een auteur bij nieuws in tekstvorm. In gevallen waarin de identiteit van de fotograaf niet moet worden bekendgemaakt, kan echter de naam van een bedrijf of organisatie worden gebruikt. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Functietitel van de maker +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Dit bevat de functietitel van de persoon die de content van dit item heeft gemaakt. Aangezien dit een soort kwalificatie is, moet het element Maker worden ingevuld als een verplichte vereiste voor het gebruik van Functietitel van de maker. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Vermeldingsregel +iptcxmp_iptcmodel.property.photoshop_Credit.description=De vermelding van de persoon (personen) en/of organisatie(s) vereist door de leverancier van het item en die moet worden gebruikt bij publicatie. Dit is een vrije-tekstveld. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Gebruiksvoorwaarden voor rechten +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=De licentieparameters van het item, uitgedrukt in vrije tekst. +iptcxmp_iptcmodel.property.photoshop_Source.title=Bron +iptcxmp_iptcmodel.property.photoshop_Source.description=Hiermee wordt de oorspronkelijk eigenaar ge\u00efdentificeerd van het auteursrecht voor de intellectuele content van het item. Dat kan een bureau zijn, een medewerker van een bureau of een individuele persoon. Bron kan afwijken van Maker en van de entiteiten in de Kennisgeving over auteursrechten. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adres +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Het adresgedeelte van de contactgegevens. Dit omvat een optionele bedrijfsnaam en alle gegevens die nodig zijn om voor het aanduiden van het gebouw of de postbus waarnaar post moet worden verzonden. Daartoe is het adres een meerregelveld. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Plaats +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Het plaatsgedeelte van de contactgegevens. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Het landgedeelte van de contactgegevens. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-mailadres(sen) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Het e-mailadresgedeelte van de contactgegevens. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefoonnummer(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Het telefoonummergedeelte van de contactgegevens. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postcode +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Het gedeelte van de contactgegevens dat de lokale postcode aangeeft. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Staat/provincie +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Het gedeelte van de contactgegevens dat regionale informatie aangeeft, zoals de staat of provincie. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web-URL(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Het webadresgedeelte van de contactgegevens. Er kunnen meerdere adressen worden ingevoerd, gescheiden door een komma. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Urgentie +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Afgeschaft en buiten de IPTC-kern. +iptcxmp_iptcmodel.property.photoshop_Category.title=Categorie +iptcxmp_iptcmodel.property.photoshop_Category.description=Afgeschaft en buiten de IPTC-kern. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Aanvullende categorie\u00ebn +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Afgeschaft en buiten de IPTC-kern. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Aanvullende modelgegevens +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informatie over de etniciteit en andere facetten van het (de) model(len) in een door het model vrijgegeven afbeelding. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Kunstwerk of object in de afbeelding +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Een set metagegevens over een kunstwerk of object in het item +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Code van betreffende organisatie +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Code uit een gecontroleerde woordenlijst voor het identificeren van de/het in de content opgenomen organisatie of bedrijf. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Term uit gecontroleerde woordenlijst +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Een term voor het beschrijven van de content van de afbeelding op basis van een waarde uit een gecontroleerde woordenlijst. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Leeftijd van model +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Leeftijd van het (de) menselijke model(len) op het moment dat de foto is gemaakt in een door het model vrijgegeven afbeelding. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Naam van betreffende organisatie +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=De naam van de/het in de content opgenomen organisatie of bedrijf. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Afgebeelde persoon +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=De naam van een persoon op wie de content van het item betrekking heeft. Voor foto's is dit een persoon die in de afbeelding wordt weergegeven. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=ID van digitaal beeld +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=De GUID (Globally Unique Identifier) voor het item. Deze wordt gemaakt en toegepast door de maker van het item op het moment dat dit gemaakt werd. De waarde blijft daarna ongewijzigd. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Fysiek type van originele foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Het type digitaal bronbestand. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Brontype van foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Het brontype van dit digitale beeld +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Gebeurtenis +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=De naam of beschrijving van de specifieke gebeurtenis waarop de content betrekking heeft. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID van beeldleverancier +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Duidt de meest recente leverancier van het item aan; dit is niet altijd de eigenaar of maker. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Naam van beeldleverancier +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Duidt de meest recente leverancier van het item aan; dit is niet altijd de eigenaar of maker. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Beeldnummer van beeldleverancier +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Optionele ID die door de beeldleverancier is toegewezen aan de afbeelding. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC-velden laatst bewerkt +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=De datum en desgewenst de tijd waarop een IPTC-veld is bewerkt +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maximaal beschikbare hoogte +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=De maximaal beschikbare hoogte in pixels van de originele foto waarvan deze foto is afgeleid door verkleining. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maximaal beschikbare breedte +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=De maximale beschikbare breedte in pixels van de originele foto waarvan deze foto is afgeleid door verkleining. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS-versie +iptcxmp_iptcmodel.property.plus_Version.description=Het versienummer van de PLUS-standaarden die van toepassing waren ten tijde van de transactie. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID('s) van auteursrechteigenaar +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=De eigenaar of eigenaars van het auteursrecht voor het in licentie gegeven beeld. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Na(a)m(en) van auteursrechteigenaar +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=De eigenaar of eigenaars van het auteursrecht voor het in licentie gegeven beeld. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID('s) van maker van beeld +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=De maker of makers van het beeld. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Naam van maker van het beeld +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=De maker of makers van het beeld. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een licentie voor gebruik van het item, of die/dat het item in licentie heeft gegeven. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Naam +iptcxmp_iptcmodel.property.plus_LicensorName.description=De naam van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Plaats +iptcxmp_iptcmodel.property.plus_LicensorCity.description=De plaats van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Land +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Het land van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-mailadres +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Het e-mailadres van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Uitgebreid adres +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Het uitgebreide adres van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postcode +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=De postcode van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Regio +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=De regio van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Adres +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Het adres van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefoonnummer 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefoonnummer 1 van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefoonnummer 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefoonnummer 2 van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=De URL van een persoon of bedrijf waarmee contact moet worden opgenomen voor het verkrijgen van een gebruikslicentie voor het item, of die/dat het item onder licentie heeft verstrekt. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Openbaarmaking van leeftijd van minderjarige modellen +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=De leeftijd van het jongste model in de afbeelding, op het moment dat de afbeelding werd gemaakt. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID van modelrelease +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Een optionele ID die is gekoppeld aan elke modelrelease. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status van modelrelease +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Een overzicht van de beschikbaarheid en het bereik van modelreleases waarmee het gebruik van de beeltenis van personen in de foto wordt geautoriseerd. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID van eigendomsrelease +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Een optionele ID die is gekoppeld aan elke eigendomsrelease. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status van eigendomsrelease +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Een overzicht van de beschikbaarheid en het bereik van eigendomsreleases waarmee het gebruik van de eigendommen in de foto wordt geautoriseerd. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Kennisgeving over auteursrechten +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Alle benodigde auteursrechtkennisgevingen voor het opeisen van de intellectuele eigendom voor een kunstwerk of object in de afbeelding, waarin de huidige eigenaar van het auteursrecht voor dit werk en de daaraan verbonden intellectuele-eigendomsrechten worden ge\u00efdentificeerd. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Maker +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=De naam van de artiest die een kunstwerk of object in de afbeelding heeft gemaakt. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Aanmaakdatum +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Hiermee worden de datum en desgewenst de tijd weergegeven waarop het kunstwerk of object in de afbeelding is gemaakt. Dit heeft betrekking op kunstwerken of objecten met de daarbij behorende intellectuele-eigendomsrechten. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Bron +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=De organisatie of instantie die het kunstwerk of object in de afbeelding in bewaring heeft en registreert voor inventarisatiedoeleinden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Inventarisnummer van bron +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Het inventarisnummer dat is verstrekt door de organisatie of instantie die het kunstwerk of object in de afbeelding in bewaring heeft en registreert. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titel +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Een verwijzing voor het kunstwerk of object in de afbeelding +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Plaats +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=De naam van de plaats van een locatie. Dit element bevindt zich op het vierde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=ISO-landcode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=De ISO-code van een land van een locatie. Dit element bevindt zich op het tweede niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Landnaam +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=De naam van een land van een locatie. Dit element bevindt zich op het tweede niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Provincie/staat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=De naam van een subregio of een land - een provincie of staat - van een locatie. Dit element bevindt zich op het derde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Sublocatie +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=De naam van een sublocatie. Deze naam kan de naam zijn van een sublocatie van een plaats of de naam van een bekende locatie of een bekend (natuur)monument buiten een plaats. In de betekenis van een sublocatie van een plaats bevindt dit element zich op het vijfde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Regio +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=De naam van een wereldregio of een locatie. Dit element bevindt zich op het eerste (top 1) niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Plaats +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=De naam van de plaats van een locatie. Dit element bevindt zich op het vierde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=ISO-landcode +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=De ISO-code van een land van een locatie. Dit element bevindt zich op het tweede niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Landnaam +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=De naam van een land van een locatie. Dit element bevindt zich op het tweede niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Provincie/staat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=De naam van een subregio of een land - een provincie of staat - van een locatie. Dit element bevindt zich op het derde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Sublocatie +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=De naam van een sublocatie. Deze naam kan de naam zijn van een sublocatie van een plaats of de naam van een bekende locatie of een bekend (natuur)monument buiten een plaats. In de betekenis van een sublocatie van een plaats bevindt dit element zich op het vijfde niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Regio +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=De naam van een wereldregio of een locatie. Dit element bevindt zich op het eerste (top 1) niveau van een geografische hi\u00ebrarchie van boven naar beneden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Onderdeel-ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Een unieke ID die wordt gemaakt door een register en wordt toegepast door de maker van het item. Deze waarde blijft na het toepassen ongewijzigd. Deze ID is gekoppeld aan een bijbehorende registerorganisatie-ID. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organisatie-ID +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Een ID voor het register dat de bijbehorende registerafbeelding-ID heeft uitgegeven. + + diff --git a/models/iptc/iptc-model_pl.properties b/models/iptc/iptc-model_pl.properties new file mode 100644 index 00000000..b645d1ae --- /dev/null +++ b/models/iptc/iptc-model_pl.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Model domeny Alfresco IPTC + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspekt IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Miasto +iptcxmp_iptcmodel.property.photoshop_City.description=Nazwa miasta, kt\u00f3rego dotyczy ta zawarto\u015b\u0107 \u2014 oznacza miejsce pokazywane w multimediach wizualnych lub wspominane w tek\u015bcie lub multimediach audio. Ten element jest na trzecim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.photoshop_Country.title=Kraj +iptcxmp_iptcmodel.property.photoshop_Country.description=Pe\u0142na nazwa kraju, kt\u00f3rego dotyczy ta zawarto\u015b\u0107 \u2014 oznacza kraj pokazywany w multimediach wizualnych lub wspominany w tek\u015bcie lub multimediach audio. Ten element jest na najwy\u017cszym/pierwszym poziomie hierarchii geograficznej. Pe\u0142na nazwa powinna by\u0107 wyra\u017cona s\u0142owami, a nie kodem. Kod nale\u017cy wprowadzi\u0107 w elemencie \u201eKod kraju\u201d. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=Kod kraju ISO +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Kod kraju, kt\u00f3rego dotyczy ta zawarto\u015b\u0107 \u2014 oznacza kraj pokazywany w multimediach wizualnych lub wspominany w tek\u015bcie lub multimediach audio. Ten element jest na najwy\u017cszym/pierwszym poziomie hierarchii geograficznej. Kod powinien by\u0107 dwu- lub trzyliterowym kodem ze standardu ISO 3166. Pe\u0142n\u0105 nazw\u0119 kraju nale\u017cy wprowadzi\u0107 w elemencie \u201eKraj\u201d. +iptcxmp_iptcmodel.property.dc_description.title=Napis/opis +iptcxmp_iptcmodel.property.dc_description.description=Tekstowy opis, w tym podpis, zawarto\u015bci elementu, u\u017cywany w szczeg\u00f3lno\u015bci, gdy obiekt nie jest tekstem. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Nag\u0142\u00f3wek +iptcxmp_iptcmodel.property.photoshop_Headline.description=Kr\u00f3tkie streszczenie podpisu. Nag\u0142\u00f3wek to nie to samo co tytu\u0142. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Rodzaj w\u0142asno\u015bci intelektualnej +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Opisuje rodzaj, tj. w\u0142a\u015bciwo\u015b\u0107 intelektualn\u0105, artystyczn\u0105 lub dziennikarsk\u0105 elementu. Nie oznacza jego zawarto\u015bci. +iptcxmp_iptcmodel.property.dc_subject.title=S\u0142owa kluczowe +iptcxmp_iptcmodel.property.dc_subject.description=S\u0142owa kluczowe u\u017cywane do wyra\u017cania tematu zawarto\u015bci. S\u0142owa kluczowe mog\u0105 by\u0107 dowolnym tekstem i nie musz\u0105 pochodzi\u0107 ze s\u0142ownika s\u0142ownictwa kontrolowanego. Kody ze s\u0142ownika s\u0142ownictwa kontrolowanego IPTC Subject NewsCodes nale\u017cy wprowadza\u0107 w polu \u201eKod tematu\u201d. +iptcxmp_iptcmodel.property.photoshop_State.title=Powiat/wojew\u00f3dztwo +iptcxmp_iptcmodel.property.photoshop_State.description=Nazwa regionu administracyjnego kraju (okre\u015blanego terminem powiat, wojew\u00f3dztwo lub innym), kt\u00f3rego dotyczy ta zawarto\u015b\u0107 \u2014 oznacza region administracyjny pokazywany w multimediach wizualnych lub wspomniany w tek\u015bcie lub multimediach audio. Ten element jest na drugim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=Kod sceny IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Opisuje scen\u0119 zawarto\u015bci wiadomo\u015bci. Wykorzystuje co najmniej jeden z termin\u00f3w z taksonomii IPTC \u201eScene-NewsCodes\u201d. Ka\u017cda scena jest przedstawiana jako ci\u0105g sze\u015bciu cyfr na li\u015bcie nieuporz\u0105dkowanej. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=Kod tematu IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Wykorzystuje co najmniej jeden z temat\u00f3w z taksonomii IPTC Subject-NewsCodes do klasyfikacji zawarto\u015bci. Ka\u017cdy temat jest przedstawiany jako ci\u0105g o\u015bmiu cyfr na li\u015bcie nieuporz\u0105dkowanej. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Lokalizacja podrz\u0119dna +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Nazwa lokalizacji podrz\u0119dnej, kt\u00f3rej dotyczy ta zawarto\u015b\u0107 \u2014 oznacza lokalizacj\u0119 pokazywan\u0105 w multimediach wizualnych lub wspomnian\u0105 w tek\u015bcie lub multimediach audio. Mo\u017ce to by\u0107 albo nazwa lokalizacji podrz\u0119dnej w mie\u015bcie, albo nazwa popularnej lokalizacji lub (naturalnego) pomnika poza granicami miasta. W sensie lokalizacji podrz\u0119dnej miasta ten element jest na czwartym poziomie hierarchii geograficznej. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Data utworzenia +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Oznacza dat\u0119 i opcjonalnie godzin\u0119 utworzenia zawarto\u015bci intelektualnej, a nie dat\u0119 utworzenia fizycznego odpowiednika. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Tw\u00f3rca podpisu/opisu +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identyfikator lub nazwisko osoby, kt\u00f3ra napisa\u0142a, edytowa\u0142a lub poprawia\u0142a opis zawarto\u015bci. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instrukcje +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Dowolna liczba instrukcji od dostawcy lub tw\u00f3rcy przeznaczona dla odbiorcy tego elementu. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identyfikator zadania +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Numer lub identyfikator wskazuj\u0105cy cel ulepszonej obs\u0142ugi przep\u0142ywu roboczego. Jest to utworzony przez u\u017cytkownika identyfikator powi\u0105zany z zadaniem, do kt\u00f3rego dostarczany jest element. +iptcxmp_iptcmodel.property.dc_title.title=Tytu\u0142 +iptcxmp_iptcmodel.property.dc_title.description=Informacje skr\u00f3towe dotycz\u0105ce elementu. Tytu\u0142 zawiera kr\u00f3tk\u0105, zrozumia\u0142\u0105 dla ludzi nazw\u0119, kt\u00f3ra mo\u017ce by\u0107 tekstem i/lub odwo\u0142aniem numerycznym. Nie jest tym samym co nag\u0142\u00f3wek. +iptcxmp_iptcmodel.property.dc_rights.title=Informacje o prawach autorskich +iptcxmp_iptcmodel.property.dc_rights.description=Zawiera wszelkie informacje o prawach autorskich wymagane do przej\u0119cia w\u0142asno\u015bci intelektualnej tego elementu. Powinny wskazywa\u0107 bie\u017c\u0105cego w\u0142a\u015bciciela praw autorskich elementu. Inne jednostki, takie jak tw\u00f3rc\u0119 tego elementu, mo\u017cna doda\u0107 do odpowiedniego pola. Uwagi dotycz\u0105ce praw u\u017cywania nale\u017cy poda\u0107 w elemencie \u201ePrawa \u2014 warunki u\u017cytkowania\u201d. +iptcxmp_iptcmodel.property.dc_creator.title=Tw\u00f3rca +iptcxmp_iptcmodel.property.dc_creator.description=Zawiera nazwisko osoby, kt\u00f3ra utworzy\u0142a zawarto\u015b\u0107 tego elementu, np. fotograf robi\u0105cy zdj\u0119cie, artysta rysuj\u0105cy grafik\u0119 lub pisarz tworz\u0105cy wiadomo\u015bci tekstowe. Jednak\u017ce w razie, gdy fotograf nie powinien by\u0107 wskazywany, mo\u017cna u\u017cy\u0107 nazwy firmy lub organizacji. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Stanowisko tw\u00f3rcy +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Zawiera stanowisko osoby, kt\u00f3ra utworzy\u0142a zawarto\u015b\u0107 tego elementu. Poniewa\u017c jest to wyraz okre\u015blaj\u0105cy, nale\u017cy wype\u0142ni\u0107 element Tw\u00f3rca, aby m\u00f3c wype\u0142ni\u0107 stanowisko tw\u00f3rcy. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Wiersz autora +iptcxmp_iptcmodel.property.photoshop_Credit.description=Informacje o autorze, kt\u00f3re maj\u0105 by\u0107 u\u017cywane przez osoby i/lub organizacje podczas publikowania elementu. To jest pole z tekstem dowolnym. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Prawa \u2014 warunki u\u017cytkowania +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Warunki licencjonowania elementu opisane za pomoc\u0105 tekstu. +iptcxmp_iptcmodel.property.photoshop_Source.title=\u0179r\u00f3d\u0142o +iptcxmp_iptcmodel.property.photoshop_Source.description=Oznacza pierwotnego w\u0142a\u015bciciela praw autorskich zawarto\u015bci intelektualnej danego elementu. Mo\u017ce to by\u0107 agencja, cz\u0142onek agencji lub osoba fizyczna. \u0179r\u00f3d\u0142o mo\u017ce si\u0119 r\u00f3\u017cni\u0107 od tw\u00f3rcy, a tak\u017ce jednostek podanych w elemencie \u201eInformacje o prawach autorskich\u201d. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adres +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do adresu. Sk\u0142ada si\u0119 z opcjonalnej nazwy firmy i wszystkich wymaganych informacji umo\u017cliwiaj\u0105cych lokalizacj\u0119 budynku lub skrytki pocztowej, na kt\u00f3r\u0105 ma by\u0107 wysy\u0142ana poczta. W zwi\u0105zku z tym adres jest polem wielowierszowym. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Miasto +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do miasta. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Kraj +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do kraju. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=Adresy e-mail +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do adresu e-mail. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Numery telefon\u00f3w +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do numeru telefonu. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Kod pocztowy +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do lokalnego kodu pocztowego. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Wojew\u00f3dztwo/powiat +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do informacji regionalnych, takich jak wojew\u00f3dztwo lub powiat. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Adresy URL witryny +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Cz\u0119\u015b\u0107 informacji kontaktowych odnosz\u0105ca si\u0119 do adresu witryny. Mo\u017cna poda\u0107 wiele adres\u00f3w, rozdzielaj\u0105c je przecinkami. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Pilno\u015b\u0107 +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Przestarza\u0142e i nieu\u017cywane w schemacie IPTC Core. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategoria +iptcxmp_iptcmodel.property.photoshop_Category.description=Przestarza\u0142e i nieu\u017cywane w schemacie IPTC Core. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Kategorie uzupe\u0142niaj\u0105ce +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Przestarza\u0142e i nieu\u017cywane w schemacie IPTC Core. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Dodatkowe informacje o modelu +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informacje o przynale\u017cno\u015bci etnicznej i innych cechach model\u00f3w przedstawionych na obrazach ze zgod\u0105 na publikacj\u0119 model\u00f3w. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Dzie\u0142o sztuki lub obiekt przedstawione na obrazie +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Zestaw metadanych dotycz\u0105cych dzie\u0142a sztuki lub obiektu przedstawionych w elemencie +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Kod przedstawionej organizacji +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Kod ze s\u0142ownika s\u0142ownictwa kontrolowanego s\u0142u\u017c\u0105cy do identyfikowania organizacji lub firmy, kt\u00f3ra jest wymieniona w zawarto\u015bci. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Termin ze s\u0142ownika s\u0142ownictwa kontrolowanego +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Termin u\u017cywany do opisywania zawarto\u015bci obrazu przy u\u017cyciu warto\u015bci ze s\u0142ownika s\u0142ownictwa kontrolowanego. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Wiek modela +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Wiek model\u00f3w w momencie zrobienia obrazu ze zgod\u0105 na publikacj\u0119 model\u00f3w. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Nazwa przedstawionej organizacji +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Nazwa organizacji lub firmy, kt\u00f3re s\u0105 przedstawione w zawarto\u015bci. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Pokazywana osoba +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Nazwisko osoby, o kt\u00f3rej jest zawarto\u015b\u0107 tego elementu. W przypadku zdj\u0119\u0107 jest to osoba pokazywana na obrazie. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identyfikator obrazu cyfrowego +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Unikatowy identyfikator globalny elementu. Jest tworzony i nadawany przez tw\u00f3rc\u0119 elementu w momencie jego utworzenia. Tej warto\u015bci nie wolno zmienia\u0107 po utworzeniu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Typ fizyczny oryginalnego zdj\u0119cia +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Typ \u017ar\u00f3d\u0142owego pliku cyfrowego. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Typ \u017ar\u00f3d\u0142a dotycz\u0105cego tego zdj\u0119cia +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Typ \u017ar\u00f3d\u0142a dotycz\u0105cego tego obrazu cyfrowego +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Zdarzenie +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Nazywa lub opisuje konkretne zdarzenie, kt\u00f3rego dotyczy zawarto\u015b\u0107. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Identyfikator dostawcy obrazu +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identyfikuje ostatniego dostawc\u0119 danego elementu, kt\u00f3ry nie musi by\u0107 w\u0142a\u015bcicielem ani tw\u00f3rc\u0105. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Nazwa dostawcy obrazu +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identyfikuje ostatniego dostawc\u0119 danego elementu, kt\u00f3ry nie musi by\u0107 w\u0142a\u015bcicielem ani tw\u00f3rc\u0105. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Identyfikator obrazu nadany przez dostawc\u0119 obrazu +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Opcjonalny identyfikator przydzielany przez dostawc\u0119 do obrazu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=Data ostatniej edycji p\u00f3l IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Data i opcjonalnie godzina ostatniej edycji p\u00f3l IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maksymalna dost\u0119pna wysoko\u015b\u0107 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Maksymalna dost\u0119pna wysoko\u015b\u0107 oryginalnego zdj\u0119cia (w pikselach), z kt\u00f3rego zosta\u0142o utworzone to zdj\u0119cie przez zmniejszenie rozmiaru. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maksymalna dost\u0119pna szeroko\u015b\u0107 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Maksymalna dost\u0119pna szeroko\u015b\u0107 oryginalnego zdj\u0119cia (w pikselach), z kt\u00f3rego zosta\u0142o utworzone to zdj\u0119cie przez zmniejszenie rozmiaru. +iptcxmp_iptcmodel.property.plus_Version.title=Wersja PLUS +iptcxmp_iptcmodel.property.plus_Version.description=Numer wersji standardu PLUS obowi\u0105zuj\u0105cej w momencie wykonania transakcji. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=Identyfikatory w\u0142a\u015bciciela praw autorskich +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=W\u0142a\u015bciciel lub w\u0142a\u015bciciele praw autorskich do licencjonowanego obrazu. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Nazwy w\u0142a\u015bcicieli praw autorskich +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=W\u0142a\u015bciciel lub w\u0142a\u015bciciele praw autorskich do licencjonowanego obrazu. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=Identyfikatory tw\u00f3rcy obrazu +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Tw\u00f3rca lub tw\u00f3rcy obrazu. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Nazwa tw\u00f3rcy obrazu +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Tw\u00f3rca lub tw\u00f3rcy obrazu. +iptcxmp_iptcmodel.property.plus_LicensorID.title=Identyfikator PLUS +iptcxmp_iptcmodel.property.plus_LicensorID.description=Identyfikator osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nazwa +iptcxmp_iptcmodel.property.plus_LicensorName.description=Nazwisko osoby lub nazwa firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Miasto +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Miasto osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Kraj +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Kraj osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=Adres e-mail +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Adres e-mail osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Adres rozszerzony +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Adres rozszerzony osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Kod pocztowy +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Kod pocztowy osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Region osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Ulica i numer +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Ulica i numer osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Numer telefonu 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Numer telefonu 1 osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Numer telefonu 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Numer telefonu 2 osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=Adres URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=Adres URL osoby lub firmy, z kt\u00f3rymi nale\u017cy kontaktowa\u0107 si\u0119, aby uzyska\u0107 licencj\u0119 u\u017cytkowania elementu, lub kt\u00f3re udzieli\u0142y licencji na dany element. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Ujawnienie wieku nieletniego modela +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Wiek najm\u0142odszego modela przedstawionego na obrazie w momencie zrobienia zdj\u0119cia. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=Identyfikator zgody na publikacj\u0119 modela +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Opcjonalny identyfikator powi\u0105zany z ka\u017cd\u0105 zgod\u0105 na publikacj\u0119 modela. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status zgody na publikacj\u0119 modela +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Podsumowanie dost\u0119pno\u015bci i zakresu zgody modela na wykorzystanie wizerunku osoby przedstawionej na zdj\u0119ciu. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=Identyfikator zgody na publikacj\u0119 nieruchomo\u015bci +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Opcjonalny identyfikator powi\u0105zany z ka\u017cd\u0105 zgod\u0105 na publikacj\u0119 nieruchomo\u015bci. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status zgody na publikacj\u0119 nieruchomo\u015bci +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Podsumowanie dost\u0119pno\u015bci i zakresu zgody na wykorzystanie wygl\u0105du nieruchomo\u015bci przedstawionej na zdj\u0119ciu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Informacje o prawach autorskich +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Zawiera wszelkie informacje o prawach autorskich wymagane do przej\u0119cia w\u0142asno\u015bci intelektualnej dzie\u0142a sztuki lub elementu przedstawionego na obrazie; powinny wskazywa\u0107 bie\u017c\u0105cego w\u0142a\u015bciciela praw autorskich tej pracy z powi\u0105zanymi prawami w\u0142asno\u015bci intelektualnej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Tw\u00f3rca +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Zawiera nazwisko artysty, kt\u00f3ry utworzy\u0142 dzie\u0142o sztuki lub obiekt przedstawione na obrazie. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Data utworzenia +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Oznacza dat\u0119 i opcjonalnie godzin\u0119 utworzenia dzie\u0142a sztuki lub obiektu przedstawionych na obrazie. Dotyczy to dzie\u0142 sztuki lub obiekt\u00f3w z powi\u0105zanymi prawami w\u0142asno\u015bci intelektualnej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=\u0179r\u00f3d\u0142o +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Organizacja lub podmiot b\u0119d\u0105ce w posiadaniu i rejestruj\u0105ce dzie\u0142o sztuki lub obiekt z obrazu w celach inwentaryzacyjnych. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=Numer inwentaryzacyjny \u017ar\u00f3d\u0142a +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Numer inwentaryzacyjny nadany przez organizacj\u0119 lub podmiot b\u0119d\u0105ce w posiadaniu i rejestruj\u0105ce dzie\u0142o sztuki lub obiekt z obrazu. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Tytu\u0142 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Odwo\u0142anie do dzie\u0142a sztuki lub obiektu przedstawionych na obrazie. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Miasto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Nazwa miasta lokalizacji. Ten element jest na czwartym poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Kod ISO kraju +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=Kod ISO kraju lokalizacji. Ten element jest na drugim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Nazwa kraju +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Nazwa kraju lokalizacji. Ten element jest na drugim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Powiat/wojew\u00f3dztwo +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Nazwa regionu administracyjnego (powiat lub wojew\u00f3dztwo) kraju lokalizacji. Ten element jest na trzecim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Lokalizacja podrz\u0119dna +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Nazwa lokalizacji podrz\u0119dnej. Ta nazwa lokalizacji podrz\u0119dnej mo\u017ce by\u0107 albo nazw\u0105 lokalizacji podrz\u0119dnej w mie\u015bcie, albo nazw\u0105 popularnej lokalizacji lub (naturalnego) pomnika poza granicami miasta. W sensie lokalizacji podrz\u0119dnej miasta ten element jest na pi\u0105tym poziomie hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Region \u015bwiata +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Nazwa regionu \u015bwiata lokalizacji. Ten element jest na pierwszym poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Miasto +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Nazwa miasta lokalizacji. Ten element jest na czwartym poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Kod ISO kraju +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=Kod ISO kraju lokalizacji. Ten element jest na drugim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Nazwa kraju +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Nazwa kraju lokalizacji. Ten element jest na drugim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Powiat/wojew\u00f3dztwo +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Nazwa regionu administracyjnego (powiat lub wojew\u00f3dztwo) kraju lokalizacji. Ten element jest na trzecim poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Lokalizacja podrz\u0119dna +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Nazwa lokalizacji podrz\u0119dnej. Ta nazwa lokalizacji podrz\u0119dnej mo\u017ce by\u0107 albo nazw\u0105 lokalizacji podrz\u0119dnej w mie\u015bcie, albo nazw\u0105 popularnej lokalizacji lub (naturalnego) pomnika poza granicami miasta. W sensie lokalizacji podrz\u0119dnej miasta ten element jest na pi\u0105tym poziomie hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Region \u015bwiata +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Nazwa regionu \u015bwiata lokalizacji. Ten element jest na pierwszym poziomie w hierarchii geograficznej. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identyfikator elementu +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Unikatowy identyfikator utworzony przez zarejestrowanie i przydzielony przez tw\u00f3rc\u0119 tego elementu. Tej warto\u015bci nie wolno zmienia\u0107 po przydzieleniu. Identyfikator jest po\u0142\u0105czony z odpowiednim identyfikatorem organizacji w rejestrze. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identyfikator organizacji +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Identyfikator rejestru, z kt\u00f3rego pochodzi odpowiedni identyfikator obrazu. + + diff --git a/models/iptc/iptc-model_pt_BR.properties b/models/iptc/iptc-model_pt_BR.properties new file mode 100644 index 00000000..27a34b89 --- /dev/null +++ b/models/iptc/iptc-model_pt_BR.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Modelo de dom\u00ednio IPTC Alfresco + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=Aspecto IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Cidade +iptcxmp_iptcmodel.property.photoshop_City.description=Nome da cidade na qual o conte\u00fado se concentra, seja o lugar exibido na m\u00eddia visual ou referenciado em m\u00eddia de texto ou \u00e1udio. Esse elemento est\u00e1 no terceiro n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.photoshop_Country.title=Pa\u00eds +iptcxmp_iptcmodel.property.photoshop_Country.description=Nome completo do pa\u00eds no qual o conte\u00fado se concentra, seja o pa\u00eds exibido na m\u00eddia visual ou referenciado em m\u00eddia de texto ou \u00e1udio. Esse elemento est\u00e1 no primeiro n\u00edvel/n\u00edvel superior de uma hierarquia geogr\u00e1fica de cima para baixo. O nome completo deve ser expresso como um nome verbal e n\u00e3o um c\u00f3digo, um c\u00f3digo deve ir no elemento "CountryCode" +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=C\u00f3digo ISO do Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=C\u00f3digo do pa\u00eds no qual o conte\u00fado se concentra, seja o pa\u00eds exibido na m\u00eddia visual ou referenciado em m\u00eddia de texto ou \u00e1udio. Esse elemento est\u00e1 no primeiro n\u00edvel/n\u00edvel superior de uma hierarquia geogr\u00e1fica de cima para baixo. O c\u00f3digo deve ser retirado do c\u00f3digo de duas ou tr\u00eas letras ISO 3166. O nome completo de um pa\u00eds deve ir para o elemento "Country". +iptcxmp_iptcmodel.property.dc_description.title=Legenda/Descri\u00e7\u00e3o +iptcxmp_iptcmodel.property.dc_description.description=Uma descri\u00e7\u00e3o textual, incluindo legendas, do conte\u00fado do item, especialmente usada quando o objeto n\u00e3o \u00e9 texto. +iptcxmp_iptcmodel.property.photoshop_Headline.title=T\u00edtulo +iptcxmp_iptcmodel.property.photoshop_Headline.description=Uma breve sinopse da legenda. O cabe\u00e7alho \u00e9 diferente do t\u00edtulo. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=G\u00eanero Intelectual +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Descreve a natureza, caracter\u00edstica intelectual, art\u00edstica ou jornal\u00edstica de um item, n\u00e3o especificamente o conte\u00fado. +iptcxmp_iptcmodel.property.dc_subject.title=Palavras-chave +iptcxmp_iptcmodel.property.dc_subject.description=Palavras-chave para expressar o assunto do conte\u00fado. As palavras-chave podem ser texto livre e n\u00e3o precisam ser retiradas de um vocabul\u00e1rio controlado. Os c\u00f3digos do vocabul\u00e1rio controlado NewsCodes Assunto IPTC deve ir no campo "C\u00f3digo de assunto". +iptcxmp_iptcmodel.property.photoshop_State.title=Regi\u00e3o/Estado +iptcxmp_iptcmodel.property.photoshop_State.description=Nome da sub-regi\u00e3o de um pa\u00eds, seja chamada prov\u00edncia ou estado ou outro termo, na qual o conte se concentra, seja a sub-regi\u00e3o exibida na m\u00eddia visual ou referenciada em m\u00eddia de texto ou \u00e1udio. Esse elemento est\u00e1 no segundo n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=C\u00f3digo de Cena IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Descreve a cena de um conte\u00fado de not\u00edcias. Especifica um ou mais termos do IPTC "Scene-NewsCodes". Cada cena \u00e9 representada como uma string de 6 d\u00edgitos em uma lista n\u00e3o classificada. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=C\u00f3digo de Assunto IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Especifica um ou mais assuntos da taxonomia IPTC Subject-NewsCodes para categorizar o conte\u00fado. Cada assunto \u00e9 representado como uma string de 8 d\u00edgitos em uma lista n\u00e3o classificada. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Subloca\u00e7\u00e3o +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Nome de um sublocal no qual o conte\u00fado se concentra, seja o local exibido na m\u00eddia visual ou referenciado pela m\u00eddia de texto ou \u00e1udio. O nome desse local poderia ser o nome de um sublocal em uma cidade, o nome de um local bem conhecido ou um monumento (natural) fora de uma cidade. No sentido de um sublocal em uma cidade, esse elemento est\u00e1 no quarto n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Data Criada +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Designa a data e opcionalmente a hora em que o conte\u00fado intelectual foi criado em vez da data de cria\u00e7\u00e3o da representa\u00e7\u00e3o f\u00edsica. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=Escritor de Legenda/Descri\u00e7\u00e3o +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identificador ou o nome da pessoa envolvida na escrita, edi\u00e7\u00e3o ou corre\u00e7\u00e3o da descri\u00e7\u00e3o do conte\u00fado. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instru\u00e7\u00f5es +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Qualquer n\u00famero de instru\u00e7\u00f5es do provedor ou criador para o destinat\u00e1rio do item. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Identificador de Trabalho +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=N\u00famero ou identificador do objetivo do tratamento de fluxo de trabalho aprimorado. Esse \u00e9 um identificador criado por usu\u00e1rio relacionado ao trabalho para o qual o item \u00e9 fornecido. +iptcxmp_iptcmodel.property.dc_title.title=T\u00edtulo +iptcxmp_iptcmodel.property.dc_title.description=Uma refer\u00eancia abreviada do item. O t\u00edtulo fornece um curto nome leg\u00edvel que pode ser uma refer\u00eancia textual e/ou num\u00e9rica.N\u00e3o \u00e9 igual \u00e0 manchete. +iptcxmp_iptcmodel.property.dc_rights.title=Aviso de Copyright +iptcxmp_iptcmodel.property.dc_rights.description=Cont\u00e9m os avisos de direitos autorais necess\u00e1rios para reivindicar a propriedade intelectual desse item e deve identificar o propriet\u00e1rio atual do direito atual do item. Outras entidades como o criador do item podem ser adicionadas no campo correspondente. Observa\u00e7\u00f5es sobre direitos de uso devem ser fornecidas em "Termos de uso de direitos". +iptcxmp_iptcmodel.property.dc_creator.title=Criador +iptcxmp_iptcmodel.property.dc_creator.description=Cont\u00e9m o nome da pessoa que criou o conte\u00fado do item, um fot\u00f3grafo para fotos, um artista gr\u00e1fico para gr\u00e1ficos ou um escritor para not\u00edcias textuais, mas em casos em que o fot\u00f3grafo n\u00e3o deve ser identificado, o nome de uma empresa ou organiza\u00e7\u00e3o pode ser apropriado. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Cargo do Criador +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Cont\u00e9m o t\u00edtulo do trabalho da pessoa que criou o conte\u00fado desse item. Como esse \u00e9 um tipo de qualificador, o elemento criador tem que ser preenchido como pr\u00e9-requisito obrigat\u00f3rio para usar o Jobtitle do criador. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Linha de Cr\u00e9dito +iptcxmp_iptcmodel.property.photoshop_Credit.description=O cr\u00e9dito das pessoas e/ou organiza\u00e7\u00f5es necess\u00e1rias para o fornecedor ou o item a ser usado quando publicado. Esse \u00e9 um campo de texto livro. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Termos de Uso dos Direitos +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Os par\u00e2metros de licenciamento do item expresso no texto livre. +iptcxmp_iptcmodel.property.photoshop_Source.title=Fonte +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifica o propriet\u00e1rio original dos direitos autorais para o conte\u00fado intelectual do item. Isso pode ser uma ag\u00eancia, um membro de uma ag\u00eancia ou uma pessoa. A origem pode ser diferente do criador das entidades no CopyrightNotice. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Endere\u00e7o +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Parte do endere\u00e7o nas informa\u00e7\u00f5es de contato. Inclui um nome de empresa opcional e todas as informa\u00e7\u00f5es necess\u00e1rias para localizar o pr\u00e9dio ou caixa postal ao qual deve ser enviado. Para isso, o endere\u00e7o \u00e9 um campo com v\u00e1rias linhas. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Cidade +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=A parte da cidade das informa\u00e7\u00f5es de contato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=A parte do pa\u00eds das informa\u00e7\u00f5es de contato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=Email(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=A parte do endere\u00e7o de e-mail informa\u00e7\u00f5es de contato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefone(s) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=A parte do n\u00famero de telefone das informa\u00e7\u00f5es de contato. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=CEP +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=A parte das informa\u00e7\u00f5es de contato que indica o CEP local. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Estado/Regi\u00e3o +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=A parte das informa\u00e7\u00f5es de contato que indica informa\u00e7\u00f5es regionais como estado ou prov\u00edncia. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=URL(s) da Web +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=A parte do endere\u00e7o da Web das informa\u00e7\u00f5es de contato. V\u00e1rios endere\u00e7os podem ser fornecidos, separados por uma v\u00edrgula. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Urg\u00eancia +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Preterido e fora do IPTC Core. +iptcxmp_iptcmodel.property.photoshop_Category.title=Categoria +iptcxmp_iptcmodel.property.photoshop_Category.description=Preterido e fora do IPTC Core. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Categorias Suplementares +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Preterido e fora do IPTC Core. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Informa\u00e7\u00e3o de Modelo Adicional +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Informa\u00e7\u00f5es sobre a etnicidade e outras facetas dos modelos em uma imagem liberada por modelo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Capa ou Objeto na Imagem +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=Um conjunto de metadados sobre uma obra de arte ou um objeto no item +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=C\u00f3digo de Organiza\u00e7\u00e3o em Destaque +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=C\u00f3digo de um vocabul\u00e1rio controlado para identificar a organiza\u00e7\u00e3o ou empresa que \u00e9 representado no conte\u00fado. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Termo de Vocabul\u00e1rio Controlado +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=Um termo para descrever o conte\u00fado da imagem por um valor de um vocabul\u00e1rio controlado. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Idade do Modelo +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=Idade dos modelos humanos no momento em que a imagem foi tirada em uma imagem lan\u00e7ada por modelo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Nome de Organiza\u00e7\u00e3o em Destaque +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Nome da organiza\u00e7\u00e3o ou empresa que \u00e9 representada no conte\u00fado. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Pessoa Exibida +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Nome de uma pessoa sobre quem o conte\u00fado do item se refere. Para fotos em que uma pessoa \u00e9 exibida na imagem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Identificador de Imagem Digital +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Identificador exclusivo global do item. \u00c9 criado e aplicado pelo criador do item no momento da cria\u00e7\u00e3o. Esse valor n\u00e3o pode ser alterado posteriormente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Tipo F\u00edsico ou Foto Original +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=O tipo de arquivo digital de origem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Tipo de Fonte de Foto +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=O tipo de fonte da imagem digital +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Evento +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Nomeia ou descreve o evento espec\u00edfico relacionado ao conte\u00fado. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=ID de Fornecedor de Imagem +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifica o fornecedor mais recente do item, que n\u00e3o \u00e9 necessariamente seu propriet\u00e1rio ou criador. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Nome de Fornecedor de Imagem +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifica o fornecedor mais recente do item, que n\u00e3o \u00e9 necessariamente seu propriet\u00e1rio ou criador. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Imagem da Identidade de Fornecedor de Imagem +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Identificador opcional atribu\u00eddo pelo fornecedor de imagem da imagem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=\u00daltimos Campos IPTC Editados +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=A data e, opcionalmente, a hora de edi\u00e7\u00e3o de parte do IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Altura M\u00e1xima Dispon\u00edvel +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=A altura m\u00e1xima dispon\u00edvel em pixels da foto original da qual esta foto foi derivada por diminui\u00e7\u00e3o. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Largura M\u00e1xima Dispon\u00edvel +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=A largura m\u00e1xima dispon\u00edvel em pixels da foto original da qual esta foto foi derivada por diminui\u00e7\u00e3o. +iptcxmp_iptcmodel.property.plus_Version.title=Vers\u00e3o PLUS +iptcxmp_iptcmodel.property.plus_Version.description=O n\u00famero da vers\u00e3o dos padr\u00f5es PLUS em vigor no momento da transa\u00e7\u00e3o. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID(s) de Propriet\u00e1rio do Copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=Propriet\u00e1rio ou propriet\u00e1rios dos direitos autorais na imagem licenciada. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Nome(s) do Propriet\u00e1rio do Copyright +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=Propriet\u00e1rio ou propriet\u00e1rios dos direitos autorais na imagem licenciada. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID(s) do Criador da Imagem +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Criador ou criadores da imagem. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Nome(s) do Criador da Imagem +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Criador ou criadores da imagem. +iptcxmp_iptcmodel.property.plus_LicensorID.title=ID PLUS +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Nome +iptcxmp_iptcmodel.property.plus_LicensorName.description=Nome de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Cidade +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Cidade de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Pa\u00eds +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Pa\u00eds de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=Email +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=Email de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Endere\u00e7o Completo +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Endere\u00e7o completo de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=CEP +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=CEP de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Regi\u00e3o +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Regi\u00e3o de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Endere\u00e7o +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Endere\u00e7o de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefone 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefone 1 de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefone 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefone 2 de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL de uma pessoa ou empresa que deve ser contatada para obter uma licen\u00e7a de uso do item ou que licenciou o item. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Declara\u00e7\u00e3o de Modelo Menor de Idade +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=Idade do modelo mais jovem exibido na imagem no momento em que a imagem foi tirada. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=Identidade do Lan\u00e7amento do Modelo +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Identificador opcional relacionado ao lan\u00e7amento do modelo. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status do Lan\u00e7amento do Modelo +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Resume a disponibilidade e o escopo de lan\u00e7amentos de modelo autorizando o uso da imagem das pessoas que aparecem na foto. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=Identidade do Lan\u00e7amento da Propriedade +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Identificador opcional relacionado ao lan\u00e7amento da propriedade. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status do Lan\u00e7amento da Propriedade +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Resume a disponibilidade e o escopo de lan\u00e7amentos de propriedade autorizando o uso de propriedades que aparecem na foto. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Aviso de Copyright +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Cont\u00e9m avisos de direitos autorais necess\u00e1rios para reivindicar a propriedade intelectual de obras de arte ou de um objeto na imagem e deve identificar o propriet\u00e1rio atual do direito autoral deste trabalho com os direitos de propriedade intelectual associados. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Criador +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Cont\u00e9m o nome do artista que criou a obra de arte ou um objeto na imagem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Data Criada +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Designa a data e, opcionalmente, a hora de cria\u00e7\u00e3o da obra de arte ou de um objeto na imagem. Isso se relaciona \u00e0 obra de arte ou a objetos com direitos de propriedade intelectual associados. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=Fonte +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=A organiza\u00e7\u00e3o ou o \u00f3rg\u00e3o que mant\u00e9m e registra a obra de arte ou o objeto na imagem para fins de invent\u00e1rio. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=N\u00famero de Invent\u00e1rio da Fonte +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=O n\u00famero de invent\u00e1rio emitido pela organiza\u00e7\u00e3o ou \u00f3rg\u00e3o que mant\u00e9m e registra a obra de arte ou o objeto na imagem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=T\u00edtulo +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=Uma refer\u00eancia da obra de arte ou do objeto na imagem. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Cidade +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Nome da cidade de um local. Esse elemento est\u00e1 no quarto n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=C\u00f3digo ISO do Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=O c\u00f3digo ISO de um pa\u00eds de um local. Esse elemento est\u00e1 no segundo n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Nome do Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=O nome de um pa\u00eds de um local. Esse elemento est\u00e1 no segundo n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Regi\u00e3o/Estado +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=O nome de uma sub-regi\u00e3o de um pa\u00eds, uma prov\u00edncia ou um estado, de um local. Esse elemento est\u00e1 no terceiro n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Subloca\u00e7\u00e3o +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Nome de um sublocal. Esse nome de sublocal pode ser o nome de um sublocal de uma cidade, de um local bem conhecido ou de um monumento (natural) fora da cidade. No sentido de um sublocal de uma cidade, esse elemento est\u00e1 no quinto n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=Regi\u00e3o Mundial +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=O nome da regi\u00e3o mundial de um local. Esse elemento est\u00e1 no primeiro n\u00edvel (topI) de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Cidade +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Nome da cidade de um local. Esse elemento est\u00e1 no quarto n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=C\u00f3digo ISO do Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=O c\u00f3digo ISO de um pa\u00eds de um local. Esse elemento est\u00e1 no segundo n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Nome do Pa\u00eds +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=O nome de um pa\u00eds de um local. Esse elemento est\u00e1 no segundo n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Regi\u00e3o/Estado +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=O nome de uma sub-regi\u00e3o de um pa\u00eds, uma prov\u00edncia ou um estado, de um local. Esse elemento est\u00e1 no terceiro n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Subloca\u00e7\u00e3o +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Nome de um sublocal. Esse nome de sublocal pode ser o nome de um sublocal de uma cidade, de um local bem conhecido ou de um monumento (natural) fora da cidade. No sentido de um sublocal de uma cidade, esse elemento est\u00e1 no quinto n\u00edvel de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=Regi\u00e3o Mundial +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=O nome da regi\u00e3o mundial de um local. Esse elemento est\u00e1 no primeiro n\u00edvel (topI) de uma hierarquia geogr\u00e1fica de cima para baixo. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Identificador do Item +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=Um identificador exclusivo criado por um registro e aplicado pelo criador do item. Esse valor n\u00e3o pode ser alterado depois de aplicado. Esse identificador \u00e9 vinculado a um identificador de organiza\u00e7\u00e3o de registro correspondente. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Identificador de Organiza\u00e7\u00e3o +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=Um identificador do registro que emitiu a ID de imagem do registro correspondente. + + diff --git a/models/iptc/iptc-model_ru.properties b/models/iptc/iptc-model_ru.properties new file mode 100644 index 00000000..4ed399a8 --- /dev/null +++ b/models/iptc/iptc-model_ru.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0434\u043e\u043c\u0430\u0435\u043d\u0430 Alfresco IPTC + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=\u0410\u0441\u043f\u0435\u043a\u0442 IPTC +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=\u0413\u043e\u0440\u043e\u0434 +iptcxmp_iptcmodel.property.photoshop_City.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u043e\u0440\u043e\u0434\u0430, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0444\u043e\u043a\u0443\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435,\u00a0\u2013 \u044d\u0442\u043e \u043c\u0435\u0441\u0442\u043e, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u043b\u0438\u0431\u043e \u043d\u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044f\u0445, \u043b\u0438\u0431\u043e \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0438\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0430\u0445. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0442\u0440\u0435\u0442\u044c\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.photoshop_Country.title=\u0421\u0442\u0440\u0430\u043d\u0430 +iptcxmp_iptcmodel.property.photoshop_Country.description=\u041f\u043e\u043b\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0444\u043e\u043a\u0443\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435,\u00a0\u2013 \u044d\u0442\u043e \u043b\u0438\u0431\u043e \u0441\u0442\u0440\u0430\u043d\u0430, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u0430\u044f \u043d\u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u043c \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0435, \u043b\u0438\u0431\u043e \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0441\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0435\u0440\u0445\u043d\u0435\u043c (\u043f\u0435\u0440\u0432\u043e\u043c) \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. \u041f\u043e\u043b\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u043e \u043a\u0430\u043a \u0438\u043c\u044f \u0432 \u0432\u0438\u0434\u0435 \u0441\u043b\u043e\u0432\u0430, \u0430 \u043d\u0435 \u043a\u0430\u043a \u043a\u043e\u0434, \u043a\u043e\u0434 \u0434\u043e\u043b\u0436\u0435\u043d \u0432\u0435\u0441\u0442\u0438 \u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443 \u00abCountryCode\u00bb. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=\u041a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b ISO +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=\u041a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0444\u043e\u043a\u0443\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435,\u00a0\u2013 \u044d\u0442\u043e \u043b\u0438\u0431\u043e \u0441\u0442\u0440\u0430\u043d\u0430, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u0430\u044f \u043d\u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u043c \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0435, \u043b\u0438\u0431\u043e \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0441\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0435\u0440\u0445\u043d\u0435\u043c (\u043f\u0435\u0440\u0432\u043e\u043c) \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. \u041a\u043e\u0434 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0432\u0437\u044f\u0442 \u0438\u0437 \u0434\u0432\u0443\u0445- \u0438\u043b\u0438 \u0442\u0440\u0435\u0445\u0431\u0443\u043a\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430 ISO 3166. \u041f\u043e\u043b\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u00ab\u0421\u0442\u0440\u0430\u043d\u0430\u00bb. +iptcxmp_iptcmodel.property.dc_description.title=\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b/\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 +iptcxmp_iptcmodel.property.dc_description.description=\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0435, \u043a\u043e\u0433\u0434\u0430 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u043c. +iptcxmp_iptcmodel.property.photoshop_Headline.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a +iptcxmp_iptcmodel.property.photoshop_Headline.description=\u041a\u0440\u0430\u0442\u043a\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432. \u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u00a0\u2013 \u044d\u0442\u043e \u043d\u0435 \u0442\u043e \u0436\u0435 \u0441\u0430\u043c\u043e\u0435, \u0447\u0442\u043e \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=\u0418\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u0436\u0430\u043d\u0440 +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=\u041e\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440, \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0435, \u0445\u0443\u0434\u043e\u0436\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0438\u043b\u0438 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0441\u043a\u0438\u0435 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0438 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043d\u043e \u043d\u0435 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e \u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435. +iptcxmp_iptcmodel.property.dc_subject.title=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 +iptcxmp_iptcmodel.property.dc_subject.description=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0434\u043b\u044f \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043c\u0435\u0442\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438, \u0438 \u0438\u0445 \u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0431\u0440\u0430\u0442\u044c \u0438\u0437 \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f. \u041a\u043e\u0434\u044b \u0438\u0437 \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f IPTC Subject NewsCodes \u0434\u043e\u043b\u0436\u043d\u044b \u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u043b\u044e \u00ab\u041a\u043e\u0434 \u043e\u0431\u044a\u0435\u043a\u0442\u0430\u00bb. +iptcxmp_iptcmodel.property.photoshop_State.title=\u041e\u0431\u043b\u0430\u0441\u0442\u044c/\u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 (\u0448\u0442\u0430\u0442) +iptcxmp_iptcmodel.property.photoshop_State.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0443\u0431\u0440\u0435\u0433\u0438\u043e\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u044b\u00a0\u2013 \u043b\u0438\u0431\u043e \u043f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u044f, \u043b\u0438\u0431\u043e \u0448\u0442\u0430\u0442, \u043b\u0438\u0431\u043e \u0447\u0442\u043e-\u043b\u0438\u0431\u043e \u0435\u0449\u0435\u00a0\u2013 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0444\u043e\u043a\u0443\u0441\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430 \u0441\u0443\u0431\u0440\u0435\u0433\u0438\u043e\u043d\u0435, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043b\u0438\u0431\u043e \u043d\u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044f\u0445, \u043b\u0438\u0431\u043e \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0442\u043e\u0440\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=\u041a\u043e\u0434 \u0441\u0446\u0435\u043d\u044b IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=\u041e\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u0441\u0446\u0435\u043d\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439. \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043e\u0434\u0438\u043d \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0442\u0435\u0440\u043c\u0438\u043d\u043e\u0432 \u0438\u0437 IPTC Scene-NewsCodes. \u041a\u0430\u0436\u0434\u0430\u044f \u0441\u0446\u0435\u043d\u0430 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0432 \u0432\u0438\u0434\u0435 \u0441\u0442\u0440\u043e\u043a\u0438 \u0438\u0437 6 \u0446\u0438\u0444\u0440 \u0432 \u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u0441\u043f\u0438\u0441\u043a\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=\u041a\u043e\u0434 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 IPTC +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043e\u0434\u0438\u043d \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u0438\u0437 \u0442\u0430\u043a\u0441\u043e\u043d\u043e\u043c\u0438\u0438 IPTC Subject-NewsCodes \u0434\u043b\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u041a\u0430\u0436\u0434\u0430\u044f \u0442\u0435\u043c\u0430 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0432 \u0432\u0438\u0434\u0435 \u0441\u0442\u0440\u043e\u043a\u0438 \u0438\u0437 8 \u0446\u0438\u0444\u0440 \u0432 \u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u0441\u043f\u0438\u0441\u043a\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=\u0423\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u0444\u043e\u043a\u0443\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435,\u00a0\u2013 \u044d\u0442\u043e \u043b\u0438\u0431\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0445 \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044f\u0445, \u043b\u0438\u0431\u043e \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u0441\u044b\u043b\u0430\u044e\u0442\u0441\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b. \u042d\u0442\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0447\u0430\u0441\u0442\u0438 \u0433\u043e\u0440\u043e\u0434\u0430, \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0445\u043e\u0440\u043e\u0448\u043e \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430, \u043b\u0438\u0431\u043e (\u043f\u0440\u0438\u0440\u043e\u0434\u043d\u044b\u043c) \u043f\u0430\u043c\u044f\u0442\u043d\u0438\u043a\u043e\u043c \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u043c\u0438 \u0433\u043e\u0440\u043e\u0434\u0430. \u0412 \u0441\u043c\u044b\u0441\u043b\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0435 \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=\u041e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442 \u0434\u0430\u0442\u0443 \u0438 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0430 \u043d\u0435 \u0434\u0430\u0442\u0443 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=\u0410\u0432\u0442\u043e\u0440 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432/\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0438\u043b\u0438 \u0438\u043c\u044f \u043b\u0438\u0446\u0430, \u0443\u0447\u0430\u0441\u0442\u0432\u043e\u0432\u0430\u0432\u0448\u0435\u0433\u043e \u0432 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u0438\u0438, \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0438\u043b\u0438 \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 +iptcxmp_iptcmodel.property.photoshop_Instructions.description=\u041b\u044e\u0431\u0430\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u0438\u0437 \u0440\u044f\u0434\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 \u043e\u0442 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u0434\u0430\u043d\u0438\u044f +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=\u0427\u0438\u0441\u043b\u043e \u0438\u043b\u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043b\u044f \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0440\u0430\u0431\u043e\u0447\u0435\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430. \u042d\u0442\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0441 \u0437\u0430\u0434\u0430\u043d\u0438\u0435\u043c, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.dc_title.title=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c +iptcxmp_iptcmodel.property.dc_title.description=\u0421\u043e\u043a\u0440\u0430\u0449\u0435\u043d\u043d\u0430\u044f \u0441\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0435 \u0443\u0434\u043e\u0431\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u0438\u043c\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0439 \u0438 (\u0438\u043b\u0438) \u0447\u0438\u0441\u043b\u043e\u0432\u043e\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u042d\u0442\u043e \u043d\u0435 \u0442\u043e \u0436\u0435 \u0441\u0430\u043c\u043e\u0435, \u0447\u0442\u043e \u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a. +iptcxmp_iptcmodel.property.dc_rights.title=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u043e\u043c \u043f\u0440\u0430\u0432\u0435 +iptcxmp_iptcmodel.property.dc_rights.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0432\u0441\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445 \u0434\u043b\u044f \u043f\u0440\u0438\u0442\u044f\u0437\u0430\u043d\u0438\u0439 \u043d\u0430 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043d\u0430 \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0438 \u0434\u043e\u043b\u0436\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 \u043d\u0430 \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. \u0414\u0440\u0443\u0433\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043e \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043f\u043e\u043b\u0435. \u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f \u043e \u043f\u0440\u0430\u0432\u0430\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u0432 \u00ab\u0423\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0430\u0432\u00bb. +iptcxmp_iptcmodel.property.dc_creator.title=\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c +iptcxmp_iptcmodel.property.dc_creator.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0438\u043c\u044f \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u0441\u043e\u0437\u0434\u0430\u0432\u0448\u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0430\u00a0\u2013 \u0434\u043b\u044f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439, \u0445\u0443\u0434\u043e\u0436\u043d\u0438\u043a\u0430-\u0433\u0440\u0430\u0444\u0438\u043a\u0430\u00a0\u2013 \u0434\u043b\u044f \u0433\u0440\u0430\u0444\u0438\u043a\u0438, \u0430\u0432\u0442\u043e\u0440\u0430\u00a0\u2013 \u0434\u043b\u044f \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439. \u0412 \u0441\u043b\u0443\u0447\u0430\u044f\u0445, \u043a\u043e\u0433\u0434\u0430 \u043d\u0435\u043b\u044c\u0437\u044f \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u043c\u044f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0430, \u043f\u043e\u0434\u043e\u0439\u0434\u0435\u0442 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0434\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u0441\u043e\u0437\u0434\u0430\u0432\u0448\u0435\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430. \u041f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u044d\u0442\u043e \u0441\u0432\u043e\u0435\u0433\u043e \u0440\u043e\u0434\u0430 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435, \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u00ab\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c\u00bb \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d \u043a\u0430\u043a \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u043b\u044f \u00ab\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f\u00bb. +iptcxmp_iptcmodel.property.photoshop_Credit.title=\u0421\u0442\u0440\u043e\u043a\u0430 \u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u043d\u043e\u0441\u0442\u0435\u0439 +iptcxmp_iptcmodel.property.photoshop_Credit.description=\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u043d\u043e\u0441\u0442\u044c \u043b\u0438\u0446\u0443 (\u043b\u0438\u0446\u0430\u043c) \u0438 (\u0438\u043b\u0438) \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 (\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f\u043c), \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u0430\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438. \u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u0441 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0442\u0435\u043a\u0441\u0442\u043e\u043c. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0430\u0432 +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u044b \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0442\u0435\u043a\u0441\u0442\u043e\u043c. +iptcxmp_iptcmodel.property.photoshop_Source.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a +iptcxmp_iptcmodel.property.photoshop_Source.description=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 \u043d\u0430 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u043e, \u0447\u043b\u0435\u043d \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043b\u0438\u0446\u043e. \u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u043c\u043e\u0436\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f \u0438 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0432 \u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0438 \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u043e\u043c \u043f\u0440\u0430\u0432\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=\u0410\u0434\u0440\u0435\u0441 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438. \u0421\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u0438 \u0432\u0441\u0435\u0439 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0434\u043b\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0437\u0434\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e \u044f\u0449\u0438\u043a\u0430, \u043a\u0443\u0434\u0430 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u043f\u043e\u0447\u0442\u0443. \u0414\u043b\u044f \u044d\u0442\u0438\u0445 \u0446\u0435\u043b\u0435\u0439 \u0430\u0434\u0440\u0435\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0441\u043e\u0431\u043e\u0439 \u043c\u043d\u043e\u0433\u043e\u0441\u0442\u0440\u043e\u0447\u043d\u043e\u0435 \u043f\u043e\u043b\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=\u0413\u043e\u0440\u043e\u0434 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: \u0433\u043e\u0440\u043e\u0434. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=\u0421\u0442\u0440\u0430\u043d\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: \u0441\u0442\u0440\u0430\u043d\u0430. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=\u0410\u0434\u0440\u0435\u0441(\u0430) \u044d\u043b. \u043f\u043e\u0447\u0442\u044b +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=\u0422\u0435\u043b\u0435\u0444\u043e\u043d(\u044b) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: \u043d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u044e\u0449\u0430\u044f \u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 (\u0448\u0442\u0430\u0442)/\u043e\u0431\u043b\u0430\u0441\u0442\u044c +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u044e\u0449\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0440\u0435\u0433\u0438\u043e\u043d\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0448\u0442\u0430\u0442 \u0438\u043b\u0438 \u043e\u0431\u043b\u0430\u0441\u0442\u044c. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=URL-\u0430\u0434\u0440\u0435\u0441(\u0430) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=\u0427\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438: \u0432\u0435\u0431-\u0430\u0434\u0440\u0435\u0441. \u041c\u043e\u0436\u043d\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 \u0437\u0430\u043f\u044f\u0442\u0443\u044e. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=\u0421\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u044c +iptcxmp_iptcmodel.property.photoshop_Urgency.description=\u0423\u0441\u0442\u0430\u0440\u0435\u043b\u043e \u0438 \u043d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0441\u043e\u0441\u0442\u0430\u0432 \u044f\u0434\u0440\u0430 IPTC. +iptcxmp_iptcmodel.property.photoshop_Category.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f +iptcxmp_iptcmodel.property.photoshop_Category.description=\u0423\u0441\u0442\u0430\u0440\u0435\u043b\u043e \u0438 \u043d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0441\u043e\u0441\u0442\u0430\u0432 \u044f\u0434\u0440\u0430 IPTC. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=\u0423\u0441\u0442\u0430\u0440\u0435\u043b\u043e \u0438 \u043d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0441\u043e\u0441\u0442\u0430\u0432 \u044f\u0434\u0440\u0430 IPTC. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u043c\u043e\u0434\u0435\u043b\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u0445 \u043c\u043e\u0434\u0435\u043b\u0438 (\u043c\u043e\u0434\u0435\u043b\u0435\u0439) \u043d\u0430 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u043c\u043e\u0434\u0435\u043b\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=\u0420\u0438\u0441\u0443\u043d\u043e\u043a \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=\u041d\u0430\u0431\u043e\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442\u0435 \u0432 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=\u041a\u043e\u0434 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=\u041a\u043e\u0434 \u0438\u0437 \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u0432 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=\u041d\u0435\u0446\u0435\u043d\u0437\u0443\u0440\u043d\u043e\u0435 \u0441\u043b\u043e\u0432\u043e +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=\u0422\u0435\u0440\u043c\u0438\u043d \u0434\u043b\u044f \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0438\u0437 \u043d\u043e\u0440\u043c\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=\u0412\u043e\u0437\u0440\u0430\u0441\u0442 \u043c\u043e\u0434\u0435\u043b\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=\u0412\u043e\u0437\u0440\u0430\u0441\u0442 \u043c\u043e\u0434\u0435\u043b\u0438 (\u043c\u043e\u0434\u0435\u043b\u0435\u0439) \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u043c\u043e\u0434\u0435\u043b\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0439 \u0432 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=\u041f\u043e\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u043b\u0438\u0446\u043e +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=\u0418\u043c\u044f \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0438\u0434\u0435\u0442 \u0440\u0435\u0447\u044c. \u0414\u043b\u044f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439 \u044d\u0442\u043e \u043b\u0438\u0446\u043e, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u043e\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0439 \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430. \u041e\u043d \u0441\u043e\u0437\u0434\u0430\u0435\u0442\u0441\u044f \u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0435\u0433\u043e \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f. \u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435\u043b\u044c\u0437\u044f \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u0437\u0434\u043d\u0435\u0435. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=\u0422\u0438\u043f \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0442\u0438\u043f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=\u0422\u0438\u043f \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=\u041d\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0438\u043b\u0438 \u043e\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0435\u0433\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435\u043c. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0435\u0433\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0435\u043c \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435\u043c. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u0441\u0432\u0430\u0438\u0432\u0430\u0435\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044e. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=\u041d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044f IPTC +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=\u0414\u0430\u0442\u0430 \u0438 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u0432\u0440\u0435\u043c\u044f, \u043a\u043e\u0433\u0434\u0430 \u043b\u044e\u0431\u043e\u0435 \u0438\u0437 \u043f\u043e\u043b\u0435\u0439 IPTC \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043b\u043e\u0441\u044c +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0432\u044b\u0441\u043e\u0442\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0432\u044b\u0441\u043e\u0442\u0430 (\u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445) \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u044d\u0442\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0430 \u043f\u0443\u0442\u0435\u043c \u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0440\u0430. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 (\u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445) \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u044d\u0442\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f \u0431\u044b\u043b\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0430 \u043f\u0443\u0442\u0435\u043c \u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0440\u0430. +iptcxmp_iptcmodel.property.plus_Version.title=\u0412\u0435\u0440\u0441\u0438\u044f PLUS +iptcxmp_iptcmodel.property.plus_Version.description=\u041d\u043e\u043c\u0435\u0440 \u0432\u0435\u0440\u0441\u0438\u0438 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043e\u0432 PLUS, \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440(\u044b) \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u043f\u0440\u0430\u0432 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0438\u043b\u0438 \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u044b \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 \u043d\u0430 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=\u0418\u043c\u044f (\u0438\u043c\u0435\u043d\u0430) \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0435\u0432 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0438\u043b\u0438 \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u044b \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 \u043d\u0430 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440(\u044b) \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=\u0418\u043c\u044f (\u0438\u043c\u0435\u043d\u0430) \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435\u0439 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c \u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. +iptcxmp_iptcmodel.property.plus_LicensorID.title=\u0414\u041e\u041f\u041e\u041b\u041d\u0418\u0422\u0415\u041b\u042c\u041d\u042b\u0419 \u0418\u0414\u0415\u041d\u0422\u0418\u0424\u0418\u041a\u0410\u0422\u041e\u0420 +iptcxmp_iptcmodel.property.plus_LicensorID.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorName.title=\u0418\u043c\u044f +iptcxmp_iptcmodel.property.plus_LicensorName.description=\u0418\u043c\u044f \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=\u0413\u043e\u0440\u043e\u0434 +iptcxmp_iptcmodel.property.plus_LicensorCity.description=\u0413\u043e\u0440\u043e\u0434 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=\u0421\u0442\u0440\u0430\u043d\u0430 +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=\u0421\u0442\u0440\u0430\u043d\u0430 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430 +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441 +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=\u0420\u0435\u0433\u0438\u043e\u043d +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=\u0420\u0435\u0433\u0438\u043e\u043d \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=\u0423\u043b\u0438\u0446\u0430 +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=\u0423\u043b\u0438\u0446\u0430 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=\u0422\u0435\u043b\u0435\u0444\u043e\u043d 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=\u0422\u0435\u043b\u0435\u0444\u043e\u043d 1 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=\u0422\u0435\u043b\u0435\u0444\u043e\u043d 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=\u0422\u0435\u043b\u0435\u0444\u043e\u043d 2 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL-\u0430\u0434\u0440\u0435\u0441 +iptcxmp_iptcmodel.property.plus_LicensorURL.description=URL-\u0430\u0434\u0440\u0435\u0441 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0438\u043b\u0438 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u043b\u0438 \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=\u0420\u0430\u0441\u043a\u0440\u044b\u0442\u0438\u0435 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430 \u043c\u0430\u043b\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=\u0412\u043e\u0437\u0440\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u0439 \u043c\u043e\u043b\u043e\u0434\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438, \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u043e\u0439 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438, \u043d\u0430 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 \u043c\u043e\u0434\u0435\u043b\u0438 +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0441 \u043a\u0430\u0436\u0434\u044b\u043c \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u043c \u043c\u043e\u0434\u0435\u043b\u0438. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 \u043c\u043e\u0434\u0435\u043b\u0438 +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=\u041e\u0431\u043e\u0431\u0449\u0430\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c \u0438 \u043e\u0431\u044a\u0435\u043c \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u043c\u043e\u0434\u0435\u043b\u0435\u0439, \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u044e\u0449\u0438\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u043b\u0438\u0446, \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043d\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0441 \u043a\u0430\u0436\u0434\u044b\u043c \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u043c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=\u041e\u0431\u043e\u0431\u0449\u0430\u0435\u0442 \u043d\u0430\u043b\u0438\u0447\u0438\u0435 \u0438 \u043e\u0431\u044a\u0435\u043c \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438, \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432, \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043d\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u043e\u043c \u043f\u0440\u0430\u0432\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0432\u0441\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445 \u0434\u043b\u044f \u043f\u0440\u0438\u0442\u044f\u0437\u0430\u043d\u0438\u0439 \u043d\u0430 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u043d\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u0438 \u0434\u043e\u043b\u0436\u043d\u043e \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432 \u043d\u0430 \u044d\u0442\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0441 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0438\u043c\u044f \u0445\u0443\u0434\u043e\u0436\u043d\u0438\u043a\u0430, \u0441\u043e\u0437\u0434\u0430\u0432\u0448\u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=\u041e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442 \u0434\u0430\u0442\u0443 \u0438 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438. \u042d\u0442\u043e \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442\u0430\u043c \u0441\u043e \u0441\u043c\u0435\u0436\u043d\u044b\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d, \u0445\u0440\u0430\u043d\u044f\u0449\u0438\u0439 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u044e\u0449\u0438\u0439 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u0432 \u0446\u0435\u043b\u044f\u0445 \u0438\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u0438\u0437\u0430\u0446\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=\u0418\u043d\u0432\u0435\u043d\u0442\u0430\u0440\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440, \u043f\u0440\u0438\u0441\u0432\u043e\u0435\u043d\u043d\u044b\u0439 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u043e\u043c, \u0445\u0440\u0430\u043d\u044f\u0449\u0438\u043c \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043e\u0431\u044a\u0435\u043a\u0442 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=\u0413\u043e\u0440\u043e\u0434 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u043e\u0440\u043e\u0434\u0430 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=ISO-\u043a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=ISO-\u043a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0442\u043e\u0440\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0442\u043e\u0440\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=\u041e\u0431\u043b\u0430\u0441\u0442\u044c/\u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 (\u0448\u0442\u0430\u0442) +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0443\u0431\u0440\u0435\u0433\u0438\u043e\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u044b\u00a0\u2013 \u043f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0438 \u0438\u043b\u0438 \u0448\u0442\u0430\u0442\u0430\u00a0\u2013 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0442\u0440\u0435\u0442\u044c\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=\u0423\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0447\u0430\u0441\u0442\u0438 \u0433\u043e\u0440\u043e\u0434\u0430, \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043b\u0438\u0431\u043e (\u043f\u0440\u0438\u0440\u043e\u0434\u043d\u043e\u0433\u043e) \u043f\u0430\u043c\u044f\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u043c\u0438 \u0433\u043e\u0440\u043e\u0434\u0430. \u0412 \u0441\u043c\u044b\u0441\u043b\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0435 \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u044f\u0442\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=\u0420\u0435\u0433\u0438\u043e\u043d \u043c\u0438\u0440\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0440\u0435\u0433\u0438\u043e\u043d\u0430 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432 \u043c\u0438\u0440\u0435. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u043c (topI) \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=\u0413\u043e\u0440\u043e\u0434 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u043e\u0440\u043e\u0434\u0430 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0447\u0435\u0442\u0432\u0435\u0440\u0442\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=ISO-\u043a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=ISO-\u043a\u043e\u0434 \u0441\u0442\u0440\u0430\u043d\u044b \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0442\u043e\u0440\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0442\u0440\u0430\u043d\u044b \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0432\u0442\u043e\u0440\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=\u041e\u0431\u043b\u0430\u0441\u0442\u044c/\u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 (\u0448\u0442\u0430\u0442) +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0443\u0431\u0440\u0435\u0433\u0438\u043e\u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u044b\u00a0\u2013 \u043f\u0440\u043e\u0432\u0438\u043d\u0446\u0438\u0438 \u0438\u043b\u0438 \u0448\u0442\u0430\u0442\u0430\u00a0\u2013 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u0442\u0440\u0435\u0442\u044c\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=\u0423\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0447\u0430\u0441\u0442\u0438 \u0433\u043e\u0440\u043e\u0434\u0430, \u043b\u0438\u0431\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043b\u0438\u0431\u043e (\u043f\u0440\u0438\u0440\u043e\u0434\u043d\u043e\u0433\u043e) \u043f\u0430\u043c\u044f\u0442\u043d\u0438\u043a\u0430 \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u043c\u0438 \u0433\u043e\u0440\u043e\u0434\u0430. \u0412 \u0441\u043c\u044b\u0441\u043b\u0435 \u0443\u0442\u043e\u0447\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432 \u0433\u043e\u0440\u043e\u0434\u0435 \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u044f\u0442\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=\u0420\u0435\u0433\u0438\u043e\u043d \u043c\u0438\u0440\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0440\u0435\u0433\u0438\u043e\u043d\u0430 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0432 \u043c\u0438\u0440\u0435. \u042d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u043c (topI) \u0443\u0440\u043e\u0432\u043d\u0435 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0439 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0435\u0441\u0442\u0440\u043e\u043c \u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0439 \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430. \u042d\u0442\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435\u043b\u044c\u0437\u044f \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0414\u0430\u043d\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0441\u0432\u044f\u0437\u0430\u043d \u0441 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u043c \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0440\u0435\u0435\u0441\u0442\u0440\u0430. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0440\u0435\u0435\u0441\u0442\u0440\u0430, \u0432\u044b\u0434\u0430\u0432\u0448\u0435\u0433\u043e \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u0431\u0440\u0430\u0437\u0430 \u0440\u0435\u0435\u0441\u0442\u0440\u0430. + + diff --git a/models/iptc/iptc-model_sv.properties b/models/iptc/iptc-model_sv.properties new file mode 100644 index 00000000..edae0ff8 --- /dev/null +++ b/models/iptc/iptc-model_sv.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC-dom\u00e4nmodell + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC-aspekt +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=Stad +iptcxmp_iptcmodel.property.photoshop_City.description=Namnet p\u00e5 staden som inneh\u00e5llet fokuserar p\u00e5 \u2013 antingen platsen som visas i visuella media eller som refereras till i text- eller ljudmedia. Detta element befinner sig p\u00e5 tredje niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner. +iptcxmp_iptcmodel.property.photoshop_Country.title=Land +iptcxmp_iptcmodel.property.photoshop_Country.description=Fullst\u00e4ndigt namn p\u00e5 landet som inneh\u00e5llet fokuserar p\u00e5 \u2013 antingen landet som visas i visuella media eller som refereras till i text- eller ljusmedia. Detta element befinner sig p\u00e5 den h\u00f6gsta/f\u00f6rsta niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner. Det fullst\u00e4ndiga namnet ska uttryckas som ett verbalt namn och inte som en kod, en kod ska anges i elementet \u201dLandskod\u201d +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO-landskod +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=Kod f\u00f6r landet som inneh\u00e5llet fokuserar p\u00e5 \u2013 antingen landet som visas i visuella media eller refereras till i text- eller ljudmedia. Det h\u00e4r elementet befinner sig p\u00e5 h\u00f6gsta/f\u00f6rsta niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner. Koden ska h\u00e4mtas fr\u00e5n koderna med tv\u00e5 eller tre bokst\u00e4ver i ISO 3166. Landets fullst\u00e4ndiga namn ska anges i elementet \u201dLand\u201d. +iptcxmp_iptcmodel.property.dc_description.title=Bildtext/beskrivning +iptcxmp_iptcmodel.property.dc_description.description=En textbeskrivning, inklusive bildtexter, av ett objekts inneh\u00e5ll, s\u00e4rskild om f\u00f6rem\u00e5let inte \u00e4r text. +iptcxmp_iptcmodel.property.photoshop_Headline.title=Rubrik +iptcxmp_iptcmodel.property.photoshop_Headline.description=En kort sammanfattning av bildtexten. Rubrik \u00e4r inte samma sak som Titel. +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=Intellektuell genre +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=Beskriver objektets typ samt intellektuella, artistiska eller journalistiska egenskaper, inte n\u00f6dv\u00e4ndigtvis dess inneh\u00e5ll. +iptcxmp_iptcmodel.property.dc_subject.title=Nyckelord +iptcxmp_iptcmodel.property.dc_subject.description=Nyckelord uttrycker inneh\u00e5llets \u00e4mne. Nyckelord kan vara fri text och beh\u00f6ver inte h\u00e4mtas fr\u00e5n en kontrollerad ordlista. Koder fr\u00e5n den kontrollerade ordlistan IPTC Subject NewsCodes ska anges i f\u00e4ltet \u201d\u00c4mneskod\u201d. +iptcxmp_iptcmodel.property.photoshop_State.title=Postort/delstat +iptcxmp_iptcmodel.property.photoshop_State.description=Namnet p\u00e5 underregionen \u2013 som antingen kallas postort eller delstat eller n\u00e5got annat \u2013 i det land som inneh\u00e5llet fokuserar p\u00e5 \u2013 antingen underregionen som visas i visuella media eller som refereras till i text- eller ljudmedia. Detta element befinner sig p\u00e5 andra niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC-scenkod +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=Beskriver en scen i nyhetsinneh\u00e5ll. Specificerar en eller flera begrepp fr\u00e5n IPTC \u201dScene-NewsCodes\u201d. Varje scen representeras som en str\u00e4ng med 6 siffror i en osorterad lista. +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC-\u00e4mneskod +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=Specificerar en eller flera \u00e4mnen fr\u00e5n taxonomin IPTC Subject-NewsCodes f\u00f6r att kategorisera inneh\u00e5llet. Varje \u00e4mne representeras av en str\u00e4ng med 8 siffor i en osorterad lista. +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=Underort +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=Namn p\u00e5 en underort som inneh\u00e5llet fokuserar p\u00e5 \u2013 antingen platsen som visas i visuella media eller refereras till i text- eller ljusmedia. Platsens namn kan antingen vara namnet p\u00e5 underorten i en stad eller namnet p\u00e5 en v\u00e4lk\u00e4nd plats eller ett (naturligt) monument utanf\u00f6r en stad. Om det \u00e4r en underort till en stad befinner sig detta element p\u00e5 den fj\u00e4rde niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=Datum skapat +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=Anger datumet, och eventuellt \u00e4ven tiden, d\u00e5 det intellektuella inneh\u00e5llet skapades, snarare \u00e4n datumet d\u00e5 den fysiska representationen skapades. +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=F\u00f6rfattare av bildtext/beskrivning +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=Identifierare eller namnet p\u00e5 personen involverad i skrivandet, redigeringen eller korrigeringen av beskrivningen av inneh\u00e5llet. +iptcxmp_iptcmodel.property.photoshop_Instructions.title=Instruktioner +iptcxmp_iptcmodel.property.photoshop_Instructions.description=Valfritt antal instruktioner fr\u00e5n leverant\u00f6ren eller skaparen till mottagaren av objektet. +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=Jobbidentifierare +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=Siffra eller identifierare med syfte att f\u00f6rb\u00e4ttra arbetsfl\u00f6deshanteringen. Detta \u00e4r en anv\u00e4ndarskapad identifierare som relaterar till jobbet f\u00f6r vilket objektet tillhandah\u00e5lls. +iptcxmp_iptcmodel.property.dc_title.title=Titel +iptcxmp_iptcmodel.property.dc_title.description=En kort referens f\u00f6r objektet. Titeln anger ett kort namn, som \u00e4r l\u00e4tt att utl\u00e4sa och kan vara en text- och/eller en sifferreferens. Detta \u00e4r inte samma sak som en Rubrik. +iptcxmp_iptcmodel.property.dc_rights.title=Upphovsr\u00e4ttsmeddelande +iptcxmp_iptcmodel.property.dc_rights.description=Inneh\u00e5ller alla n\u00f6dv\u00e4ndiga upphovsr\u00e4ttsmeddelanden f\u00f6r att g\u00f6ra anspr\u00e5k p\u00e5 den immateriella egendomen f\u00f6r detta objekt och identifiera aktuell upphovsr\u00e4tts\u00e4gare f\u00f6r objektet. Andra entiteter s\u00e5 som skapare av objektet kan l\u00e4ggas till i motsvarande f\u00e4lt. Information om anv\u00e4ndarr\u00e4ttigheter ska anges i \u201dAnv\u00e4ndningsvillkor\u201d. +iptcxmp_iptcmodel.property.dc_creator.title=Skapare +iptcxmp_iptcmodel.property.dc_creator.description=Inneh\u00e5ller namnet p\u00e5 personen som skapade inneh\u00e5llet i detta objekt. F\u00f6r foton \u00e4r det fotografen, f\u00f6r illustrationer \u00e4r det illustrat\u00f6ren och f\u00f6r textnyheter \u00e4r det skribenten. I fall d\u00e5 fotografen inte ska identifieras fungerar \u00e4ven namnet p\u00e5 f\u00f6retaget eller organisationen. +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=Skaparens jobbtitel +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=Inneh\u00e5ller jobbtiteln f\u00f6r personen som skapade inneh\u00e5llet i det h\u00e4r objektet. Eftersom detta \u00e4r en egenskap hos skaparen \u00e4r det obligatoriskt att f\u00f6rst fylla i elementet Skapare innan man anger Skaparens jobbtitel. +iptcxmp_iptcmodel.property.photoshop_Credit.title=Erk\u00e4nnande +iptcxmp_iptcmodel.property.photoshop_Credit.description=Erk\u00e4nnande av person/personer/organisation/organisationer som kr\u00e4vs av leverant\u00f6ren av objektet vid publicering. Detta \u00e4r ett f\u00e4lt f\u00f6r fri text. +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=Anv\u00e4ndningsvillkor +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=Licensparametrar f\u00f6r objektet skrivna som fri text. +iptcxmp_iptcmodel.property.photoshop_Source.title=K\u00e4lla +iptcxmp_iptcmodel.property.photoshop_Source.description=Identifierar den ursprungliga \u00e4garen av upphovsr\u00e4tten f\u00f6r det intellektuella inneh\u00e5llet f\u00f6r objektet. Detta kan vara en agentur, en medlem av en agentur eller en individ. K\u00e4llan beh\u00f6ver inte vara detsamma som Skaparen eller entiteterna i Upphovsr\u00e4ttsmeddelandet. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=Adress +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=Avsnittet Adress i kontaktinformationen. Innefattar ett valfritt f\u00f6retagsnamn och all n\u00f6dv\u00e4ndig information f\u00f6r att hitta byggnaden eller brevl\u00e5dan som post ska skickas till. D\u00e4rf\u00f6r \u00e4r adressen ett f\u00e4lt med flera rader. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=Stad +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=Avsnittet Stad i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=Land +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=Avsnittet Land i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=E-postadress(er) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=Avsnittet E-postadress i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=Telefonnummer +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=Avsnittet Telefonnummer i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=Postnummer +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=Avsnittet d\u00e4r lokalt postnummer anges i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=Delstat/postort +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=Avsnittet d\u00e4r regional information s\u00e5 som delstat eller postort anges i kontaktinformationen. +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Webbadress(er) +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=Avsnittet Webbadress i kontaktinformationen. Flera adresser kan anges om de skiljs \u00e5t med ett kommatecken. +iptcxmp_iptcmodel.property.photoshop_Urgency.title=Br\u00e5dska +iptcxmp_iptcmodel.property.photoshop_Urgency.description=Ogiltig och utanf\u00f6r IPTC-k\u00e4rnan. +iptcxmp_iptcmodel.property.photoshop_Category.title=Kategori +iptcxmp_iptcmodel.property.photoshop_Category.description=Ogiltig och utanf\u00f6r IPTC-k\u00e4rnan. +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=Extra kategorier +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=Ogiltig och utanf\u00f6r IPTC-k\u00e4rnan. + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=Ytterligare modellinfo +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=Information om etniciteten och andra egenskaper f\u00f6r modellen/modeller i en bild med modellrelease. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=Konstverk eller f\u00f6rem\u00e5l i bilden +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=En upps\u00e4ttning metadata om ett konstverk eller f\u00f6rem\u00e5l i objektet +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=Kod f\u00f6r framst\u00e4lld organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=Kod fr\u00e5n en kontrollerad ordlista f\u00f6r att identifiera organisationen eller f\u00f6retaget som framst\u00e4lls i inneh\u00e5llet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=Kontrollerad term i ordlistan +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=En term som beskriver inneh\u00e5llet i bilden med ett v\u00e4rde fr\u00e5n en kontrollerad ordlista. +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=Modellens \u00e5lder +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=\u00c5lder p\u00e5 den m\u00e4nskliga modellen/de m\u00e4nskliga modellerna vid tiden d\u00e5 bilden togs i en bild med modellrelease. +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=Namn p\u00e5 framst\u00e4lld organisation +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=Namn p\u00e5 organisationen eller f\u00f6retaget som framst\u00e4lls i inneh\u00e5llet. +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=Person som visas +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=Namnet p\u00e5 den person som inneh\u00e5llet eller objektet handlar om. F\u00f6r foton \u00e4r detta den person som visas i bilden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=Digital bildidentifierare +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=Global unik identifierare f\u00f6r objektet. Denna identifierare skapades och till\u00e4mpades av skaparen av objektet vid den tid d\u00e5 det skapades. Efter det f\u00e5r v\u00e4rdet inte \u00e4ndras. +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=Den ursprungliga bildens fysiska typ +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=Digitala k\u00e4llfilens typ +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=Typ av k\u00e4lla f\u00f6r den h\u00e4r bilden +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=Typ av k\u00e4lla f\u00f6r den h\u00e4r digitala bilden +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=Evenemang +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=Namnger eller beskriver det specifika evenemanget som inneh\u00e5llet relaterar till. +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=Bildleverant\u00f6rens ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=Identifierar den senaste leverant\u00f6ren av objekt, som inte n\u00f6dv\u00e4ndigtvis \u00e4r \u00e4garen eller skaparen. +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=Bildleverant\u00f6rens namn +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=Identifierar den senaste leverant\u00f6ren av objekt, som inte n\u00f6dv\u00e4ndigtvis \u00e4r \u00e4garen eller skaparen. +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=Bildleverant\u00f6rens bild-ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=Alternativ identifierare tilldelad av bildens leverant\u00f6r. +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC-f\u00e4lt redigerades senast +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=Det datum, och eventuellt den tid, n\u00e4r n\u00e5got av IPTC-f\u00e4lten redigerades +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=Maximal tillg\u00e4nglig h\u00f6jd +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=Max. tillg\u00e4nglig h\u00f6jd i pixlar f\u00f6r den ursprungliga bilden fr\u00e5n vilken denna bild har h\u00e4mtats genom f\u00f6rminskning. +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=Maximal tillg\u00e4nglig bredd +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=Max. tillg\u00e4nglig bredd i pixlar f\u00f6r den ursprungliga bilden fr\u00e5n vilken denna bild h\u00e4mtats genom f\u00f6rminskning. +iptcxmp_iptcmodel.property.plus_Version.title=PLUS-version +iptcxmp_iptcmodel.property.plus_Version.description=Versionsnumret f\u00f6r PLUS-standarder som g\u00e4llde vid transaktionen. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=ID f\u00f6r upphovsr\u00e4tts\u00e4garen +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=\u00c4gare av upphovsr\u00e4tten i den licenserade bilden. +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=Namnet p\u00e5 upphovsr\u00e4tts\u00e4garen +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=\u00c4gare av upphovsr\u00e4tten i den licenserade bilden. +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=ID f\u00f6r bildskaparen +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=Skapare av bilden. +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=Namn p\u00e5 bildskaparen +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=Skapare av bilden. +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS-ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=ID f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorName.title=Namn +iptcxmp_iptcmodel.property.plus_LicensorName.description=Namn p\u00e5 en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorCity.title=Stad +iptcxmp_iptcmodel.property.plus_LicensorCity.description=Stad f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=Land +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=Land f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=E-postadress +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=E-postadress f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=Ut\u00f6kad adress +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=Ut\u00f6kad adress f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=Postnummer +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=Postnummer f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=Region +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=Region f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=Gatuadress +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=Gatuadress f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 licens f\u00f6r att anv\u00e4nda objektet eller som licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=Telefonnummer 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=Telefonnummer 1 f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=Telefonnummer 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=Telefonnummer 2 f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_LicensorURL.title=Webbadress +iptcxmp_iptcmodel.property.plus_LicensorURL.description=Webbadress f\u00f6r en person eller ett f\u00f6retag som ska kontaktas f\u00f6r att f\u00e5 en licens f\u00f6r att anv\u00e4nda objektet eller som har licenserat objektet. +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=Redovisning av \u00e5lder p\u00e5 minder\u00e5rig modell +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=\u00c5lder p\u00e5 den yngsta modellen i bilden, vid tiden d\u00e5 bilden togs. +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=ID f\u00f6r modellrelease +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=Valfri identifierare kopplad till varje modellrelease. +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=Status f\u00f6r modellrelease +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=Sammanfattar tillg\u00e4ngligheten och omfattningen av modellreleaser som till\u00e5ter anv\u00e4ndning av bilder p\u00e5 personen som medverkar i bilden. +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=ID f\u00f6r egendomsrelease +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=Valfri identifierare kopplad till varje egendomsrelease. +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=Status f\u00f6r egendomsrelease +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=Sammanfattar tillg\u00e4ngligheten och omfattningen av egendomsreleaser f\u00f6r anv\u00e4ndning av egendomar som syns i bilden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=Upphovsr\u00e4ttsmeddelande +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=Inneh\u00e5ller alla n\u00f6dv\u00e4ndiga upphovsr\u00e4ttsmeddelanden f\u00f6r att g\u00f6ra anspr\u00e5k p\u00e5 den immateriella egendomen f\u00f6r konstverket eller f\u00f6rem\u00e5let i bilden och identifiera aktuell upphovsr\u00e4tts\u00e4gare f\u00f6r detta verk med tillh\u00f6rande r\u00e4tt till immateriell egendom. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=Skapare +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=Inneh\u00e5ller namnet p\u00e5 konstn\u00e4ren som har skapat konstverket eller f\u00f6rem\u00e5let i bilden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=Datum skapat +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=Anger det datum, och eventuellt den tid, d\u00e5 konstverket eller f\u00f6rem\u00e5let p\u00e5 bilden skapades. Detta g\u00e4ller konstverk eller f\u00f6rem\u00e5l med tillh\u00f6rande immateriella r\u00e4ttigheter. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=K\u00e4lla +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=Organisationen eller enheten som innehar och registrerar konstverket eller f\u00f6rem\u00e5let i bilden f\u00f6r inventariesyften. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=K\u00e4llinventariesiffra +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=Inventariesiffra tilldelad av organisationen eller enheten som innehar och registrerar konstverket eller f\u00f6rem\u00e5let i bilden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=Titel +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=En referens f\u00f6r konstverket eller f\u00f6rem\u00e5let i bilden. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=Stad +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=Namn p\u00e5 staden f\u00f6r en plats. Detta element befinner sig p\u00e5 den fj\u00e4rde niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=Landets ISO-kod +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=ISO-koden f\u00f6r ett land f\u00f6r en plats. Detta element befinner sig p\u00e5 andra niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=Landets namn +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=Namnet p\u00e5 ett land f\u00f6r en plats. Det h\u00e4r elementet befinner sig p\u00e5 andra niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=Postort/delstat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=Namnet p\u00e5 underregionen f\u00f6r ett land \u2013 en postort eller delstat \u2013 f\u00f6r en plats. Elementet befinner sig p\u00e5 tredje niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=Underort +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=Namn p\u00e5 en underort. Denna underort kan antingen vara namnet p\u00e5 underorten i en stad eller namnet p\u00e5 en v\u00e4lk\u00e4nd plats eller ett (naturligt) monument utanf\u00f6r en stad. Om det \u00e4r en underort till en stad befinner sig detta element p\u00e5 den fj\u00e4rde niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=V\u00e4rldsregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=Namn p\u00e5 en v\u00e4rldsregion f\u00f6r en plats. Detta element \u00e4r f\u00f6rsta (h\u00f6gsta) niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=Stad +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=Namn p\u00e5 staden f\u00f6r en plats. Detta element befinner sig p\u00e5 den fj\u00e4rde niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=Landets ISO-kod +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=ISO-koden f\u00f6r ett land f\u00f6r en plats. Detta element befinner sig p\u00e5 andra niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=Landets namn +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=Namnet p\u00e5 ett land f\u00f6r en plats. Det h\u00e4r elementet befinner sig p\u00e5 andra niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=Postort/delstat +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=Namnet p\u00e5 underregionen f\u00f6r ett land \u2013 en postort eller delstat \u2013 f\u00f6r en plats. Elementet befinner sig p\u00e5 tredje niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ner. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=Underort +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=Namn p\u00e5 en underort. Denna underort kan antingen vara namnet p\u00e5 underorten i en stad eller namnet p\u00e5 en v\u00e4lk\u00e4nd plats eller ett (naturligt) monument utanf\u00f6r en stad. Om det \u00e4r en underort till en stad befinner sig detta element p\u00e5 den fj\u00e4rde niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=V\u00e4rldsregion +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=Namn p\u00e5 en v\u00e4rldsregion f\u00f6r en plats. Detta element \u00e4r f\u00f6rsta (h\u00f6gsta) niv\u00e5n i en geografisk hierarki som g\u00e5r uppifr\u00e5n och ned. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=Objektidentifierare +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=En unik identifierare som skapats av en registreringsenhet och till\u00e4mpas av skaparen av objektet. V\u00e4rdet f\u00e5r inte \u00e4ndras efter att det till\u00e4mpats. Denna identifierare kopplas till motsvarande organisationsidentifierare f\u00f6r registreringsenheten. +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=Organisationsidentifierare +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=En identifierare f\u00f6r registreringsenheten som tilldelade motsvarande registreringsbild-ID. + + diff --git a/models/iptc/iptc-model_zh_CN.properties b/models/iptc/iptc-model_zh_CN.properties new file mode 100644 index 00000000..0578d898 --- /dev/null +++ b/models/iptc/iptc-model_zh_CN.properties @@ -0,0 +1,195 @@ +# Display labels for IPTC Domain Model + +iptcxmp_iptcmodel.description=Alfresco IPTC \u57df\u6a21\u578b + +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.title=IPTC +iptcxmp_iptcmodel.aspect.iptcxmp_iptcxmpAspect.description=IPTC \u7eb5\u6a2a\u6bd4 +aspect.iptcxmp_iptcxmpAspect=IPTC + +iptcxmp_iptcmodel.property.photoshop_City.title=\u57ce\u5e02 +iptcxmp_iptcmodel.property.photoshop_City.description=\u5185\u5bb9\u6240\u5173\u6ce8\u7684\u57ce\u5e02\u7684\u540d\u79f0 -- \u5728\u89c6\u89c9\u5a92\u4f53\u4e2d\u663e\u793a\u7684\u6216\u7531\u6587\u672c\u6216\u97f3\u9891\u5a92\u4f53\u5f15\u7528\u7684\u5730\u65b9\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e09\u5c42\u3002 +iptcxmp_iptcmodel.property.photoshop_Country.title=\u56fd\u5bb6/\u5730\u533a +iptcxmp_iptcmodel.property.photoshop_Country.description=\u5185\u5bb9\u6240\u5173\u6ce8\u56fd\u5bb6\u7684\u5168\u79f0 -- \u5728\u53ef\u89c6\u5a92\u4f53\u4e2d\u663e\u793a\u7684\u56fd\u5bb6\u6216\u5728\u6587\u672c\u6216\u97f3\u9891\u5a92\u4f53\u4e2d\u5f15\u7528\u7684\u56fd\u5bb6\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u9876\u5c42/\u7b2c\u4e00\u5c42\u3002\u5168\u540d\u5e94\u8868\u793a\u4e3a\u53e3\u5934\u540d\u79f0\uff0c\u800c\u4e0d\u662f\u4ee3\u7801\uff0c\u4ee3\u7801\u5e94\u6307\u5411\u201c\u56fd\u5bb6\u4ee3\u7801\u201d\u5143\u7d20 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.title=ISO \u56fd\u5bb6/\u5730\u533a\u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CountryCode.description=\u5185\u5bb9\u6240\u5173\u6ce8\u7684\u56fd\u5bb6\u7684\u4ee3\u7801 -- \u5728\u89c6\u89c9\u5a92\u4f53\u4e2d\u663e\u793a\u7684\u56fd\u5bb6\u6216\u5728\u6587\u672c\u6216\u97f3\u9891\u5a92\u4f53\u4e2d\u5f15\u7528\u7684\u56fd\u5bb6\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u9876\u5c42/\u7b2c\u4e00\u5c42\u3002\u4ee3\u7801\u5e94\u53d6\u81eaISO 3166\u4e24\u4e2a\u6216\u4e09\u4e2a\u5b57\u6bcd\u7684\u4ee3\u7801\u3002\u4e00\u4e2a\u56fd\u5bb6\u7684\u5168\u540d\u5e94\u8be5\u653e\u5728\u201c\u56fd\u5bb6\u201d\u5143\u7d20\u4e2d\u3002 +iptcxmp_iptcmodel.property.dc_description.title=\u8bf4\u660e/\u63cf\u8ff0 +iptcxmp_iptcmodel.property.dc_description.description=\u5bf9\u9879\u76ee\u5185\u5bb9\u7684\u6587\u5b57\u63cf\u8ff0\uff0c\u5305\u62ec\u6807\u9898\uff0c\u7279\u522b\u662f\u5728\u5bf9\u8c61\u4e0d\u662f\u6587\u672c\u7684\u60c5\u51b5\u4e0b\u4f7f\u7528\u3002 +iptcxmp_iptcmodel.property.photoshop_Headline.title=\u6807\u9898 +iptcxmp_iptcmodel.property.photoshop_Headline.description=\u6807\u9898\u7684\u7b80\u8981\u6982\u8ff0\u3002\u65b0\u95fb\u6458\u8981\u4e0d\u7b49\u540c\u4e8e\u6807\u9898\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.title=\u77e5\u8bc6\u7c7b\u578b +iptcxmp_iptcmodel.property.Iptc4xmpCore_IntellectualGenre.description=\u63cf\u8ff0\u4e00\u4e2a\u9879\u76ee\u7684\u6027\u8d28\u3001\u77e5\u8bc6\u3001\u827a\u672f\u6216\u65b0\u95fb\u7279\u70b9\uff0c\u800c\u4e0d\u662f\u5177\u4f53\u7684\u5185\u5bb9\u3002 +iptcxmp_iptcmodel.property.dc_subject.title=\u5173\u952e\u5b57 +iptcxmp_iptcmodel.property.dc_subject.description=\u5173\u952e\u8bcd\u8868\u8fbe\u4e3b\u9898\u7684\u5185\u5bb9\u3002\u5173\u952e\u8bcd\u53ef\u4ee5\u662f\u81ea\u7531\u6587\u672c\uff0c\u4e0d\u5fc5\u4ece\u53d7\u63a7\u8bcd\u6c47\u8868\u4e2d\u83b7\u53d6\u3002\u53d7\u63a7\u8bcd\u6c47\u8868 IPTC \u4e3b\u9898\u65b0\u95fb\u4ee3\u7801\u4e2d\u7684\u4ee3\u7801\u5fc5\u987b\u8f6c\u5230\u201c\u4e3b\u9898\u4ee3\u7801\u201d\u5b57\u6bb5\u3002 +iptcxmp_iptcmodel.property.photoshop_State.title=\u7701/\u5dde +iptcxmp_iptcmodel.property.photoshop_State.description=\u4e00\u4e2a\u56fd\u5bb6\u7684\u5b50\u533a\u57df\u7684\u540d\u79f0 -- \u6216\u8005\u79f0\u4e3a\u7701\u6216\u8005\u5dde\u6216\u8005\u5176\u4ed6\u4efb\u4f55\u4e1c\u897f -- \u5185\u5bb9\u96c6\u4e2d\u5728 -- \u5728\u89c6\u89c9\u5a92\u4f53\u4e0a\u663e\u793a\u7684\u5b50\u533a\u57df\u6216\u8005\u7531\u6587\u672c\u6216\u97f3\u9891\u5a92\u4f53\u5f15\u7528\u7684\u5b50\u533a\u57df\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e8c\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.title=IPTC \u573a\u666f\u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Scene.description=\u63cf\u8ff0\u65b0\u95fb\u5185\u5bb9\u7684\u573a\u666f\u3002\u6307\u5b9a IPTC \u201c\u573a\u666f-\u65b0\u95fb\u4ee3\u7801\u201d\u4e2d\u7684\u4e00\u4e2a\u6216\u591a\u4e2a\u672f\u8bed\u3002\u6bcf\u4e2a\u573a\u666f\u5728\u65e0\u5e8f\u5217\u8868\u4e2d\u8868\u793a\u4e3a\u4e00\u4e2a\u75316\u4f4d\u6570\u5b57\u7ec4\u6210\u7684\u5b57\u7b26\u4e32\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.title=IPTC \u4e3b\u9898\u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpCore_SubjectCode.description=\u4ece IPTC \u4e3b\u9898\u65b0\u95fb\u4ee3\u7801\u5206\u7c7b\u6cd5\u4e2d\u6307\u5b9a\u4e00\u4e2a\u6216\u591a\u4e2a\u4e3b\u9898\u4ee5\u5bf9\u5185\u5bb9\u8fdb\u884c\u5206\u7c7b\u3002\u5728\u65e0\u5e8f\u5217\u8868\u4e2d\uff0c\u6bcf\u4e2a\u4e3b\u9898\u90fd\u8868\u793a\u4e3a\u4e00\u4e2a\u75318\u4f4d\u6570\u5b57\u7ec4\u6210\u7684\u5b57\u7b26\u4e32\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.title=\u5b50\u4f4d\u7f6e +iptcxmp_iptcmodel.property.Iptc4xmpCore_Location.description=\u5185\u5bb9\u6240\u5173\u6ce8\u7684\u5b50\u4f4d\u7f6e\u7684\u540d\u79f0 -- \u5728\u53ef\u89c6\u5a92\u4f53\u4e2d\u663e\u793a\u7684\u4f4d\u7f6e\u6216\u7531\u6587\u672c\u6216\u97f3\u9891\u5a92\u4f53\u5f15\u7528\u7684\u4f4d\u7f6e\u3002\u6b64\u4f4d\u7f6e\u540d\u79f0\u53ef\u4ee5\u662f\u57ce\u5e02\u7684\u5b50\u4f4d\u7f6e\u540d\u79f0\uff0c\u4e5f\u53ef\u4ee5\u662f\u57ce\u5e02\u5916\u7684\u8457\u540d\u4f4d\u7f6e\u6216\uff08\u81ea\u7136\uff09\u7eaa\u5ff5\u7891\u7684\u540d\u79f0\u3002\u4ece\u57ce\u5e02\u6b21\u7ea7\u5b9a\u4f4d\u7684\u610f\u4e49\u4e0a\u8bb2\uff0c\u8fd9\u4e00\u8981\u7d20\u5904\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u56db\u5c42\u3002 +iptcxmp_iptcmodel.property.photoshop_DateCreated.title=\u521b\u5efa\u65e5\u671f +iptcxmp_iptcmodel.property.photoshop_DateCreated.description=\u6307\u5b9a\u77e5\u8bc6\u5185\u5bb9\u7684\u521b\u5efa\u65e5\u671f\uff0c\u4e5f\u53ef\u9009\u62e9\u6307\u5b9a\u521b\u5efa\u65f6\u95f4\uff0c\u800c\u4e0d\u662f\u7269\u7406\u8868\u793a\u7684\u521b\u5efa\u65e5\u671f\u3002 +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.title=\u8bf4\u660e/\u63cf\u8ff0\u4f5c\u8005 +iptcxmp_iptcmodel.property.photoshop_CaptionWriter.description=\u6807\u8bc6\u7b26\u6216\u53c2\u4e0e\u7f16\u5199\u3001\u7f16\u8f91\u6216\u66f4\u6b63\u5185\u5bb9\u63cf\u8ff0\u7684\u4eba\u5458\u7684\u59d3\u540d\u3002 +iptcxmp_iptcmodel.property.photoshop_Instructions.title=\u8bf4\u660e +iptcxmp_iptcmodel.property.photoshop_Instructions.description=\u4ece\u63d0\u4f9b\u8005\u6216\u521b\u5efa\u8005\u5230\u7269\u54c1\u63a5\u53d7\u8005\u7684\u4e00\u7cfb\u5217\u6307\u4ee4\u4e2d\u7684\u4efb\u4f55\u4e00\u9879\u3002 +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.title=\u804c\u4e1a\u6807\u8bc6\u7b26 +iptcxmp_iptcmodel.property.photoshop_TransmissionReference.description=\u7f16\u53f7\u6216\u6807\u8bc6\u7b26\uff0c\u7528\u4e8e\u6539\u8fdb\u5de5\u4f5c\u6d41\u7a0b\u7684\u5904\u7406\u3002\u8fd9\u662f\u4e00\u4e2a\u4e0e\u63d0\u4f9b\u9879\u76ee\u7684\u5de5\u4f5c\u6709\u5173\u7684\u7528\u6237\u521b\u5efa\u7684\u6807\u8bc6\u7b26\u3002 +iptcxmp_iptcmodel.property.dc_title.title=\u804c\u52a1 +iptcxmp_iptcmodel.property.dc_title.description=\u9879\u76ee\u7684\u4e00\u4e2a\u901f\u8bb0\u53c2\u8003\u3002\u6807\u9898\u63d0\u4f9b\u4e86\u4e00\u4e2a\u7b80\u77ed\u7684\u4eba\u7c7b\u53ef\u8bfb\u7684\u540d\u79f0\uff0c\u53ef\u4ee5\u662f\u4e00\u4e2a\u6587\u672c\u548c/\u6216\u6570\u5b57\u53c2\u8003\u3002\u5b83\u4e0e\u65b0\u95fb\u6458\u8981\u4e0d\u4e00\u6837\u3002 +iptcxmp_iptcmodel.property.dc_rights.title=\u7248\u6743\u58f0\u660e +iptcxmp_iptcmodel.property.dc_rights.description=\u5305\u542b\u4efb\u4f55\u5fc5\u8981\u7684\u7248\u6743\u58f0\u660e\uff0c\u4ee5\u4fbf\u4e3a\u8be5\u9879\u76ee\u7533\u8bf7\u77e5\u8bc6\u4ea7\u6743\uff0c\u5e76\u5e94\u786e\u5b9a\u8be5\u9879\u76ee\u5f53\u524d\u7684\u7248\u6743\u6240\u6709\u8005\u3002\u5176\u4ed6\u5b9e\u4f53\uff0c\u5982\u9879\u76ee\u7684\u521b\u5efa\u8005\uff0c\u53ef\u4ee5\u5728\u76f8\u5e94\u7684\u5b57\u6bb5\u4e2d\u6dfb\u52a0\u3002\u6709\u5173\u4f7f\u7528\u6743\u7684\u8bf4\u660e\u5e94\u5728\u201c\u6743\u5229\u4f7f\u7528\u6761\u6b3e\u201d\u4e2d\u63d0\u4f9b\u3002 +iptcxmp_iptcmodel.property.dc_creator.title=\u521b\u5efa\u8005 +iptcxmp_iptcmodel.property.dc_creator.description=\u5305\u542b\u521b\u5efa\u6b64\u9879\u76ee\u5185\u5bb9\u7684\u4eba\u5458\u7684\u59d3\u540d\u3001\u7167\u7247\u7684\u6444\u5f71\u5e08\u3001\u56fe\u7247\u827a\u672f\u5bb6\u6216\u6587\u5b57\u65b0\u95fb\u4f5c\u8005\uff0c\u4f46\u5728\u4e0d\u5e94\u8be5\u786e\u5b9a\u6444\u5f71\u5e08\u7684\u60c5\u51b5\u4e0b\uff0c\u516c\u53f8\u6216\u7ec4\u7ec7\u7684\u540d\u79f0\u53ef\u80fd\u662f\u5408\u9002\u7684\u3002 +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.title=\u521b\u5efa\u8005\u7684\u804c\u52a1 +iptcxmp_iptcmodel.property.photoshop_AuthorsPosition.description=\u5305\u542b\u521b\u5efa\u8fd9\u4e2a\u9879\u76ee\u5185\u5bb9\u7684\u4eba\u5458\u7684\u804c\u52a1\u3002\u7531\u4e8e\u8fd9\u662f\u4e00\u79cd\u9650\u5b9a\u8bcd\uff0c\u6240\u4ee5\u5fc5\u987b\u586b\u5199\u201c\u521b\u5efa\u8005\u201d\u5143\u7d20\uff0c\u4f5c\u4e3a\u4f7f\u7528Creator's Jobtitle\u7684\u5f3a\u5236\u6027\u524d\u63d0\u3002\u56e0\u6b64\u5fc5\u987b\u5c06\u201c\u521b\u5efa\u8005\u201d\u5143\u7d20\u4f5c\u4e3a\u4f7f\u7528\u521b\u5efa\u8005\u7684\u804c\u52a1\u7684\u5f3a\u5236\u6027\u5148\u51b3\u6761\u4ef6\u8fdb\u884c\u586b\u5199\u3002 +iptcxmp_iptcmodel.property.photoshop_Credit.title=\u4fe1\u7528\u989d\u5ea6 +iptcxmp_iptcmodel.property.photoshop_Credit.description=\u9879\u76ee\u4f9b\u5e94\u5546\u8981\u6c42\u5728\u53d1\u5e03\u65f6\u4f7f\u7528\u7684\u5bf9\u4e2a\u4eba\u548c/\u6216\u7ec4\u7ec7\u7684\u4fe1\u7528\u3002\u8fd9\u662f\u4e00\u4e2a\u81ea\u7531\u6587\u672c\u5b57\u6bb5\u3002 +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.title=\u7248\u6743\u4f7f\u7528\u6761\u6b3e +iptcxmp_iptcmodel.property.xmpRights_UsageTerms.description=\u4ee5\u81ea\u7531\u6587\u672c\u8868\u793a\u7684\u9879\u76ee\u7684\u8bb8\u53ef\u53c2\u6570\u3002 +iptcxmp_iptcmodel.property.photoshop_Source.title=\u6e90 +iptcxmp_iptcmodel.property.photoshop_Source.description=\u6807\u660e\u9879\u76ee\u77e5\u8bc6\u5185\u5bb9\u7684\u539f\u59cb\u7248\u6743\u6240\u6709\u8005\u3002\u8fd9\u53ef\u80fd\u662f\u4e00\u4e2a\u673a\u6784\u3001\u4e00\u4e2a\u673a\u6784\u7684\u6210\u5458\u6216\u4e2a\u4eba\u3002\u6765\u6e90\u53ef\u80fd\u4e0e\u521b\u9020\u8005\u548c\u7248\u6743\u901a\u77e5\u4e2d\u7684\u5b9e\u4f53\u4e0d\u540c\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.title=\u5730\u5740 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrExtadr.description=\u8054\u7cfb\u4fe1\u606f\u5730\u5740\u90e8\u5206\u3002\u5305\u62ec\u4e00\u4e2a\u53ef\u9009\u7684\u516c\u53f8\u540d\u79f0\u548c\u6240\u6709\u5fc5\u8981\u7684\u4fe1\u606f\uff0c\u4ee5\u786e\u5b9a\u5e94\u53d1\u9001\u90ae\u4ef6\u7684\u5efa\u7b51\u7269\u6216\u90ae\u7b52\u7684\u4f4d\u7f6e\u3002\u4e3a\u6b64\uff0c\u8be5\u5730\u5740\u662f\u4e00\u4e2a\u591a\u884c\u5b57\u6bb5\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.title=\u57ce\u5e02 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCity.description=\u8054\u7cfb\u4fe1\u606f\u7684\u57ce\u5e02\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.title=\u56fd\u5bb6/\u5730\u533a +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrCtry.description=\u8054\u7cfb\u4fe1\u606f\u7684\u56fd\u5bb6\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.title=\u7535\u5b50\u90ae\u4ef6 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiEmailWork.description=\u8054\u7cfb\u4fe1\u606f\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.title=\u7535\u8bdd +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiTelWork.description=\u8054\u7cfb\u4fe1\u606f\u7684\u7535\u8bdd\u53f7\u7801\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.title=\u90ae\u653f\u7f16\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrPcode.description=\u8054\u7cfb\u4fe1\u606f\u7684\u8868\u793a\u5f53\u5730\u90ae\u653f\u7f16\u7801\u90e8\u5206\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.title=\u5dde/\u7701 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiAdrRegion.description=\u8054\u7cfb\u4fe1\u606f\u7684\u8868\u793a\u533a\u57df\u4fe1\u606f\u90e8\u5206\uff0c\u5982\u5dde\u6216\u7701\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.title=Web URL +iptcxmp_iptcmodel.property.Iptc4xmpCore_CiUrlWork.description=\u8054\u7cfb\u4fe1\u606f\u7684\u7f51\u7edc\u5730\u5740\u90e8\u5206\u3002\u53ef\u4ee5\u7ed9\u51fa\u591a\u4e2a\u5730\u5740\uff0c\u7528\u9017\u53f7\u5206\u9694\u3002 +iptcxmp_iptcmodel.property.photoshop_Urgency.title=\u7d27\u6025 +iptcxmp_iptcmodel.property.photoshop_Urgency.description=\u5df2\u88ab\u5e9f\u5f03\uff0c\u4e0d\u5728 IPTC \u6838\u5fc3\u4e2d\u3002 +iptcxmp_iptcmodel.property.photoshop_Category.title=\u7c7b\u522b +iptcxmp_iptcmodel.property.photoshop_Category.description=\u5df2\u88ab\u5e9f\u5f03\uff0c\u4e0d\u5728 IPTC \u6838\u5fc3\u4e2d\u3002 +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.title=\u8865\u5145\u7c7b\u522b +iptcxmp_iptcmodel.property.photoshop_SupplementalCategories.description=\u5df2\u88ab\u5e9f\u5f03\uff0c\u4e0d\u5728 IPTC \u6838\u5fc3\u4e2d\u3002 + +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.title=\u5176\u4ed6\u6a21\u578b\u4fe1\u606f +iptcxmp_iptcmodel.property.Iptc4xmpExt_AddlModelInfo.description=\u5173\u4e8e\u6a21\u578b\u53d1\u5e03\u56fe\u50cf\u4e2d\u6a21\u578b\u7684\u79cd\u65cf\u548c\u5176\u4ed6\u65b9\u9762\u7684\u4fe1\u606f\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.title=\u56fe\u50cf\u4e2d\u7684\u63d2\u56fe\u6216\u5bf9\u8c61 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ArtworkOrObject.description=\u4e00\u7ec4\u5173\u4e8e\u827a\u672f\u54c1\u6216\u5bf9\u8c61\u7684\u5143\u6570\u636e +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.title=\u7cbe\u9009\u7ec4\u7ec7\u7684\u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageCode.description=\u4e00\u7ec4\u5173\u4e8e\u9879\u76ee\u4e2d\u7684\u827a\u672f\u54c1\u6216\u7269\u54c1\u7684\u5143\u6570\u636e +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.title=\u53d7\u63a7\u5236\u8bcd\u6c47\u8868\u672f\u8bed +iptcxmp_iptcmodel.property.Iptc4xmpExt_CVterm.description=\u901a\u8fc7\u53d7\u63a7\u8bcd\u6c47\u8868\u4e2d\u7684\u503c\u6765\u63cf\u8ff0\u56fe\u50cf\u5185\u5bb9\u7684\u672f\u8bed\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.title=\u6a21\u578b\u5b58\u5728\u65f6\u95f4 +iptcxmp_iptcmodel.property.Iptc4xmpExt_ModelAge.description=\u5728\u6a21\u578b\u53d1\u5e03\u56fe\u50cf\u4e2d\u62cd\u6444\u8be5\u56fe\u50cf\u65f6\u7684\u4eba\u4f53\u6a21\u578b\u7684\u5e74\u9f84\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.title=\u7cbe\u9009\u7ec4\u7ec7\u7684\u540d\u79f0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_OrganisationInImageName.description=\u5728\u6a21\u578b\u53d1\u5e03\u7684\u56fe\u50cf\u4e2d\uff0c\u62cd\u6444\u6b64\u56fe\u50cf\u65f6\u4eba\u4f53\u6a21\u578b\u7684\u5e74\u9f84\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.title=\u663e\u793a\u7684\u4eba\u5458 +iptcxmp_iptcmodel.property.Iptc4xmpExt_PersonInImage.description=\u9879\u76ee\u5185\u5bb9\u6d89\u53ca\u7684\u4eba\u5458\u7684\u59d3\u540d\u3002\u5bf9\u4e8e\u7167\u7247\u6765\u8bf4\uff0c\u5373\u56fe\u7247\u4e2d\u663e\u793a\u7684\u4eba\u7684\u59d3\u540d\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.title=\u6570\u5b57\u56fe\u50cf\u6807\u8bc6\u7b26 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigImageGUID.description=\u9879\u76ee\u7684\u5168\u5c40\u552f\u4e00\u6807\u8bc6\u7b26\u3002\u5b83\u662f\u7531\u9879\u76ee\u7684\u521b\u5efa\u8005\u5728\u521b\u5efa\u9879\u76ee\u65f6\u521b\u5efa\u548c\u5e94\u7528\u7684\u3002\u6b64\u540e\u4e0d\u5f97\u66f4\u6539\u6b64\u503c\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.title=\u539f\u59cb\u7167\u7247\u7684\u7269\u7406\u7c7b\u578b +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourcefileType.description=\u6e90\u6570\u5b57\u6587\u4ef6\u7684\u7c7b\u578b\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.title=\u7167\u7247\u6e90\u7c7b\u578b +iptcxmp_iptcmodel.property.Iptc4xmpExt_DigitalSourceType.description=\u6b64\u6570\u5b57\u56fe\u50cf\u7684\u6e90\u7c7b\u578b +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.title=\u4e8b\u4ef6 +iptcxmp_iptcmodel.property.Iptc4xmpExt_Event.description=\u547d\u540d\u6216\u63cf\u8ff0\u5185\u5bb9\u6240\u6d89\u53ca\u7684\u5177\u4f53\u4e8b\u4ef6\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierID.title=\u56fe\u50cf\u4f9b\u5e94\u5546 ID +iptcxmp_iptcmodel.property.plus_ImageSupplierID.description=\u6807\u8bc6\u9879\u76ee\u7684\u6700\u65b0\u4f9b\u5e94\u5546\uff0c\u4e0d\u4e00\u5b9a\u662f\u5176\u6240\u6709\u8005\u6216\u521b\u5efa\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierName.title=\u56fe\u50cf\u4f9b\u5e94\u5546\u540d\u79f0 +iptcxmp_iptcmodel.property.plus_ImageSupplierName.description=\u6807\u8bc6\u9879\u76ee\u7684\u6700\u65b0\u4f9b\u5e94\u5546\uff0c\u4e0d\u4e00\u5b9a\u662f\u5176\u6240\u6709\u8005\u6216\u521b\u5efa\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.title=\u56fe\u50cf\u4f9b\u5e94\u5546\u56fe\u50cf ID +iptcxmp_iptcmodel.property.plus_ImageSupplierImageID.description=\u56fe\u50cf\u4f9b\u5e94\u5546\u4e3a\u56fe\u50cf\u5206\u914d\u7684\u53ef\u9009\u6807\u8bc6\u7b26\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.title=IPTC \u5b57\u6bb5\u4e0a\u6b21\u7f16\u8f91\u65f6\u95f4 +iptcxmp_iptcmodel.property.Iptc4xmpExt_IptcLastEdited.description=\u7f16\u8f91\u4efb\u4f55\u4e00\u4e2a IPTC \u7684\u65e5\u671f\u548c\u53ef\u9009\u65f6\u95f4\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.title=\u6700\u5927\u53ef\u7528\u9ad8\u5ea6 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailHeight.description=\u539f\u59cb\u7167\u7247\u7684\u6700\u5927\u53ef\u7528\u9ad8\u5ea6\uff0c\u4ee5\u50cf\u7d20\u4e3a\u5355\u4f4d\uff0c\u8be5\u7167\u7247\u662f\u901a\u8fc7\u7f29\u5c0f\u5c3a\u5bf8\u800c\u5f97\u5230\u7684\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.title=\u6700\u5927\u53ef\u7528\u5bbd\u5ea6 +iptcxmp_iptcmodel.property.Iptc4xmpExt_MaxAvailWidth.description=\u539f\u59cb\u7167\u7247\u7684\u6700\u5927\u53ef\u7528\u5bbd\u5ea6\uff0c\u4ee5\u50cf\u7d20\u4e3a\u5355\u4f4d\uff0c\u8be5\u7167\u7247\u662f\u901a\u8fc7\u7f29\u5c0f\u5c3a\u5bf8\u5f97\u5230\u7684\u3002 +iptcxmp_iptcmodel.property.plus_Version.title=PLUS \u7248\u672c +iptcxmp_iptcmodel.property.plus_Version.description=\u5728\u4ea4\u6613\u53d1\u751f\u65f6\uff0cPLUS \u6807\u51c6\u7684\u7248\u672c\u53f7\u3002 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.title=\u7248\u6743\u6240\u6709\u8005 ID +iptcxmp_iptcmodel.property.plus_CopyrightOwnerID.description=\u6388\u6743\u56fe\u50cf\u7684\u7248\u6743\u6240\u6709\u8005\u3002 +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.title=\u7248\u6743\u6240\u6709\u8005\u59d3\u540d +iptcxmp_iptcmodel.property.plus_CopyrightOwnerName.description=\u6388\u6743\u56fe\u50cf\u7684\u7248\u6743\u6240\u6709\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageCreatorID.title=\u56fe\u50cf\u521b\u5efa\u8005 ID +iptcxmp_iptcmodel.property.plus_ImageCreatorID.description=\u56fe\u50cf\u7684\u521b\u5efa\u8005\u3002 +iptcxmp_iptcmodel.property.plus_ImageCreatorName.title=\u56fe\u50cf\u521b\u5efa\u8005\u59d3\u540d +iptcxmp_iptcmodel.property.plus_ImageCreatorName.description=\u56fe\u50cf\u7684\u521b\u5efa\u8005\u3002 +iptcxmp_iptcmodel.property.plus_LicensorID.title=PLUS ID +iptcxmp_iptcmodel.property.plus_LicensorID.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684 ID\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorName.title=\u540d\u79f0 +iptcxmp_iptcmodel.property.plus_LicensorName.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u540d\u79f0\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorCity.title=\u57ce\u5e02 +iptcxmp_iptcmodel.property.plus_LicensorCity.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u57ce\u5e02\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorCountry.title=\u56fd\u5bb6/\u5730\u533a +iptcxmp_iptcmodel.property.plus_LicensorCountry.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u56fd\u5bb6\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorEmail.title=\u7535\u5b50\u90ae\u4ef6 +iptcxmp_iptcmodel.property.plus_LicensorEmail.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u7535\u5b50\u90ae\u4ef6\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.title=\u6269\u5c55\u7684\u5730\u5740 +iptcxmp_iptcmodel.property.plus_LicensorExtendedAddress.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u6269\u5c55\u5730\u5740\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.title=\u90ae\u653f\u7f16\u7801 +iptcxmp_iptcmodel.property.plus_LicensorPostalCode.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u90ae\u653f\u7f16\u7801\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorRegion.title=\u533a\u57df +iptcxmp_iptcmodel.property.plus_LicensorRegion.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u533a\u57df\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.title=\u8857\u9053\u5730\u5740 +iptcxmp_iptcmodel.property.plus_LicensorStreetAddress.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u8857\u9053\u5730\u5740\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.title=\u7535\u8bdd 1 +iptcxmp_iptcmodel.property.plus_LicensorTelephone1.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u7535\u8bdd 1\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.title=\u7535\u8bdd 2 +iptcxmp_iptcmodel.property.plus_LicensorTelephone2.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684\u7535\u8bdd 2\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_LicensorURL.title=URL +iptcxmp_iptcmodel.property.plus_LicensorURL.description=\u5e94\u8054\u7cfb\u7684\u4e2a\u4eba\u6216\u516c\u53f8\u7684 URL\uff0c\u4ee5\u83b7\u5f97\u4f7f\u7528\u8be5\u9879\u76ee\u7684\u8bb8\u53ef\u8bc1\uff0c\u6216\u8c01\u5df2\u7ecf\u8bb8\u53ef\u4e86\u8be5\u9879\u76ee\u3002 +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.title=\u6b21\u8981\u6a21\u578b\u5b58\u5728\u65f6\u95f4\u663e\u793a +iptcxmp_iptcmodel.property.plus_MinorModelAgeDisclosure.description=\u56fe\u7247\u4e2d\u6700\u5e74\u8f7b\u7684\u6a21\u7279\u7684\u5e74\u9f84\uff0c\u5728\u56fe\u7247\u5236\u4f5c\u7684\u65f6\u5019\u3002 +iptcxmp_iptcmodel.property.plus_ModelReleaseID.title=\u6a21\u578b\u7248\u672c ID +iptcxmp_iptcmodel.property.plus_ModelReleaseID.description=\u4e0e\u6bcf\u4e2a\u6a21\u578b\u53d1\u5e03\u76f8\u5173\u7684\u53ef\u9009\u6807\u8bc6\u7b26\u3002 +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.title=\u6a21\u578b\u53d1\u5e03\u72b6\u6001 +iptcxmp_iptcmodel.property.plus_ModelReleaseStatus.description=\u6982\u8ff0\u4e86\u6388\u6743\u4f7f\u7528\u7167\u7247\u4e2d\u4eba\u7269\u8096\u50cf\u7684\u6a21\u578b\u53d1\u5e03\u7684\u53ef\u7528\u6027\u548c\u8303\u56f4\u3002 +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.title=\u5c5e\u6027\u7248\u672c ID +iptcxmp_iptcmodel.property.plus_PropertyReleaseID.description=\u4e0e\u6bcf\u4e2a\u5c5e\u6027\u7248\u672c\u5173\u8054\u7684\u53ef\u9009\u6807\u8bc6\u7b26\u3002 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.title=\u5c5e\u6027\u7248\u672c\u72b6\u6001 +iptcxmp_iptcmodel.property.plus_PropertyReleaseStatus.description=\u6982\u8ff0\u4e86\u6388\u6743\u4f7f\u7528\u7167\u7247\u4e2d\u51fa\u73b0\u7684\u8d22\u4ea7\u91ca\u653e\u7684\u53ef\u7528\u6027\u548c\u8303\u56f4\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.title=\u7248\u6743\u58f0\u660e +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCopyrightNotice.description=\u5305\u542b\u4efb\u4f55\u5fc5\u8981\u7684\u7248\u6743\u58f0\u660e\uff0c\u4ee5\u4fbf\u4e3a\u56fe\u50cf\u4e2d\u7684\u827a\u672f\u54c1\u6216\u5bf9\u8c61\u7533\u8bf7\u77e5\u8bc6\u4ea7\u6743\uff0c\u5e76\u5e94\u786e\u5b9a\u672c\u4f5c\u54c1\u7248\u6743\u7684\u5f53\u524d\u6240\u6709\u8005\u548c\u76f8\u5173\u77e5\u8bc6\u4ea7\u6743\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.title=\u521b\u5efa\u8005 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOCreator.description=\u5305\u542b\u5728\u56fe\u50cf\u4e2d\u521b\u5efa\u827a\u672f\u54c1\u6216\u5bf9\u8c61\u7684\u827a\u672f\u5bb6\u7684\u59d3\u540d\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.title=\u521b\u5efa\u65e5\u671f +iptcxmp_iptcmodel.property.Iptc4xmpExt_AODateCreated.description=\u6307\u5b9a\u521b\u5efa\u56fe\u50cf\u4e2d\u7684\u827a\u672f\u54c1\u6216\u5bf9\u8c61\u7684\u65e5\u671f\u548c\u65f6\u95f4\uff08\u53ef\u9009\uff09\u3002\u8fd9\u6d89\u53ca\u5230\u5177\u6709\u76f8\u5173\u77e5\u8bc6\u4ea7\u6743\u7684\u827a\u672f\u54c1\u6216\u7269\u54c1\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.title=\u6e90 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSource.description=\u4e3a\u4fbf\u4e8e\u6e05\u70b9\uff0c\u5728\u56fe\u50cf\u4e2d\u4fdd\u5b58\u548c\u767b\u8bb0\u827a\u672f\u54c1\u6216\u7269\u54c1\u7684\u7ec4\u7ec7\u6216\u673a\u6784\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.title=\u6e90\u5e93\u5b58\u7f16\u53f7 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOSourceInvNo.description=\u7531\u5728\u56fe\u50cf\u4e2d\u4fdd\u5b58\u548c\u767b\u8bb0\u827a\u672f\u54c1\u6216\u7269\u54c1\u7684\u7ec4\u7ec7\u6216\u673a\u6784\u53d1\u5e03\u7684\u5e93\u5b58\u7f16\u53f7\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.title=\u804c\u52a1 +iptcxmp_iptcmodel.property.Iptc4xmpExt_AOTitle.description=\u56fe\u50cf\u4e2d\u827a\u672f\u54c1\u6216\u7269\u54c1\u7684\u53c2\u8003\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.title=\u57ce\u5e02 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCity.description=\u5730\u70b9\u6240\u5728\u57ce\u5e02\u7684\u540d\u79f0\u3002\u8be5\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u56db\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.title=\u56fd\u5bb6/\u5730\u533a ISO \u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryCode.description=\u4e00\u4e2a\u56fd\u5bb6\u6216\u5730\u533a\u7684 ISO \u4ee3\u7801\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e8c\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.title=\u56fd\u5bb6/\u5730\u533a\u540d\u79f0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownCountryName.description=\u4e00\u4e2a\u56fd\u5bb6\u6216\u5730\u533a\u7684\u540d\u79f0\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e8c\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.title=\u7701/\u5dde +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownProvinceState.description=\u4e00\u4e2a\u56fd\u5bb6\u7684\u4e00\u4e2a\u5206\u533a\u57df\u7684\u540d\u79f0 -- \u4e00\u4e2a\u7701\u6216\u5dde -- \u6216\u4e00\u4e2a\u5730\u70b9\u7684\u540d\u79f0\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e09\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.title=\u5b50\u4f4d\u7f6e +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownSublocation.description=\u5b50\u4f4d\u7f6e\u7684\u540d\u79f0\u3002\u6b64\u5b50\u4f4d\u7f6e\u540d\u79f0\u53ef\u4ee5\u662f\u57ce\u5e02\u5b50\u4f4d\u7f6e\u7684\u540d\u79f0\uff0c\u4e5f\u53ef\u4ee5\u662f\u57ce\u5e02\u5916\u7684\u8457\u540d\u4f4d\u7f6e\u6216\uff08\u81ea\u7136\uff09\u7eaa\u5ff5\u7891\u7684\u540d\u79f0\u3002\u4ece\u57ce\u5e02\u6b21\u7ea7\u5b9a\u4f4d\u7684\u610f\u4e49\u4e0a\u8bf4\uff0c\u8fd9\u4e00\u8981\u7d20\u5904\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e94\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.title=\u4e16\u754c\u533a\u57df +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationShownWorldRegion.description=\u4e00\u4e2a\u5730\u70b9\u7684\u4e16\u754c\u533a\u57df\u7684\u540d\u79f0\u3002\u8be5\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e00\u5c42\uff08topI\uff09\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.title=\u57ce\u5e02 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCity.description=\u5730\u70b9\u6240\u5728\u57ce\u5e02\u7684\u540d\u79f0\u3002\u8be5\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u56db\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.title=\u56fd\u5bb6/\u5730\u533a ISO \u4ee3\u7801 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryCode.description=\u4e00\u4e2a\u56fd\u5bb6\u6216\u5730\u533a\u7684 ISO \u4ee3\u7801\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e8c\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.title=\u56fd\u5bb6/\u5730\u533a\u540d\u79f0 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedCountryName.description=\u4e00\u4e2a\u56fd\u5bb6\u6216\u5730\u533a\u7684\u540d\u79f0\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e8c\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.title=\u7701/\u5dde +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedProvinceState.description=\u4e00\u4e2a\u56fd\u5bb6\u7684\u4e00\u4e2a\u5206\u533a\u57df\u7684\u540d\u79f0 -- \u4e00\u4e2a\u7701\u6216\u5dde -- \u6216\u4e00\u4e2a\u5730\u70b9\u7684\u540d\u79f0\u3002\u6b64\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e09\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.title=\u5b50\u4f4d\u7f6e +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedSublocation.description=\u5b50\u4f4d\u7f6e\u7684\u540d\u79f0\u3002\u6b64\u5b50\u4f4d\u7f6e\u540d\u79f0\u53ef\u4ee5\u662f\u57ce\u5e02\u5b50\u4f4d\u7f6e\u7684\u540d\u79f0\uff0c\u4e5f\u53ef\u4ee5\u662f\u57ce\u5e02\u5916\u7684\u8457\u540d\u4f4d\u7f6e\u6216\uff08\u81ea\u7136\uff09\u7eaa\u5ff5\u7891\u7684\u540d\u79f0\u3002\u4ece\u57ce\u5e02\u6b21\u7ea7\u5b9a\u4f4d\u7684\u610f\u4e49\u4e0a\u8bf4\uff0c\u8fd9\u4e00\u8981\u7d20\u5904\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e94\u5c42\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.title=\u4e16\u754c\u533a\u57df +iptcxmp_iptcmodel.property.Iptc4xmpExt_LocationCreatedWorldRegion.description=\u4e00\u4e2a\u5730\u70b9\u7684\u4e16\u754c\u533a\u57df\u7684\u540d\u79f0\u3002\u8be5\u5143\u7d20\u4f4d\u4e8e\u81ea\u4e0a\u800c\u4e0b\u7684\u5730\u7406\u5c42\u6b21\u7ed3\u6784\u7684\u7b2c\u4e00\u5c42\uff08topI\uff09\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.title=\u9879\u76ee\u6807\u8bc6\u7b26 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegItemId.description=\u7531\u6ce8\u518c\u8868\u521b\u5efa\u5e76\u7531\u9879\u76ee\u521b\u5efa\u8005\u5e94\u7528\u7684\u552f\u4e00\u6807\u8bc6\u7b26\u3002\u8be5\u503c\u5728\u5e94\u7528\u540e\u4e0d\u5f97\u6539\u53d8\u3002\u6b64\u6807\u8bc6\u7b26\u94fe\u63a5\u5230\u76f8\u5e94\u7684\u6ce8\u518c\u8868\u7ec4\u7ec7\u6807\u8bc6\u7b26\u3002 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.title=\u7ec4\u7ec7\u6807\u8bc6\u7b26 +iptcxmp_iptcmodel.property.Iptc4xmpExt_RegOrgId.description=\u53d1\u653e\u76f8\u5e94\u6ce8\u518c\u8868\u6620\u50cf Id \u7684\u6ce8\u518c\u8868\u7684\u6807\u8bc6\u7b26\u3002 + + diff --git a/models/iptc/iptcModel.xml b/models/iptc/iptcModel.xml new file mode 100644 index 00000000..98b78601 --- /dev/null +++ b/models/iptc/iptcModel.xml @@ -0,0 +1,621 @@ + + + + + IPTC Model + rgauss + 1.0 + + + + + + + + + + + + + + + + + + + IPTC + + + + + d:text + + false + + + + d:text + + false + + + + d:text + + false + + + + d:mltext + + + d:text + + both + + + + d:text + + both + + + + d:text + true + + false + + + + d:text + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + + both + + + + d:datetime + + both + + + + d:text + + both + + + + d:text + + + d:text + + false + + + + d:mltext + + + d:mltext + + both + + + + d:text + true + + both + + + + d:text + + both + + + + d:text + + both + + + + d:mltext + + both + + + + d:text + + both + + + + d:text + true + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + + + + + + d:text + + + d:text + true + + both + + + + d:text + true + + false + + + + d:int + true + + + d:text + true + + both + + + + d:text + true + + both + + + + d:text + + false + + + + + d:text + + false + + + + d:mltext + + both + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + + false + + + + d:datetime + + both + + + + d:int + + + d:int + + + d:text + + false + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + + false + + + + d:text + true + + false + + + + d:text + + false + + + + d:text + true + + false + + + + d:text + + false + + + + d:text + true + + both + + + + d:text + true + + both + + + + d:datetime + true + + both + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + both + + + + d:text + true + + false + + + + d:text + true + + false + + + + d:text + true + + false + + + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 53f99323..397591b1 100644 --- a/pom.xml +++ b/pom.xml @@ -1,35 +1,33 @@ 4.0.0 + org.alfresco + alfresco-transform-core + 2.5.4 + pom org.springframework.boot spring-boot-starter-parent - 2.4.3 - + 2.5.6 - org.alfresco - alfresco-transform-core - 2.3.11-SNAPSHOT - pom - 11 11 11 latest - 2.0.22 + 2.0.24 3.0.1.12 ${project.version} - 1.3.1 - 5.16.1 - 2.12.1 - 2.10.5.1 - 4.13.1 - 3.4.2 - 1.25 + 1.4.3 + 5.16.3 + 2.13.0 + ${dependency.jackson.version} + 4.13.2 + 3.4.5 + 1.26 4.1.2 1.4 @@ -130,7 +128,7 @@ scm:git:https://github.com/Alfresco/alfresco-transform-core.git scm:git:https://github.com/Alfresco/alfresco-transform-core.git https://github.com/Alfresco/alfresco-transform-core - HEAD + 2.5.4 @@ -227,7 +225,7 @@ com.google.guava guava - 29.0-jre + 31.0.1-jre @@ -238,13 +236,13 @@ org.apache.commons commons-compress - 1.19 + 1.21 org.jsoup jsoup - 1.13.1 + 1.14.3 @@ -277,7 +275,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.2.0 + 3.3.1 none @@ -367,7 +365,7 @@ /usr/bin/convert /usr/lib64/ImageMagick-7.0.10/lib /usr/lib64/ImageMagick-7.0.10 - /opt/libreoffice6.3 + /opt/libreoffice7.0 200 1200000 8100 @@ -413,7 +411,7 @@ io.fabric8 docker-maven-plugin - 0.34.1 + 0.37.0 true