fixed format of json

This commit is contained in:
Jana Häring 2023-10-19 17:56:45 +02:00
parent 7e1ccd3f4e
commit fd741e3274

View file

@ -20,12 +20,13 @@ Translations will be send back to us regularly and will eventually appear in the
[source,json] [source,json]
---- ----
{ "pad.modals.connected": "Connecté." {
, "pad.modals.uderdup": "Ouvrir dans une nouvelle fenêtre." "pad.modals.connected": "Connecté.",
, "pad.toolbar.unindent.title": "Dèsindenter" "pad.modals.uderdup": "Ouvrir dans une nouvelle fenêtre.",
, "pad.toolbar.undo.title": "Annuler (Ctrl-Z)" "pad.toolbar.unindent.title": "Dèsindenter",
, "timeslider.pageTitle": "{{appTitle}} Curseur temporel", "pad.toolbar.undo.title": "Annuler (Ctrl-Z)",
, ... "timeslider.pageTitle": "{{appTitle}} Curseur temporel",
...
} }
---- ----
@ -80,7 +81,8 @@ alert(window._('pad.chat'));
[source, json] [source, json]
---- ----
{ "ep_your-plugin.h1": "Heading 1" {
"ep_your-plugin.h1": "Heading 1"
} }
---- ----
@ -88,7 +90,8 @@ alert(window._('pad.chat'));
[source, json] [source, json]
---- ----
{ "ep_your-plugin.h1": "Título 1" {
"ep_your-plugin.h1": "Título 1"
} }
---- ----
@ -103,8 +106,9 @@ For example, if you want to replace `Chat` with `Notes`, simply add...
[source,json] [source,json]
---- ----
{ "ep_your-plugin.h1": "Heading 1" {
, "pad.chat": "Notes" "ep_your-plugin.h1": "Heading 1",
"pad.chat": "Notes"
} }
---- ----