Translation components API.

See the Weblate's Web API documentation for detailed description of the API.

GET /api/translations/xwiki-platform/xwiki-xwikisyntaximages/de/units/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaximages/de/?format=api",
            "source": [
                "= Editing =\n\n== Images ==\n\n=== 1.0 Images ===\n\n|=Feature|=XWiki Syntax 1.0|=Result\n|Image from attachment on current page|(((\n{{info}}See [[Image Macro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Old%20XWiki%201.0%20syntax%20renderer/Image%20Macro%20%28Radeox%29]] for details{{/info}}\n{{{{image:img.png}}}}\n)))|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{{image:img.png|document=Space.Page}}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{{image:img.png|width=25|height=25}}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Images located at URL|{{{https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n=== 2.0 Images ===\n\n|=Feature|=XWiki Syntax 2.0|=Result\n|Image from attachment on current page|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{image:Space.Page@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Image with caption|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Images located at URL|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading XWiki Syntax 2.0 Image Specification $subHeading{{/velocity}}\n\n{{info}}\nThe part in ##( )## is required, while the parts in ##{ }## are optional.\n{{/info}}\n\nThe full format of an image is either **##image~: (reference)##** or **##~[~[{caption>>}image~: (reference) {||parameters}]]##**\n\n* **##caption##**: An optional caption. May contain arbitrary XWiki 2.0 syntax but nested link syntax must be escaped using ##~~##. The caption is only supported when the image syntax is the only content of a paragraph. The captioned image may also be wrapped in a link. In this case, the link will contain the image but not the caption.\n* **##image~:##** A required string identifying the resource as image.\n* **##reference##**: The reference to the image that shall be displayed in one of the following forms:\n** **URL**: Any URL to an image in the form of **##http:~/~/path/imageName##**. Example: ##http:~/~/domain.org/path/img.png##\n** **Attachment** reference in the form **##~{~{~{wikiName:} space.} page@} (imageName)##**\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. Example: mywiki\n*** **##space##**: An optional wiki Space name. If no space is specified the current space is used. Example: Main\n*** **##page##**: An optional string containing the name of the wiki page to which the referenced image is attached. Example: WebHome\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki.\n* **##parameters##**: An optional list of space-separated parameters passed to the image. Example: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTML attributes**: All attributes defined by the HTML standard will be added to the rendered HTML ##<img>## tag.\n*** **##style##**: CSS style information that should be applied to the image. Examples: ##style=\"float:right;height:50\"## (image on right side, height 50 px), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (image centered, width 80% of block width), ##style=\"vertical-align:bottom\"## (text starts at bottom of picture)\n*** **##height##**: A parameter that defines the height of the displayed image. The value should be presented either in pixel (example: ##height=\"80\"##) or in pixel related to the height of the block containing the image (example: ##height=\"40%\"##).\n*** **##width##**: A parameter that defines the width of the displayed image. The value should be presented either in pixel (example: ##width=\"80\"##) or in pixel related to the width of the block containing the image (example: ##width=\"40%\"##).\n*** **##title##**: A parameter that defines the title the displayed image which will be visible when hovering the mouse trigger over the image, for instance. Example: ##title=\"My nice image\"##\n*** **##alt##**: A parameter that defines which text should be displayed if the browser is not able to display the image. Since this is a required HTML attribute XWiki will use the file name instead if the ##alt## parameter is not defined. Example: ##alt=\"img.png\"##\n*** **More**: A more in depth explanation on the HTML ##<img>## tag including more attributes can be reviewed [[in the HTML standard>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]].\n\n=== 2.1 Images ===\n\n|=Feature|=XWiki Syntax 2.1|=Result\n|Image from attachment on current page|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{image:PageA.PageB@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Image with caption|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Images located at URL|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Prepackaged Icons|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading XWiki Syntax 2.1 Image Specification $subHeading{{/velocity}}\n\n{{info}}\nLegend: The parts are ##()## are required, while the parts in ##{}## are optional.\n{{/info}}\n\nThe full format of an image is either **##image~: (reference)##** or **##~[~[{caption>>}image~: (reference) {||parameters}]]##**\n\n* **##caption##**: An optional caption. May contain arbitrary XWiki 2.1 syntax but nested link syntax must be escaped using ##~~##. The caption is only supported when the image syntax is the only content of a paragraph. The captioned image may also be wrapped in a link. In this case, the link will contain the image but not the caption.\n* **##image~:##** A required string identifying the resource as image.\n* **##reference##**: The reference to the image that shall be displayed in one of the following forms:\n** **URL**: Any URL to an image in the form of **##[url:](protocol:~/~/path/imageName)##**. Example: ##http:~/~/domain.org/path/img.png##\n*** **##url:##** An optional string identifying the image as an URL.\n*** **##protocol:~/~/path/imageName##**: The URL to the image\n** **Attachment**: A reference in the form **##[attach~:]~{~{~{(wikiName):}(spaceNameList).}(pageName)@}(imageName)##**\n*** **##attach~:##** An optional string identifying the reference as an XWiki Document attachment.\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. If no wiki is specified, the current wiki is used. Example: ##mywiki##.\n*** **##spaceNameList##**: An optional dot-separated list of wiki Space names. If no space is specified the current space is used. Examples: ##Main##, ##A.B##, ##A.B.C##\n*** **##pageName##**: An optional string containing the name of the wiki page to which the referenced image is attached. Example: ##Welcome##\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki. Example: ##myImage.png##\n** **Page Attachment**: A reference in the form **##pageAttach~:~{~{~{(wikiName):}(pageNameList)/}(imageName)##**\n*** **##pageAttach~:##** An required string identifying the reference as an XWiki Page attachment.\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. If no wiki is specified, the current wiki is used. Example: ##mywiki##.\n*** **##pageNameList##**: An optional dot-separated list of wiki page names. If no page is specified the current page is used. Examples: ##Main##, ##A/B##, ##A/B/C##\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki. Example: ##myImage.png##\n** **Icon**: A reference in the form **##icon{{{:(}}}iconName)##**. Example: **##icon:accept##**\n*** **##icon:##** A required string identifying the image reference as an icon from the [[XWiki Icon Set>>https://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]].\n*** **##iconName##**: A required string identifying the icon referenced. Example: ##accept##\n** **Data URI**: A reference in the form **##(data{{{:)}}}(content)##**. Example: **##{{{data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##**\n*** **##data:##** A required string identifying the image as being specified inline using the [[Data URI scheme>>https://en.wikipedia.org/wiki/Data_URI_scheme]].\n*** **##content##**: The encoded image. Example: ##{{{image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##\n* **##parameters##**: An optional list of space-separated parameters passed to the image. Example: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTML attributes**: All attributes defined by the HTML standard will be added to the rendered HTML ##<img>## tag.\n*** **##style##**: CSS style information that should be applied to the image. Examples: ##style=\"float:right;height:50\"## (image on right side, height 50 px), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (image centered, width 80% of block width), ##style=\"vertical-align:bottom\"## (text starts at bottom of picture)\n*** **##height##**: A parameter that defines the height of the displayed image. The value should be presented either in pixel (example: ##height=\"80\"##) or in pixel related to the height of the block containing the image (example: ##height=\"40%\"##).\n*** **##width##**: A parameter that defines the width of the displayed image. The value should be presented either in pixel (example: ##width=\"80\"##) or in pixel related to the width of the block containing the image (example: ##width=\"40%\"##).\n*** **##title##**: A parameter that defines the title the displayed image which will be visible when hovering the mouse trigger over the image, for instance. Example: ##title=\"My nice image\"##\n*** **##alt##**: A parameter that defines which text should be displayed if the browser is not able to display the image. Since this is a required HTML attribute XWiki will use the file name instead if the ##alt## parameter is not defined. Example: ##alt=\"img.png\"##\n*** **More**: A more in depth explanation on the HTML ##<img>## tag including more attributes can be reviewed [[in the HTML standard>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]].\n** **##queryString##**: Allows queries to be passed to the server when creating the download link for the referenced image. Example: ##queryString=\"width=100&height=800&keepAspectRatio=true\"## (**##keepAspectRatio=true## will fail if the ##width## and ##height## parameters are specified in addition to ##queryString##!**)"
            ],
            "previous_source": "= Editing =\n\n== Images ==\n\n=== 1.0 Images ===\n\n|=Feature|=XWiki Syntax 1.0|=Result\n|Image from attachment on current page|(((\n{{info}}See [[Image Macro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Old%20XWiki%201.0%20syntax%20renderer/Image%20Macro%20%28Radeox%29]] for details{{/info}}\n{{{{image:img.png}}}}\n)))|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{{image:img.png|document=Space.Page}}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{{image:img.png|width=25|height=25}}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Images located at URL|{{{https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n=== 2.0 Images ===\n\n|=Feature|=XWiki Syntax 2.0|=Result\n|Image from attachment on current page|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{image:Space.Page@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Image with caption|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Images located at URL|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading XWiki Syntax 2.0 Image Specification $subHeading{{/velocity}}\n\n{{info}}\nThe part in ##( )## is required, while the parts in ##{ }## are optional.\n{{/info}}\n\nThe full format of an image is either **##image~: (reference)##** or **##~[~[{caption>>}image~: (reference) {||parameters}]]##**\n\n* **##caption##**: An optional caption. May contain arbitrary XWiki 2.0 syntax but nested link syntax must be escaped using ##~~##. The caption is only supported when the image syntax is the only content of a paragraph. The captioned image may also be wrapped in a link. In this case, the link will contain the image but not the caption.\n* **##image~:##** A required string identifying the resource as image.\n* **##reference##**: The reference to the image that shall be displayed in one of the following forms:\n** **URL**: Any URL to an image in the form of **##http:~/~/path/imageName##**. Example: ##http:~/~/domain.org/path/img.png##\n** **Attachment** reference in the form **##~{~{~{wikiName:} space.} page@} (imageName)##**\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. Example: mywiki\n*** **##space##**: An optional wiki Space name. If no space is specified the current space is used. Example: Main\n*** **##page##**: An optional string containing the name of the wiki page to which the referenced image is attached. Example: WebHome\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki.\n* **##parameters##**: An optional list of space-separated parameters passed to the image. Example: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTML attributes**: All attributes defined by the HTML standard will be added to the rendered HTML ##<img>## tag.\n*** **##style##**: CSS style information that should be applied to the image. Examples: ##style=\"float:right;height:50\"## (image on right side, height 50 px), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (image centered, width 80% of block width), ##style=\"vertical-align:bottom\"## (text starts at bottom of picture)\n*** **##height##**: A parameter that defines the height of the displayed image. The value should be presented either in pixel (example: ##height=\"80\"##) or in pixel related to the height of the block containing the image (example: ##height=\"40%\"##).\n*** **##width##**: A parameter that defines the width of the displayed image. The value should be presented either in pixel (example: ##width=\"80\"##) or in pixel related to the width of the block containing the image (example: ##width=\"40%\"##).\n*** **##title##**: A parameter that defines the title the displayed image which will be visible when hovering the mouse trigger over the image, for instance. Example: ##title=\"My nice image\"##\n*** **##alt##**: A parameter that defines which text should be displayed if the browser is not able to display the image. Since this is a required HTML attribute XWiki will use the file name instead if the ##alt## parameter is not defined. Example: ##alt=\"img.png\"##\n*** **More**: A more in depth explanation on the HTML ##<img>## tag including more attributes can be reviewed [[in the HTML standard>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]].\n\n=== 2.1 Images ===\n\n|=Feature|=XWiki Syntax 2.1|=Result\n|Image from attachment on current page|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image from attachment on another page|{{{image:PageA.PageB@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Image with parameters|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Image with caption|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~] supports captions.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Images located at URL|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Prepackaged Icons|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading XWiki Syntax 2.1 Image Specification $subHeading{{/velocity}}\n\n{{info}}\nLegend: The parts are ##()## are required, while the parts in ##{}## are optional.\n{{/info}}\n\nThe full format of an image is either **##image~: (reference)##** or **##~[~[{caption>>}image~: (reference) {||parameters}]]##**\n\n* **##caption##**: An optional caption. May contain arbitrary XWiki 2.1 syntax but nested link syntax must be escaped using ##~~##. The caption is only supported when the image syntax is the only content of a paragraph. The captioned image may also be wrapped in a link. In this case, the link will contain the image but not the caption.\n* **##image~:##** A required string identifying the resource as image.\n* **##reference##**: The reference to the image that shall be displayed in one of the following forms:\n** **URL**: Any URL to an image in the form of **##[url:](protocol:~/~/path/imageName)##**. Example: ##http:~/~/domain.org/path/img.png##\n*** **##url:##** An optional string identifying the image as an URL.\n*** **##protocol:~/~/path/imageName##**: The URL to the image\n** **Attachment**: A reference in the form **##[attach~:]~{~{~{(wikiName):}(spaceNameList).}(pageName)@}(imageName)##**\n*** **##attach~:##** An optional string identifying the reference as an XWiki Document attachment.\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. If no wiki is specified, the current wiki is used. Example: ##mywiki##.\n*** **##spaceNameList##**: An optional dot-separated list of wiki Space names. If no space is specified the current space is used. Examples: ##Main##, ##A.B##, ##A.B.C##\n*** **##pageName##**: An optional string containing the name of the wiki page to which the referenced image is attached. Example: ##Welcome##\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki. Example: ##myImage.png##\n** **Page Attachment**: A reference in the form **##pageAttach~:~{~{~{(wikiName):}(pageNameList)/}(imageName)##**\n*** **##pageAttach~:##** An required string identifying the reference as an XWiki Page attachment.\n*** **##wikiName##**: An optional string containing the name of a wiki. The image reference will point to an image attached to a page inside that wiki. If no wiki is specified, the current wiki is used. Example: ##mywiki##.\n*** **##pageNameList##**: An optional dot-separated list of wiki page names. If no page is specified the current page is used. Examples: ##Main##, ##A/B##, ##A/B/C##\n*** **##imageName##**: A required string containing the name of the image attached to a page as it is stored in the wiki. Example: ##myImage.png##\n** **Icon**: A reference in the form **##icon{{{:(}}}iconName)##**. Example: **##icon:accept##**\n*** **##icon:##** A required string identifying the image reference as an icon from the [[XWiki Icon Set>>https://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]].\n*** **##iconName##**: A required string identifying the icon referenced. Example: ##accept##\n** **Icon**: A reference in the form **##icon{{{:(}}}iconName)##**. Example: **##icon:accept##**\n*** **##icon:##** A required string identifying the image reference as an icon from the [[XWiki Icon Set>>https://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]].\n*** **##iconName##**: A required string identifying the icon referenced. Example: ##accept##\n** **Data URI**: A reference in the form **##(data{{{:)}}}(content)##**. Example: **##{{{data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##**\n*** **##data:##** A required string identifying the image as being specified inline using the [[Data URI scheme>>https://en.wikipedia.org/wiki/Data_URI_scheme]].\n*** **##content##**: The encoded image. Example: ##{{{image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##\n* **##parameters##**: An optional list of space-separated parameters passed to the image. Example: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTML attributes**: All attributes defined by the HTML standard will be added to the rendered HTML ##<img>## tag.\n*** **##style##**: CSS style information that should be applied to the image. Examples: ##style=\"float:right;height:50\"## (image on right side, height 50 px), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (image centered, width 80% of block width), ##style=\"vertical-align:bottom\"## (text starts at bottom of picture)\n*** **##height##**: A parameter that defines the height of the displayed image. The value should be presented either in pixel (example: ##height=\"80\"##) or in pixel related to the height of the block containing the image (example: ##height=\"40%\"##).\n*** **##width##**: A parameter that defines the width of the displayed image. The value should be presented either in pixel (example: ##width=\"80\"##) or in pixel related to the width of the block containing the image (example: ##width=\"40%\"##).\n*** **##title##**: A parameter that defines the title the displayed image which will be visible when hovering the mouse trigger over the image, for instance. Example: ##title=\"My nice image\"##\n*** **##alt##**: A parameter that defines which text should be displayed if the browser is not able to display the image. Since this is a required HTML attribute XWiki will use the file name instead if the ##alt## parameter is not defined. Example: ##alt=\"img.png\"##\n*** **More**: A more in depth explanation on the HTML ##<img>## tag including more attributes can be reviewed [[in the HTML standard>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]].\n** **##queryString##**: Allows queries to be passed to the server when creating the download link for the referenced image. Example: ##queryString=\"width=100&height=800&keepAspectRatio=true\"## (**##keepAspectRatio=true## will fail if the ##width## and ##height## parameters are specified in addition to ##queryString##!**)",
            "target": [
                "= Bearbeiten =\n\n== Bilder ==\n\n{{comment}}please do not translate the sub headlines{{/comment}}\n=== 1.0 Images ===\n\n|=Funktion|=XWiki Syntax 1.0|=Ergebnis\n|Bild von Anhang auf aktueller Seite|(((\n{{info}}Siehe [[Bildmakro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Old%20XWiki%201.0%20syntax%20renderer/Image%20Macro%20%28Radeox%29]] für Details{{/info}}\n{{{{image:XWiki.XWikiSyntaxImages@img.png}}}}\n)))|image:XWiki.XWikiSyntaxImages@img.png\n|Bild von Anhang auf anderer Seite|{{{{image:img.png|document=Bereich.Seite}}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Bild mit Parametern|{{{{image:img.png|width=25|height=25}}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Bild befindlich an URL|{{{http://eine/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n=== 2.0 Images ===\n\n|=Funktion|=XWiki Syntax 2.0|=Ergebnis\n|Bild von Anhang auf aktueller Seite|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Bild von Anhang auf anderer Seite|{{{image:Bereich.Seite@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Bild mit Parametern|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Bild mit Bildunterschrift|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] unterstützt Bildunterschriften.>>image:img.png]]}}}|(( ([[~[~[XWiki~>~>https://www.xwiki.org~]~] unterstützt Bildunterschriften.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Bild befindlich an URL|{{{image:http://eine/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading XWiki Syntax 2.0 Bild-Spezifikation $subHeading{{/velocity}}\n\n{{info}}\nDer Teil in ##( )## ist erforderlich, während die Teile in ##{ }## optional sind.\n{{/info}}\n\nDas vollständige Format eines Bilder ist entweder **##image~: (Verweis)##** oder **##~[~[{caption>>}image~: (Verweis) {||Parameter}]]##**\n\n* **##caption##**: Eine optionale Beschriftung. Kann beliebige XWiki 2.0-Syntax enthalten, aber verschachtelte Link-Syntax muss mit ##~~## maskiert werden. Die Beschriftung wird nur unterstützt, wenn die Bildsyntax der einzige Inhalt eines Absatzes ist. Das Bild mit der Beschriftung kann auch in einen Link eingebettet sein. In diesem Fall enthält der Link das Bild, aber nicht die Beschriftung.\n* **##image~:##** Ein erforderlicher Text, welches die folgenden Angaben als Bild kennzeichnet.\n* **##Verweis##**: Der Verweis auf das anzuzeigende Bild. Der Verweis kann in folgenden Formaten angegeben werden:\n** **URL**: Eine URL zu einem externen Bild in dem Format **##http:~/~/pfad/BildName##**. Beispiel: ##http:~/~/example.org/pfad/bild.png##\n** **Anhang**: Ein Verweis auf einen Anhang im Wiki im Format **##~{~{~{wikiName:} Bereich.} Seite@} (BildName)##**\n*** **##wikiName##**: Ein optionaler Text, welcher den Namen eines Subwikis enthält. Das Bild wird dann in dem entsprechenden Subwiki nachgeschlagen. Beispiel: ##meinwiki##\n*** **##Bereich##**: Der Name eines Bereiches, in dem das Bild nachgeschlagen wird (optional). Wenn kein Bereich angegeben, wird der aktuelle Bereich verwendet. Beispiel: ##Main##\n*** **##Seite##**: Der Namen einer Seite, an der das Bild angehangen ist (optional). Wird keine Seite angegeben, wird die aktuelle Seite verwendet. Beispiel: ##WebHome##\n*** **##BildName##**: Ein erforderlicher Text, welcher den Dateinamen des anzuzeigenden Bildes enthält, wie er im Wiki gespeichert ist.\n* **##Parameter##**: Eine optionale Liste von durch Leerzeichen getrennten Parametern, die an das Bild durchgereicht werden. Beispiel: ##width=\"800\" height=\"600\" alt=\"Ein beispielhaftes Bild\" title=\"Dies ist ein schönes Bild\"## \n** **HTML Attribute**: Alle Attribute, welche im HTML Standard vorgesehen sind, werden zu dem erzeugten ##<img>## Element hinzugefügt.\n*** **##style##**: CSS-Stil Anweisungen, welche auf das Bild angewendet werden. Beispiele: ##style=\"float:right;height:50px\"## (d.h. das Bild wird rechtsbündig eingebettet mit einer Höhe von 50 Pixeln),\n ##style=\"style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (Bild wird zentriert dargestellt in einer Breite von 80% des zur verfügung stehenden Platzes).\n ##style=\"vertical-align:bottom\"## (Der folgende Text startet direkt an unteren Ende des Bildes).\n*** **##height##**: Die vertikale Grösse des angezeigten Bildes. Der Parameterwert sollte entweder in Bildschirmpixeln angeben werden (Beispiel ##height=\"80\"##) oder in prozentualen Anteilen des Anzeigebereichs (Beispiel ##height=\"40%\"##)\n*** **##width##**: Die horizontale Grösse des angezeigten Bildes. Der Parameterwert sollte entweder in Bildschirmpixeln angeben werden (Beispiel ##width=\"120\"##) oder in prozentualen Anteilen des Anzeigebereichs (Beispiel ##width=\"80%\"##)\n*** **##title##**: Der Text, der beim Überfahren den Bildes mit dem Mauszeiger angezeigt wird. Beispiel: ##title=\"Dies ist ein schönes Bild\"##\n*** **##alt##**: Der Text, welcher //alt//ernativ angezeigt wird, wenn der Browser das Bild nicht darstellen kann. Da dies im HTML eine Pflichtangabe ist, verwendet XWiki den Dateinamen, wenn kein Wert für ##alt## angegeben wurde. Beispiel: alt=\"Ein beispielhaftes Bild\"\n*** **... und mehr**: Die offizielle Liste aller unterstützten Attribute kann auf der offiziellen [[Seite des HTML-Standards>> https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]] (in Englisch) eingesehen werden.\n\n=== 2.1 Images ===\n\n|=Funktion|=XWiki Syntax 2.1|=Ergebnis\n|Bild von Anhang auf aktueller Seite|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Bild von Anhang auf anderer Seite|{{{image:Bereich.Seite@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Bild mit Parametern|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Bild mit Bildunterschrift|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~] unterstützt Bildunterschriften.>>image:img.png]]}}}|(( ([[~[~[XWiki~>~>https://www.xwiki.org~]~] unterstützt Bildunterschriften.>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|Bild befindlich an URL|{{{image:http://eine/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Vordefiniertes Piktogramm|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading XWiki Syntax 2.1 Bild-Spezifikation $subHeading{{/velocity}}\n\n{{info}}\nDer Teil in ##( )## ist erforderlich, während die Teile in ##{ }## optional sind.\n{{/info}}\n\nDas vollständige Format eines Bilder ist entweder **##image~: (Verweis)##** oder **##~[~[{caption>>}image~: (Verweis) {||Parameter}]]##**\n\n* **##caption##**: Eine optionale Beschriftung. Kann beliebige XWiki 2.1-Syntax enthalten, aber verschachtelte Link-Syntax muss mit ##~~## maskiert werden. Die Beschriftung wird nur unterstützt, wenn die Bildsyntax der einzige Inhalt eines Absatzes ist. Das Bild mit der Beschriftung kann auch in einen Link eingebettet sein. In diesem Fall enthält der Link das Bild, aber nicht die Beschriftung.\n* **##image~:##** Ein erforderlicher Text, welches die folgenden Angaben als Bild kennzeichnet.\n* **##Verweis##**: Der Verweis auf das anzuzeigende Bild. Der Verweis kann in folgenden Formaten angegeben werden:\n** **URL**: Eine URL zu einem externen Bild in dem Format **##http:~/~/pfad/BildName##**. Beispiel: ##http:~/~/example.org/pfad/bild.png##\n** **Anhang**: Ein Verweis auf einen Anhang eines XWiki-Dokuments im Format **##~{~{~{wikiName:} Bereich.} Seite@} (BildName)##**\n*** **##wikiName##**: Ein optionaler Text, welcher den Namen eines Subwikis enthält. Das Bild wird dann in dem entsprechenden Subwiki nachgeschlagen. Beispiel: ##mywiki##\n*** **##Bereich##**: Der Name eines Bereiches, in dem das Bild nachgeschlagen wird (optional). Wenn kein Bereich angegeben, wird der aktuelle Bereich verwendet. Beispiel: ##Main##\n*** **##Seite##**: Der Namen einer Seite, an der das Bild angehangen ist (optional). Wird keine Seite angegeben, wird die aktuelle Seite verwendet. Beispiel: ##WebHome##\n*** **##BildName##**: Ein erforderlicher Text, welcher den Dateinamen des anzuzeigenden Bildes enthält, wie er im Wiki gespeichert ist.\n** **Seiten-Anhang**: Ein Verweis in der Form **##pageAttach~:~{~{~{(wikiName):}(seitenNamenListe)/}(anhangName)##**\n*** **##pageAttach~:##** Eine erforderliche Zeichenfolge, die die Referenz als Anhang einer XWiki-Seite identifiziert.\n*** **##wikiName##**: Ein optionaler Text, welcher den Namen eines Subwikis enthält. Das Bild wird dann in dem entsprechenden Subwiki nachgeschlagen. Beispiel: ##mywiki##\n*** **##seitenNamenListe##**: Eine optionale, durch Punkte getrennte Liste von Wiki-Seitennamen. Wenn keine Seite angegeben ist, wird die aktuelle Seite verwendet. Beispiele: ##Main##, ##A/B##, ##A/B/C##\n*** **##anhangName##**: Eine erforderliche Zeichenfolge, die den Namen des an eine Seite angehängten Bildes enthält, wie es im Wiki gespeichert ist. Beispiel: ##myImage.png##\n** **Piktogramme** Ein Verweis mittels des Textes **##{{{(icon:)}}} (iconName)##**. Beispiel: **##icon:accept##**\n*** **##icon:##** Ein erforderlicher Text, welcher die folgende Angabe als Piktogramm kennzeichnet. Piktogramme können nur aus der vorinstallierten Liste der [[XWiki Icons>>http://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]] ausgewählt werden.\n*** **##iconName##**: Ein erforderlicher Text mit dem (englischen) Namen des anzuzeigenden Piktogramms. Beispiel: ##accept##\n** **Data URI**s in der Form **##{{{(data:)}}} (bilddaten)##**. Beispiel: **##data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4~/~/8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==##**\n*** **##data:##** Ein erforderlicher Text, welcher die folgende Angabe als Binärdaten zu interpretieren erlaubt, enstprechend dem [['data' URI Schema>>http://de.wikipedia.org/wiki/Data-URL]].\n*** **##bilddaten##**: Angabe zu Dateiformat und Codierung, etwa für PNG-Bilder in Base64-codierung ##{{{image/png;base64,}}}## gefolgt von den Binärdaten des Bildes in der angegebenen textuellen Codierung\n* **##Parameter##**: Eine optionale Liste von durch Leerzeichen getrennten Parametern, die an das Bild durchgereicht werden. Beispiel: ##width=\"800\" height=\"600\" alt=\"Ein beispielhaftes Bild\" title=\"Dies ist ein schönes Bild\"##\n** **HTML Attribute**: Alle Attribute, welche im HTML Standard vorgesehen sind, werden zu dem erzeugten ##<img>## Element hinzugefügt.\n*** **##style##**: CSS-Stil Anweisungen, welche auf das Bild angewendet werden. Beispiele: ##style=\"float:right;height:50px\"## (d.h. das Bild wird rechtsbündig eingebettet mit einer Höhe von 50 Pixeln),\n ##style=\"style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (Bild wird zentriert dargestellt in einer Breite von 80% des zur Verfügung stehenden Platzes),\n ##style=\"vertical-align:bottom\"## (Der folgende Text startet direkt an unteren Ende des Bildes).\n*** **##height##**: Die vertikale Grösse des angezeigten Bildes. Der Parameterwert sollte entweder in Bildschirmpixeln angeben werden (Beispiel ##height=\"80\"##) oder in prozentualen Anteilen des Anzeigebereichs (Beispiel ##height=\"40%\"##)\n*** **##width##**: Die horizontale Grösse des angezeigten Bildes. Der Parameterwert sollte entweder in Bildschirmpixeln angeben werden (Beispiel ##width=\"120\"##) oder in prozentualen Anteilen des Anzeigebereichs (Beispiel ##width=\"80%\"##)\n*** **##title##**: Der Text, der beim Überfahren den Bildes mit dem Mauszeiger angezeigt wird. Beispiel: ##title=\"Dies ist ein schönes Bild\"##\n*** **##alt##**: Der Text, welcher //alt//ernativ angezeigt wird, wenn der Browser das Bild nicht darstellen kann. Da dies im HTML eine Pflichtangabe ist, verwendet XWiki den Dateinamen, wenn kein Wert für ##alt## angegeben wurde. Beispiel: alt=\"Ein beispielhaftes Bild\"\n*** **... und mehr**: Die offizielle Liste aller unterstützten Attribute kann auf der offiziellen [[Seite des HTML-Standards>> https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]] (in Englisch) eingesehen werden.\n** **##queryString##**: Ein optionaler Text, welcher als Abfrageparameter an die URL angehangen wird, unter der das Bild vom Server abgeholt wird. Beispiel: ##queryString=\"width=100&height=800&keepAspectRatio=true\"## (**##keepAspectRatio=true##** soll den Server veranlassen, die Seitenverhältnisse des Bildes beizubehalten, wird aber ignoriert, wenn sowohl ##width## als auch ##height## angegeben werden)"
            ],
            "id_hash": 4321460072923956526,
            "content_hash": 6360591309667949323,
            "location": "",
            "context": "content",
            "note": "",
            "flags": "",
            "labels": [],
            "state": 20,
            "fuzzy": false,
            "translated": true,
            "approved": false,
            "position": 1,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 1336,
            "source_unit": "https://l10n.xwiki.org/api/units/465534/?format=api",
            "priority": 100,
            "id": 465536,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/de/?checksum=bbf8e90a4daa852e",
            "url": "https://l10n.xwiki.org/api/units/465536/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2020-12-02T15:32:32.484987Z"
        },
        {
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaximages/de/?format=api",
            "source": [
                "XWikiSyntaxImages"
            ],
            "previous_source": "",
            "target": [
                "XWikiSyntaxImages"
            ],
            "id_hash": -7901431335316922026,
            "content_hash": 4091256177329078772,
            "location": "",
            "context": "title",
            "note": "",
            "flags": "",
            "labels": [],
            "state": 20,
            "fuzzy": false,
            "translated": true,
            "approved": false,
            "position": 2,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": false,
            "num_words": 1,
            "source_unit": "https://l10n.xwiki.org/api/units/465535/?format=api",
            "priority": 100,
            "id": 465537,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/de/?checksum=12587a10694b6156",
            "url": "https://l10n.xwiki.org/api/units/465537/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2020-12-02T15:32:33.022064Z"
        }
    ]
}