Translation components API.

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

GET /api/translations/xwiki-platform/xwiki-xwikisyntaximages/ja/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/ja/?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": [
                "= 編集 =\n\n== 画像 ==\n\n=== 画像1.0 ===\n\n|=機能|=XWikiシンタックス1.0|=結果\n|現在のページの添付ファイルの画像|(((\n{{info}}詳細は[[画像マクロ>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Old%20XWiki%201.0%20syntax%20renderer/Image%20Macro%20%28Radeox%29]]を参照してください{{/info}}\n{{{{image:img.png}}}}\n)))|image:XWiki.XWikiSyntaxImages@img.png\n|他のページの添付ファイルの画像|{{{{image:img.png|document=スペース.ページ}}}}|image:XWiki.XWikiSyntaxImages@img.png\n|パラメーターのある画像|{{{{image:img.png|width=25|height=25}}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|URLで指定する画像|{{{https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n=== 画像2.0 ===\n\n|=機能|=XWikiシンタックス2.0|=結果\n|現在のページの添付ファイルの画像|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|他のページの添付ファイルの画像|{{{image:スペース.ページ@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|パラメーターのある画像|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|キャプション付きの画像|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~]はキャプションをサポートしています。>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~]はキャプションをサポートしています。>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|URLで指定する画像|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading XWikiシンタックス 2.0 画像仕様 $subHeading{{/velocity}}\n\n{{info}}\n##( )##は必須です。##[ ]##はオプションです。\n{{/info}}\n\n画像の完全なフォーマットは **##image~: (参照)##** あるいは **##~[~[{キャプション>>}image~: (参照) {||パラメーター}]]##** となります。\n\n* **##キャプション##**:キャプション(オプション)。任意のXWiki 2.0のシンタックスを含めることができますが、入れ子式のリンクのシンタックスは##~~##でエスケープする必要があります。キャプションは、画像のシンタックスのみが段落の内容である場合にサポートされます。\n* **##image~:##** 画像としてリソースを指示する文字列(必須)。\n* **##参照##**:以下の形式で表示する画像への参照:\n** **URL**:**##http:~/~/パス/画像名##** の形式による画像へのURL。例:##http:~/~/domain.org/パス/img.png##\n** **##~{~{~{ウィキ名:} スペース.} ページ@} (画像名)##** の形式による**添付ファイル**の参照\n*** **##ウィキ名##**:ウィキの名称を含む文字列(オプション)。画像の参照は、このウィキのページに添付された画像を指示します。例:mywiki\n*** **##スペース##**:ウィキのスペース名(オプション)。スペースの指定がなければ、現在のスペースを使用します。例:Main\n*** **##ページ##**: 参照する画像を添付するウィキのページの名称を含む文字列(オプション)。例:WebHome\n*** **##画像名##**:ページに添付する画像の名称を含む文字列(必須。ウィキに保存されている名称)。\n* **##パラメーター##**:画像に渡すパラメーターの一覧(オプション。スペースで分割)。例:##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTMLの属性**:HTML標準で規定されている全ての属性を、レンダリングするHTML##<img>##タグに追加できます。\n*** **##style##**:画像に適用するCSSスタイルの情報。例:##style=\"float:right;height:50\"## (画像を右側に寄せて、高さを50pxに設定)、##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"##(画像を中央に表示し、ブロックの幅の80%に設定)##style=\"vertical-align:bottom\"##(テキストを画像の下に表示)\n*** **##height##**:表示する画像の高さを規定するパラメーター。値はピクセル(例: ##height=\"80\"##)あるいは画像を含むブロックの高さに関連するピクセル(例:##height=\"40%\"##)。\n*** **##width##**:表示する画像の幅を規定するパラメーター。値はピクセル(例: ##width=\"80\"##)あるいは画像を含むブロックの幅に関連するピクセル(例:##width=\"40%\"##)。\n*** **##title##**:画像をマウスでホバリングした際などに表示する画像のタイトルを規定するパラメーター。例:##title=\"My nice image\"##\n*** **##alt##**:ブラウザーが画像を表示できない際に表示するテキストを規定するパラメーター。これは必須のHTML要素であるため、##alt##パラメーターが設定されていない場合は、ファイル名を代わりに使用します。例:##alt=\"img.png\"##\n*** **その他**:その他の属性を含むHTMLの##<img>##タグに関する説明は[[HTML標準>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]]で確認できます。\n\n=== 画像2.1 ===\n\n|=機能|=XWikiシンタックス2.1|=結果\n|現在のページの添付ファイルの画像|{{{image:img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|他のページの添付ファイルの画像|{{{image:ページA.ページB@img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|パラメーターのある画像|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image:XWiki.XWikiSyntaxImages@img.png||width=\"25\" height=\"25\"]]\n|キャプション付きの画像|{{{[[~[~[XWiki~>~>https://www.xwiki.org~]~]はキャプションをサポートしています。>>image:img.png]]}}}|((([[~[~[XWiki~>~>https://www.xwiki.org~]~]はキャプションをサポートしています。>>image:XWiki.XWikiSyntaxImages@img.png]])))\n|URLで指定する画像|{{{image:https://some/url/img.png}}}|image:XWiki.XWikiSyntaxImages@img.png\n|事前にパッケージ化したアイコン|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading XWikiシンタックス 2.1 画像仕様 $subHeading{{/velocity}}\n\n{{info}}\n凡例:##( )##は必須です。##[ ]##はオプションです。\n{{/info}}\n\n画像の完全なフォーマットは **##image~: (参照)##** あるいは **##~[~[{キャプション>>}image~: (参照) {||パラメーター}]]##** となります。\n\n* **##キャプション##**:キャプション(オプション)。任意のXWiki 2.1のシンタックスを含めることができますが、入れ子式のリンクのシンタックスは##~~##でエスケープする必要があります。キャプションは、画像のシンタックスのみが段落の内容である場合にサポートされます。\n* **##image~:##** 画像としてリソースを指示する文字列(必須)。\n* **##参照##**:以下の形式で表示する画像への参照:\n** **URL**:**##[url:](プロトコル:~/~/パス/画像名)##** の形式による画像へのURL。例:##http:~/~/domain.org/パス/img.png##\n*** **##url:##** URLとしてリソースを指示する文字列(必須)。\n*** **##プロトコル:~/~/パス/画像名##**:画像へのURL\n** **添付ファイル**:**##[attach~:]~{~{~{(ウィキ名):}(スペース名の一覧).}(ページ名)@}(画像名)##** の形式による参照\n*** **##attach~:##** XWikiドキュメントの添付ファイルとして参照を指定する文字列(オプション)。\n*** **##ウィキ名##**:ウィキの名称を含む文字列(オプション)。画像の参照は、このウィキのページに添付された画像を指示します。ウィキの指定がなければ、現在のウィキを使用します。例:##mywiki##.\n*** **##スペース名の一覧##**:ドットで分割したスペース名の一覧(オプション)。スペースが指定されていない場合は、現在のスペースを使用します。例:##Main##、##A.B##、##A.B.C##\n*** **##ページ名##**: 参照する画像を添付するウィキのページの名称を含む文字列(オプション)。例:##Welcome##\n*** **##画像名##**:ページに添付する画像の名称を含む文字列(必須。ウィキに保存されている名称)。例:##myImage.png##\n** **ページの添付ファイル**:**##pageAttach~:~{~{~{(ウィキ名):}(ページ名の一覧)/}(画像名)##** の形式による参照\n*** **##pageAttach~:##** XWikiページの添付ファイルとして参照を指示する文字列(必須)。\n*** **##ウィキ名##**:ウィキの名称を含む文字列(オプション)。画像の参照は、このウィキのページに添付された画像を指示します。ウィキの指定がなければ、現在のウィキを使用します。例:##mywiki##.\n*** **##ページ名の一覧##**:ドットで分割したページ名の一覧(オプション)。ページが指定されていない場合は、現在のページを使用します。例:##Main##、##A/B##、##A/B/C##\n*** **##画像名##**:ページに添付する画像の名称を含む文字列(必須。ウィキに保存されている名称)。例:##myImage.png##\n** **アイコン**:**##icon{{{:(}}}アイコン名)##** の形式による参照。例:**##icon:accept##**\n*** **##icon:##** [[XWikiのアイコンセット>>https://www.famfamfam.com/lab/icons/silk/previews/index_abc.png]]のアイコンとして画像の参照を指示する文字列(必須)。\n*** **##アイコン名##**:参照するアイコンを指定する文字列(必須)。例:##accept##\n** **Data URI**:**##(data{{{:)}}}(content)##** の形式による参照。例:**##{{{data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##**\n*** **##data:##** [[データURIスキーマ>>https://en.wikipedia.org/wiki/Data_URI_scheme]]によるインラインの画像を指定する文字列(必須)。\n*** **##content##**:エンコーディングした画像。例:##{{{image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==}}}##\n* **##パラメーター##**:画像に渡すパラメーターの一覧(オプション。スペースで分割)。例:##width=\"800\" height=\"600\" alt=\"img.png\" title=\"My nice image\"##\n** **HTMLの属性**:HTML標準で規定されている全ての属性を、レンダリングするHTML##<img>##タグに追加できます。\n*** **##style##**:画像に適用するCSSスタイルの情報。例:##style=\"float:right;height:50\"## (画像を右側に寄せて、高さを50pxに設定)、##style=\"display:block;margin-left:auto;margin-right:auto;width:80%\"##(画像を中央に表示し、ブロックの幅の80%に設定)##style=\"vertical-align:bottom\"##(テキストを画像の下に表示)\n*** **##height##**:表示する画像の高さを規定するパラメーター。値はピクセル(例: ##height=\"80\"##)あるいは画像を含むブロックの高さに関連するピクセル(例:##height=\"40%\"##)。\n*** **##width##**:表示する画像の幅を規定するパラメーター。値はピクセル(例: ##width=\"80\"##)あるいは画像を含むブロックの幅に関連するピクセル(例:##width=\"40%\"##)。\n*** **##title##**:画像をマウスでホバリングした際などに表示する画像のタイトルを規定するパラメーター。例:##title=\"My nice image\"##\n*** **##alt##**:ブラウザーが画像を表示できない際に表示するテキストを規定するパラメーター。これは必須のHTML要素であるため、##alt##パラメーターが設定されていない場合は、ファイル名を代わりに使用します。例:##alt=\"img.png\"##\n*** **その他**:その他の属性を含むHTMLの##<img>##タグに関する説明は[[HTML標準>>https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element]]で確認できます。\n** **##queryString##**:参照するイメージのダウンロード用のリンクの作成時にサーバーにクエリーを渡すことを許可。例:##queryString=\"width=100&height=800&keepAspectRatio=true\"## (**##keepAspectRatio=true##は、##width##と##height##のパラメーターを##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": false,
            "num_words": 1336,
            "source_unit": "https://l10n.xwiki.org/api/units/465534/?format=api",
            "priority": 100,
            "id": 552589,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/ja/?checksum=bbf8e90a4daa852e",
            "url": "https://l10n.xwiki.org/api/units/552589/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-11-15T05:36:53.350948Z"
        },
        {
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaximages/ja/?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": 552590,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/ja/?checksum=12587a10694b6156",
            "url": "https://l10n.xwiki.org/api/units/552590/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2022-11-15T05:36:53.357391Z"
        }
    ]
}