Translation components API.

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

GET /api/translations/xwiki-platform/xwiki-xwikisyntaximages/es/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/es/?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": [
                "== Edición =\n\n== Imágenes ==\n\n=== 1.0 Images ===\n\n|=Funcionalidad|=Sintaxis XWiki 1.0|=Resultado\n|Imagen de un adjunto en la página actual|(((\n{{info}}Ver [[Macro Image>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Old%20XWiki%201.0%20syntax%20renderer/Image%20Macro%20%28Radeox%29]] para más detalle{{/info}}\n{{{{image:img.png}}}}\n)))|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen de un adjunto en otra página|{{{{image:img.png|document=Espacio.Página}}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen con parámetros|{{{{image:img.png|width=25|height=25}}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Imágenes a través de una URL|{{{http://alguna/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n=== 2.0 Images ===\n\n|=Funcionalidad|=Sintaxis XWiki 2.0|=Resultado\n|Imagen de un adjunto en la página actual|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen de un adjunto en otra página|{{{image:Espacio.Página@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen con parámetros|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Imágenes a través de una URL|{{{image:http://alguna/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading Especificación de la Sintaxis XWiki 2.0 para imágenes$subHeading{{/velocity}}\n\n{{info}}\nLa parte entre ##( )## es obligatoria, mientras que las partes entre ##{ }## son opcionales.\n{{/info}}\n\nEl formato completo para una imagen es **##image~: (referencia)##** o **##~[~[image~: (referencia) {||parámetros}]]##**\n\n* **##image~:##** Una cadena de texto obligatoria que identifica el recurso como una imagen.\n* **##referencia##**: La referencia de la imagen que se tiene que mostrar de una de las formas siguientes:\n** **URL**: Cualquier URL a una imagen con la forma **##http:~/~/ruta/nombreDeImagen##**. Ejemplo: ##http:~/~/dominio.org/ruta/img.png##\n** Referencia a un **adjunto** con la forma **##~{~{~{nombreDeWiki:} espacio.} página@} (nombreDeImagen)##**\n*** **##nombreDeWiki##**: Una cadena de texto opcional que contiene el nombre de una wiki virtual. La referencia a la imagen apuntará a una imagen adjuntada a una página dentro de esa wiki virtual. Ejemplo: miwiki\n*** **##espacio##**: Un nombre de espacio wiki opcional. Si no se especifica un nombre de espacio, se utiliza el espacio en curso. Ejemplo: Inicio\n*** **##página##**: Una cadena de texto opcional que contiene el nombre la página wiki a la que está adjuntada la imagen referenciada. Ejemplo: WebHome\n*** **##nombreDeImagen##**: Una cadena de texto obligatoria que contiene el nombre de la imagen adjuntada a una página como se almacena en la wiki.\n* **##parámetros##**: Una lista opcional de parámetros separados por espacios que se pasa a la imagen. Ejemplo: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"Mi preciosa imagen\"##\n** **Atributos HTML**: Todos los atributos definidos en el estándar HTML se añadirán a la etiqueta HTML ##<img>## renderizada.\n*** **##estilo##**: Información de estilo CSS que se debería aplicar a la imagen. Ejemplos: ##style=\"float:right;height:50\"## (imagen en el lado derecho, altura 50 pixeles), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (imagen centrada, anchura 80% de la anchura del bloque), ##style=\"vertical-align:bottom\"## (el texto comienza en la parte inferior de la imagen)\n*** **##height##**: Un parámetro que define la altura de la imagen visualizada. El valor debe estar en pixeles (ejemplo: ##height=\"80\"##) o en pixeles relativos a la altura del bloque que contiene la imagen (ejemplo: ##height=\"40%\"##).\n*** **##width##**: Un parámetro que define la anchura de la imagen visualizada. El valor debe estar en pixeles (ejemplo: ##width=\"80\"##) o en pixeles relativos a la anchura del bloque que contiene la imagen (ejemplo: ##width=\"40%\"##).\n*** **##title##**: Un parámetro que define el título de la imagen visualizada que será visible al pasar el puntero del ratón sobre la imagen, por ejemplo. Ejemplo: ##title=\"Mi preciosa imagen\"##\n*** **##alt##**: Un parámetro que define el texto que se debería visualizar si el navegador no puede visualizar la imagen. Como este es un atributo HTML obligatorio XWiki empleará el nombre de fichero en lugar del parámetro ##alt## si no se define. Ejemplo: ##alt=\"img.png\"##\n*** **Más**: Una explicación en mayor profundidad de la etiqueta HTML ##<img>## que incluye más atributos se puede revisar [[en w3.org>>http://www.w3.org/TR/html4/struct/objects.html#h-13.2]].\n\n=== 2.1 Images ===\n\n|=Funcionalidad|=Sintaxis XWiki 2.1|=Resultado\n|Imagen de un adjunto en la página actual|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen de un adjunto en otra página|{{{image:PageA.PageB@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Imagen con parámetros|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|Imágenes a través de una URL|{{{image:http://alguna/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|Iconos pre-empaquetados|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading Especificación de la Sintaxis XWiki 2.1 para imágenes$subHeading{{/velocity}}\n\n{{info}}\nLa parte entre ##( )## es obligatoria, mientras que las partes entre ##{ }## son opcionales.\n{{/info}}\n\nEl formato completo para una imagen es **##image~: (referencia)##** o **##~[~[image~: (referencia) {||parámetros}]]##**\n\n* **##image~:##** Una cadena de texto obligatoria que identifica el recurso como una imagen.\n* **##referencia##**: La referencia de la imagen que se tiene que mostrar de una de las formas siguientes:\n** **URL**: Cualquier URL a una imagen con la forma **##protocolo:~/~/ruta/nombreDeImagen##**. Ejemplo: ##http:~/~/dominio.org/ruta/img.png##\n** Referencia a un **adjunto** con la forma **##~{~{~{nombreDeWiki:} listaDeNombresDeEspacio.} nombreDePágina@} (nombreDeImagen)##**\n*** **##nombreDeWiki##**: Una cadena de texto opcional que contiene el nombre de una wiki virtual. La referencia a la imagen apuntará a una imagen adjuntada a una página dentro de esa wiki virtual. Si no se especifica ninguna wiki, se utilizará la wiki actual. Ejemplo: miwiki\n*** **##listaDeNombresDeEspacio##**: Una lista opcional de nombres de espacio wiki separada por puntos. Si no se especifica ningún espacio, se utiliza el espacio en curso. Ejemplos: ##Inicio##, ##A.B##, ##A.B.C##\n*** **##nombreDePágina##**: Una cadena de texto opcional que contiene el nombre la página wiki a la que está adjuntada la imagen referenciada. Ejemplo: ##Bienvenido##\n*** **##nombreDeImagen##**: Una cadena de texto obligatoria que contiene el nombre e la imagen adjuntada a una página como se almacena en la wiki. Ejemplo: ##miImagen.png##\n** Referencia a un **Icono** con la forma **##{{{(icon:)}}} (nombreDeIcono)##**. Ejemplo: **##icon:accept##**\n*** **##icon:##** Una cadena de texto obligatoria que identifica la referencia de imagen como un icono del [[Conjunto de iconos de XWiki>>http://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]].\n*** **##nombreDeIcono##**: Una cadena de texto que identifica el icono referenciado. Ejemplo: ##accept##\n** **URI Data** con la forma **##{{{(data:)}}} (contenido)##**. Ejemplo: **##{{{data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##**\n*** **##data:##** Una cadena de obligatoria que identifica la imagen con una especificación en línea que emplea el [[esquema URI Data>>http://en.wikipedia.org/wiki/Data_URI_scheme]].\n*** **##contenido##**: La imagen codificada. Ejemplo: ##{{{image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##\n* **##parámetros##**: Una lista opcional de parámetros separados por espacios que se pasa a la imagen. Ejemplo: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"Mi preciosa imagen\"##\n** **Atributos HTML**: Todos los atributos definidos en el estándar HTML se añadirán a la etiqueta HTML ##<img>## renderizada.\n*** **##style##**: Información de estilo CSS que se debería aplicar a la imagen. Ejemplos: ##style=\"float:right;height:50\"## (imagen en el lado derecho, altura 50 pixeles), ##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"## (imagen centrada, anchura 80% de la anchura del bloque), ##style=\"vertical-align:bottom\"## (el texto comienza en la parte inferior de la imagen)\n*** **##height##**: Un parámetro que define la altura de la imagen visualizada. El valor debe estar en pixeles (ejemplo: ##height=\"80\"##) o en pixeles relativos a la altura del bloque que contiene la imagen (ejemplo: ##height=\"40%\"##).\n*** **##width##**: Un parámetro que define la anchura de la imagen visualizada. El valor debe estar en pixeles (ejemplo: ##width=\"80\"##) o en pixeles relativos a la anchura del bloque que contiene la imagen (ejemplo: ##width=\"40%\"##).\n*** **##title##**: Un parámetro que define el título de la imagen visualizada que será visible al pasar el puntero del ratón sobre la imagen, por ejemplo. Ejemplo: ##title=\"Mi preciosa imagen\"##\n*** **##alt##**: Un parámetro que define el texto que se debería visualizar si el navegador no puede visualizar la imagen. Como este es un atributo HTML obligatorio XWiki empleará el nombre de fichero en lugar del parámetro ##alt## si no se define. Ejemplo: ##alt=\"img.png\"##\n*** **Más**: Una explicación en mayor profundidad de la etiqueta HTML ##<img>## que incluye más atributos se puede revisar [[en w3.org>>http://www.w3.org/TR/html4/struct/objects.html#h-13.2]].\n** **##queryString##**: Permite pasar consultas al servidor al crear el enlace de descarga de la imagen referenciada. Ejemplo: ##queryString=\"width=100&height=800&keepAspectRatio=true\"## (**¡##keepAspectRatio=true## fallará si se especifican los parámetros ##width## y ##height## además de ##queryString##!**)"
            ],
            "id_hash": 4321460072923956526,
            "content_hash": 6360591309667949323,
            "location": "",
            "context": "content",
            "note": "",
            "flags": "",
            "labels": [],
            "state": 10,
            "fuzzy": true,
            "translated": false,
            "approved": false,
            "position": 1,
            "has_suggestion": false,
            "has_comment": false,
            "has_failing_check": true,
            "num_words": 1336,
            "source_unit": "https://l10n.xwiki.org/api/units/465534/?format=api",
            "priority": 100,
            "id": 465538,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/es/?checksum=bbf8e90a4daa852e",
            "url": "https://l10n.xwiki.org/api/units/465538/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2020-12-02T15:32:33.760935Z"
        },
        {
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaximages/es/?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": true,
            "num_words": 1,
            "source_unit": "https://l10n.xwiki.org/api/units/465535/?format=api",
            "priority": 100,
            "id": 465539,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/es/?checksum=12587a10694b6156",
            "url": "https://l10n.xwiki.org/api/units/465539/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2020-12-02T15:32:34.047470Z"
        }
    ]
}