Translation components API.

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

GET /api/translations/xwiki-platform/xwiki-xwikisyntaximages/ko/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/ko/?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": "",
            "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{{{{이미지:img.png}}}}\n)))|이미지: XWiki .XWikiSyntaxImages@img.png\n|다른 페이지에 첨부된 이미지|{{{{image:img.png|document=Space.Page}}}}|이미지: 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}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n\n=== 2.0 이미지 ===\n\n|=기능|= XWiki 구문 2.0|=결과\n|현재 페이지의 첨부 파일 이미지|{{{image:img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n|다른 페이지에 첨부된 이미지|{{{image:Space.Page@img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n|매개변수가 있는 이미지|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image: XWiki .XWikiSyntaxImages@img.png||width=\"25 \" 높이=\"25\"]]\n|캡션이 포함된 이미지|{{{[[~[~[ XWiki ~>~>https://www. xwiki .org~]~]는 캡션을 지원합니다.>>image:img.png]]}}}|((([[~[~[ XWiki ~>~>https://www. xwiki .org~]~] 캡션을 지원합니다.>>이미지: XWiki .XWikiSyntaxImages@img.png]]))\n| URL 에 있는 이미지 |{{{image:https://some/ url /img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n\n{{velocity}}$subHeading XWiki 구문 2.0 이미지 사양 $subHeading{{/velocity}}\n\n{{정보}}\n##( )## 부분은 필수이고 ##{ }## 부분은 선택사항입니다.\n{{/정보}}\n\n이미지의 전체 형식은 **##image~: (reference)##** 또는 **##~[~[{caption>>}image~: (reference) {||parameters}]]#입니다. #**\n\n* **##caption##**: 선택적 캡션입니다. 임의의 XWiki 2.0 구문을 포함할 수 있지만 중첩된 링크 구문은 ##~~##을 사용하여 이스케이프해야 합니다. 캡션은 이미지 구문이 단락의 유일한 콘텐츠인 경우에만 지원됩니다. 캡션이 있는 이미지는 링크로 묶일 수도 있습니다. 이 경우 링크에는 이미지가 포함되지만 캡션은 포함되지 않습니다.\n* **##image~:##** 리소스를 이미지로 식별하는 필수 문자열입니다.\n* **##reference##**: 다음 형식 중 하나로 표시되는 이미지에 대한 참조입니다.\n** ** URL **: **##http:~/~/path/imageName##** 형식의 이미지 URL 입니다. 예: ##http:~/~/domain.org/path/img.png##\n** **첨부파일** **##~{~{~{wikiName:} space.} 페이지@}(이미지 이름)##** 형식의 참조\n*** **##wikiName##**: 위키 이름을 포함하는 선택적 문자열입니다. 이미지 참조는 해당 위키 내부 페이지에 첨부된 이미지를 가리킵니다. 예: 마이위키\n*** **##space##**: 선택적인 Wiki Space 이름입니다. 공간을 지정하지 않으면 현재 공간이 사용됩니다. 예: 메인\n*** **##page##**: 참조 이미지가 첨부된 위키 페이지의 이름을 포함하는 선택적 문자열입니다. 예: 웹홈\n*** **##imageName##**: 위키에 저장된 페이지에 첨부된 이미지의 이름을 포함하는 필수 문자열입니다.\n* **##parameters##**: 이미지에 전달되는 공백으로 구분된 매개변수의 선택적 목록입니다. 예: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"내 멋진 이미지\"##\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=\"내 멋진 이미지\"##\n*** **##alt##**: 브라우저가 이미지를 표시할 수 없는 경우 표시해야 하는 텍스트를 정의하는 매개변수입니다. 이것은 필수 HTML 속성 이므로 XWiki는 ##alt## 매개변수가 정의되지 않은 경우 파일 이름을 대신 사용합니다. 예: ##alt=\"img.png\"##\n*** **추가**: 더 많은 속성을 포함하는 HTML ##<img>## 태그 에 대한 더 자세한 설명을 검토할 수 있습니다. [[ HTML 표준에서>>https:// html .spec.whatwg.org /다중 페이지/임베디드 콘텐츠. html #the-img-요소]].\n\n=== 2.1 이미지 ===\n\n|=기능|= XWiki 구문 2.1|=결과\n|현재 페이지의 첨부 파일 이미지|{{{image:img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n|다른 페이지에 첨부된 이미지|{{{image:PageA.PageB@img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n|매개변수가 있는 이미지|{{{[[image:img.png||width=\"25\" height=\"25\"]]}}}|[[image: XWiki .XWikiSyntaxImages@img.png||width=\"25 \" 높이=\"25\"]]\n|캡션이 포함된 이미지|{{{[[~[~[ XWiki ~>~>https://www. xwiki .org~]~]는 캡션을 지원합니다.>>image:img.png]]}}}|((([[~[~[ XWiki ~>~>https://www. xwiki .org~]~] 캡션을 지원합니다.>>이미지: XWiki .XWikiSyntaxImages@img.png]]))\n| URL 에 있는 이미지 |{{{image:https://some/ url /img.png}}}|이미지: XWiki .XWikiSyntaxImages@img.png\n|사전 패키지된 아이콘|{{{image:icon:accept}}}|image:icon:accept\n\n{{velocity}}$subHeading XWiki 구문 2.1 이미지 사양 $subHeading{{/velocity}}\n\n{{정보}}\n범례: ##()## 부분은 필수이고 ##{}## 부분은 선택사항입니다.\n{{/정보}}\n\n이미지의 전체 형식은 **##image~: (reference)##** 또는 **##~[~[{caption>>}image~: (reference) {||parameters}]]#입니다. #**\n\n* **##caption##**: 선택적 캡션입니다. 임의의 XWiki 2.1 구문을 포함할 수 있지만 중첩된 링크 구문은 ##~~##을 사용하여 이스케이프해야 합니다. 캡션은 이미지 구문이 단락의 유일한 콘텐츠인 경우에만 지원됩니다. 캡션이 있는 이미지는 링크로 묶일 수도 있습니다. 이 경우 링크에는 이미지가 포함되지만 캡션은 포함되지 않습니다.\n* **##image~:##** 리소스를 이미지로 식별하는 필수 문자열입니다.\n* **##reference##**: 다음 형식 중 하나로 표시되는 이미지에 대한 참조입니다.\n** ** URL **: **##[ url :](프로토콜:~/~/path/imageName)##** 형식의 이미지 URL 입니다 . 예: ##http:~/~/domain.org/path/img.png##\n*** **## url :##** 이미지를 URL 로 식별하는 선택적 문자열입니다 .\n*** **##protocol:~/~/path/imageName##**: 이미지의 URL\n** **첨부 파일**: **##[attach~:]~{~{~{(wikiName):}(spaceNameList).}(pageName)@}(imageName)##** 형식의 참조입니다.\n*** **##attach~:##** 참조를 XWiki 문서 첨부로 식별하는 선택적 문자열입니다.\n*** **##wikiName##**: 위키 이름을 포함하는 선택적 문자열입니다. 이미지 참조는 해당 위키 내부 페이지에 첨부된 이미지를 가리킵니다. Wiki를 지정하지 않으면 현재 Wiki가 사용됩니다. 예: ##mywiki##.\n*** **##spaceNameList##**: 선택적으로 점으로 구분된 위키 스페이스 이름 목록입니다. 공간을 지정하지 않으면 현재 공간이 사용됩니다. 예: ##메인##, ##AB##, ##ABC##\n*** **##pageName##**: 참조된 이미지가 첨부된 위키 페이지의 이름을 포함하는 선택적 문자열입니다. 예: ##환영합니다##\n*** **##imageName##**: 위키에 저장된 페이지에 첨부된 이미지의 이름을 포함하는 필수 문자열입니다. 예: ##myImage.png##\n** **페이지 첨부**: **##pageAttach~:~{~{~{(wikiName):}(pageNameList)/}(imageName)##** 형식의 참조\n*** **##pageAttach~:##** 참조를 XWiki 페이지 첨부 로 식별하는 필수 문자열입니다 .\n*** **##wikiName##**: 위키 이름을 포함하는 선택적 문자열입니다. 이미지 참조는 해당 위키 내부 페이지에 첨부된 이미지를 가리킵니다. Wiki를 지정하지 않으면 현재 Wiki가 사용됩니다. 예: ##mywiki##.\n*** **##pageNameList##**: 선택적으로 점으로 구분된 위키 페이지 이름 목록입니다. 페이지가 지정되지 않으면 현재 페이지가 사용됩니다. 예: ##메인##, ##A/B##, ##A/B/C##\n*** **##imageName##**: 위키에 저장된 페이지에 첨부된 이미지의 이름을 포함하는 필수 문자열입니다. 예: ##myImage.png##\n** **아이콘**: **##icon{{{:(}}}iconName)##** 형식의 참조입니다. 예: **##아이콘:수락##**\n*** **##icon:##** 이미지 참조를 [[ XWiki 아이콘 세트>>https://www.famfamfam.com/lab/icons/silk/previews/ 의 아이콘으로 식별하는 필수 문자열입니다. index_abc.png]].\n*** **##iconName##**: 참조된 아이콘을 식별하는 필수 문자열입니다. 예: ##수락##\n** **데이터 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* **##parameters##**: 이미지에 전달되는 공백으로 구분된 매개변수의 선택적 목록입니다. 예: ##width=\"800\" height=\"600\" alt=\"img.png\" title=\"내 멋진 이미지\"##\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=\"내 멋진 이미지\"##\n*** **##alt##**: 브라우저가 이미지를 표시할 수 없는 경우 표시해야 하는 텍스트를 정의하는 매개변수입니다. 이것은 필수 HTML 속성 이므로 XWiki는 ##alt## 매개변수가 정의되지 않은 경우 파일 이름을 대신 사용합니다. 예: ##alt=\"img.png\"##\n*** **추가**: 더 많은 속성을 포함하는 HTML ##<img>## 태그 에 대한 더 자세한 설명을 검토할 수 있습니다. [[ HTML 표준에서>>https:// html .spec.whatwg.org /다중 페이지/임베디드 콘텐츠. html #the-img-요소]].\n** **##queryString##**: 참조 이미지에 대한 다운로드 링크를 생성할 때 쿼리가 서버에 전달되도록 허용합니다. 예: ##queryString=\"width=100&height=800&keepAspectRatio=true\"##(**##keepAspectRatio=true##는 ## 외에 ##width## 및 ##height## 매개변수가 지정된 경우 실패합니다. 쿼리문자열##!**)"
            ],
            "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": 576677,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/ko/?checksum=bbf8e90a4daa852e",
            "url": "https://l10n.xwiki.org/api/units/576677/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-29T02:04:22.683417Z"
        },
        {
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaximages/ko/?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": 576678,
            "web_url": "https://l10n.xwiki.org/translate/xwiki-platform/xwiki-xwikisyntaximages/ko/?checksum=12587a10694b6156",
            "url": "https://l10n.xwiki.org/api/units/576678/?format=api",
            "explanation": "",
            "extra_flags": "",
            "pending": false,
            "timestamp": "2023-12-29T02:04:22.694063Z"
        }
    ]
}