Translation components API.

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

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

{
    "count": 21,
    "next": null,
    "previous": null,
    "results": [
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "author": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "timestamp": "2022-11-16T15:47:38.687736Z",
            "action": 0,
            "target": "",
            "id": 347389,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/347389/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "author": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "timestamp": "2022-11-15T11:15:24.778324Z",
            "action": 0,
            "target": "",
            "id": 343117,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/343117/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "author": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "timestamp": "2022-10-11T08:29:26.964013Z",
            "action": 0,
            "target": "",
            "id": 323563,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/323563/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-10-11T08:16:53.285884Z",
            "action": 0,
            "target": "",
            "id": 322392,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/322392/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-10-11T07:45:26.936822Z",
            "action": 0,
            "target": "",
            "id": 318029,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/318029/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-10-11T07:45:26.936741Z",
            "action": 59,
            "target": "= Bearbeiten =\n\n== Tabellen ==\n\n{{comment}}please do not translate the sub headlines{{/comment}}\n=== 1.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen.\n\n|=Funktion|=XWiki Syntax 1.0|=Ergebnis\n|Standardtabelle|((({{{\n{table}\nTitel 1 | Titel 2\nWort 1 | Wort 2\n{table}\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|(((\n<table style=\"background-color:red;text-align:center\">\n  <tbody>\n    <tr>\n      <td>Titel 1</td>\n      <td style=\"background-color:yellow\">Titel 2</td>\n    </tr>\n    <tr>\n      <td>Wort 1</td>\n      <td>Wort 2</td>\n    </tr>\n  </tbody>\n</table>\n)))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n<table id=\"table1id\" class=\"grid sortable filterable doOddEven\">\n  <tr class=\"sortHeader\">\n    <th>Titel 1</th>\n    <th>Titel 2</th>\n  </tr>\n  <tr>\n   <td>Zelle 11</td>\n   <td>Zelle 12</td>\n  </tr>\n  <tr>\n   <td>Zelle 21</td>\n   <td>Zelle 22</td>\n  </tr>\n</table>\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"table1id\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))\n\n\n=== 2.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen. Parameter für Tabelle, Reihe oder Zelle sind ebenfalls in XWiki Syntax 2.0 unterstützt.\n\n|=Funktion|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Ergebnis\n|Standardtabelle|((({{{\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n}}}))) oder ((({{{\n!=Titel 1!=Titel 2\n!!Wort 1!!Wort 2\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|((({{{\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n}}})))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))",
            "id": 318028,
            "action_name": "String updated in the repository",
            "url": "https://l10n.xwiki.org/api/changes/318028/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-04-23T09:29:31.927020Z",
            "action": 17,
            "target": "",
            "id": 301055,
            "action_name": "Changes committed",
            "url": "https://l10n.xwiki.org/api/changes/301055/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "author": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "timestamp": "2022-04-23T07:45:26.072565Z",
            "action": 2,
            "target": "= Bearbeiten =\n\n== Tabellen ==\n\n{{comment}}please do not translate the sub headlines{{/comment}}\n=== 1.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen.\n\n|=Funktion|=XWiki Syntax 1.0|=Ergebnis\n|Standardtabelle|((({{{\n{table}\nTitel 1 | Titel 2\nWort 1 | Wort 2\n{table}\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|(((\n<table style=\"background-color:red;text-align:center\">\n  <tbody>\n    <tr>\n      <td>Titel 1</td>\n      <td style=\"background-color:yellow\">Titel 2</td>\n    </tr>\n    <tr>\n      <td>Wort 1</td>\n      <td>Wort 2</td>\n    </tr>\n  </tbody>\n</table>\n)))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n<table id=\"table1id\" class=\"grid sortable filterable doOddEven\">\n  <tr class=\"sortHeader\">\n    <th>Titel 1</th>\n    <th>Titel 2</th>\n  </tr>\n  <tr>\n   <td>Zelle 11</td>\n   <td>Zelle 12</td>\n  </tr>\n  <tr>\n   <td>Zelle 21</td>\n   <td>Zelle 22</td>\n  </tr>\n</table>\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"table1id\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))\n\n\n=== 2.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen. Parameter für Tabelle, Reihe oder Zelle sind ebenfalls in XWiki Syntax 2.0 unterstützt.\n\n|=Funktion|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Ergebnis\n|Standardtabelle|((({{{\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n}}}))) oder ((({{{\n!=Titel 1!=Titel 2\n!!Wort 1!!Wort 2\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|((({{{\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n}}})))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))",
            "id": 301054,
            "action_name": "Translation changed",
            "url": "https://l10n.xwiki.org/api/changes/301054/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-04-22T03:30:23.963937Z",
            "action": 0,
            "target": "",
            "id": 301016,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/301016/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2022-04-22T03:30:23.960584Z",
            "action": 30,
            "target": "= Editing =\n\n== Tables ==\n\n=== 1.0 Tables ===\n\nAllows to easily create content in table format.\n\n|=Feature|=XWiki Syntax 1.0|=Result\n|Standard table|((({{{\n{table}\nTitle 1 | Title 2\nWord 1 | Word 2\n{table}\n}}})))|(((\n|=Title 1|=Title 2\n|Word 1|Word 2\n)))\n|Parametrized table|(((\n<table style=\"background-color:red;text-align:center\">\n  <tbody>\n    <tr>\n      <td>Title 1</td>\n      <td style=\"background-color:yellow\">Title 2</td>\n    </tr>\n    <tr>\n      <td>Word 1</td>\n      <td>Word 2</td>\n    </tr>\n  </tbody>\n</table>\n)))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n)))\n|Filterable Sortable table|((({{{\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n<table id=\"table1id\" class=\"grid sortable filterable doOddEven\">\n  <tr class=\"sortHeader\">\n    <th>Title 1</th>\n    <th>Title 2</th>\n  </tr>\n  <tr>\n   <td>Cell 11</td>\n   <td>Cell 12</td>\n  </tr>\n  <tr>\n   <td>Cell 21</td>\n   <td>Cell 22</td>\n  </tr>\n</table>\n}}}\n\n{{info}}For improved features see the [[Livetable Macro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"table1id\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n)))\n\n=== 2.0 Tables ===\n\nAllows to easily create content in table format. Parameters for table, row or cell are also supported in XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}.\n\n|=Feature|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Result\n|Standard table|((({{{\n|=Title 1|=Title 2\n|Word 1|Word 2\n}}}))) or ((({{{\n!=Title 1!=Title 2\n!!Word 1!!Word 2\n}}})))|(((\n|=Title 1|=Title 2\n|Word 1|Word 2\n)))\n|Parametrized table|((({{{\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n}}})))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n)))\n|Filterable Sortable table|((({{{\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n}}}\n\n{{info}}For improved features see the [[Livetable Macro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n)))",
            "id": 301015,
            "action_name": "Source string changed",
            "url": "https://l10n.xwiki.org/api/changes/301015/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "author": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "timestamp": "2022-01-04T18:23:10.535060Z",
            "action": 2,
            "target": "= Bearbeiten =\n\n== Tabellen ==\n\n{{comment}}please do not translate the sub headlines{{/comment}}\n=== 1.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen.\n\n|=Funktion|=XWiki Syntax 1.0|=Ergebnis\n|Standardtabelle|((({{{\n{table}\nTitel 1 | Titel 2\nWort 1 | Wort 2\n{table}\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|(((\n<table style=\"background-color:red;text-align:center\">\n  <tbody>\n    <tr>\n      <td>Titel 1</td>\n      <td style=\"background-color:yellow\">Titel 2</td>\n    </tr>\n    <tr>\n      <td>Wort 1</td>\n      <td>Wort 2</td>\n    </tr>\n  </tbody>\n</table>\n)))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n<table id=\"table1id\" class=\"grid sortable filterable doOddEven\">\n  <tr class=\"sortHeader\">\n    <th>Titel 1</th>\n    <th>Titel 2</th>\n  </tr>\n  <tr>\n   <td>Zelle 11</td>\n   <td>Zelle 12</td>\n  </tr>\n  <tr>\n   <td>Zelle 21</td>\n   <td>Zelle 22</td>\n  </tr>\n</table>\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"table1id\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))\n\n\n=== 2.0 Tables ===\n\nErlaubt es auf einfache Weise Inhalte im Tabellenformat zu erstellen. Parameter für Tabelle, Reihe oder Zelle sind ebenfalls in XWiki Syntax 2.0 unterstützt.\n\n|=Funktion|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Ergebnis\n|Standardtabelle|((({{{\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n}}}))) oder ((({{{\n!=Titel 1!=Titel 2\n!!Wort 1!!Wort 2\n}}})))|(((\n|=Titel 1|=Titel 2\n|Wort 1|Wort 2\n)))\n|Parametrisierte Tabelle|((({{{\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n}}})))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Titel 1|=(% style=\"background-color:yellow\" %)Titel 2\n|Wort 1|Wort 2\n)))\n|Filterbare, sortierbare Tabelle|((({{{\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n}}}\n\n{{info}}Für verbesserte Funktionen siehe das [[Live-Table Makro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Titel 1|=Titel 2\n|Zelle 11|Zelle 12\n|Zelle 21|Zelle 22\n)))",
            "id": 294257,
            "action_name": "Translation changed",
            "url": "https://l10n.xwiki.org/api/changes/294257/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "author": "https://l10n.xwiki.org/api/users/Simpel/?format=api",
            "timestamp": "2022-01-04T18:23:10.531786Z",
            "action": 45,
            "target": "",
            "id": 294256,
            "action_name": "Contributor joined",
            "url": "https://l10n.xwiki.org/api/changes/294256/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "author": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "timestamp": "2021-11-24T08:41:03.925629Z",
            "action": 0,
            "target": "",
            "id": 292209,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/292209/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2021-10-15T03:36:43.254969Z",
            "action": 0,
            "target": "",
            "id": 289861,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/289861/?format=api"
        },
        {
            "unit": "https://l10n.xwiki.org/api/units/465587/?format=api",
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2021-10-15T03:36:43.250587Z",
            "action": 30,
            "target": "= Editing =\n\n== Tables ==\n\n=== 1.0 Tables ===\n\nAllows to easily create content in table format.\n\n|=Feature|=XWiki Syntax 1.0|=Result\n|Standard table|((({{{\n{table}\nTitle 1 | Title 2\nWord 1 | Word 2\n{table}\n}}})))|(((\n|=Title 1|=Title 2\n|Word 1|Word 2\n)))\n|Parametrized table|(((\n<table style=\"background-color:red;text-align:center\">\n  <tbody>\n    <tr>\n      <td>Title 1</td>\n      <td style=\"background-color:yellow\">Title 2</td>\n    </tr>\n    <tr>\n      <td>Word 1</td>\n      <td>Word 2</td>\n    </tr>\n  </tbody>\n</table>\n)))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n)))\n|Filterable Sortable table|((({{{\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n<table id=\"table1id\" class=\"grid sortable filterable doOddEven\">\n  <tr class=\"sortHeader\">\n    <th>Title 1</th>\n    <th>Title 2</th>\n  </tr>\n  <tr>\n   <td>Cell 11</td>\n   <td>Cell 12</td>\n  </tr>\n  <tr>\n   <td>Cell 21</td>\n   <td>Cell 22</td>\n  </tr>\n</table>\n}}}\n\n{{info}}For improved features see the [[Livetable Macro>>https://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"table1id\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n)))\n\n=== 2.0 Tables ===\n\nAllows to easily create content in table format. Parameters for table, row or cell are also supported in XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}.\n\n|=Feature|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Result\n|Standard table|((({{{\n|=Title 1|=Title 2\n|Word 1|Word 2\n}}}))) or ((({{{\n!=Title 1!=Title 2\n!!Word 1!!Word 2\n}}})))|(((\n|=Title 1|=Title 2\n|Word 1|Word 2\n)))\n|Parametrized table|((({{{\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n}}})))|(((\n(% style=\"background-color:red;text-align:center\" %)\n|=Title 1|=(% style=\"background-color:yellow\" %)Title 2\n|Word 1|Word 2\n)))\n|Filterable Sortable table|((({{{\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n}}}\n\n{{info}}For improved features see the [[Livetable Macro>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro]].{{/info}}\n)))|(((\n{{velocity}}\n$xwiki.ssfx.use(\"js/xwiki/table/table.css\")\n$xwiki.jsfx.use(\"js/xwiki/table/tablefilterNsort.js\", true)\n{{/velocity}}\n\n(% class=\"grid sortable filterable doOddEven\" id=\"tableid\" %)\n(% class=\"sortHeader\" %)|=Title 1|=Title 2\n|Cell 11|Cell 12\n|Cell 21|Cell 22\n)))",
            "id": 289860,
            "action_name": "Source string changed",
            "url": "https://l10n.xwiki.org/api/changes/289860/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "author": "https://l10n.xwiki.org/api/users/surli/?format=api",
            "timestamp": "2021-07-02T10:26:50.018254Z",
            "action": 0,
            "target": "",
            "id": 287841,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/287841/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2021-04-10T03:31:09.414673Z",
            "action": 0,
            "target": "",
            "id": 284432,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/284432/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2021-01-26T13:00:50.199442Z",
            "action": 0,
            "target": "",
            "id": 280813,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/280813/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2021-01-26T12:57:36.266287Z",
            "action": 0,
            "target": "",
            "id": 280131,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/280131/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2020-12-02T15:32:40.603789Z",
            "action": 0,
            "target": "",
            "id": 276773,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/276773/?format=api"
        },
        {
            "unit": null,
            "component": "https://l10n.xwiki.org/api/components/xwiki-platform/xwiki-xwikisyntaxtables/?format=api",
            "translation": "https://l10n.xwiki.org/api/translations/xwiki-platform/xwiki-xwikisyntaxtables/de/?format=api",
            "user": null,
            "author": null,
            "timestamp": "2019-10-17T10:19:56.551513Z",
            "action": 0,
            "target": "",
            "id": 175099,
            "action_name": "Resource updated",
            "url": "https://l10n.xwiki.org/api/changes/175099/?format=api"
        }
    ]
}