@seafile/sdoc-editor 0.2.21 → 0.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,21 @@
1
1
  import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
2
2
  var _excluded = ["children", "className"];
3
- import React from 'react';
3
+ import React, { useEffect } from 'react';
4
4
  import classnames from 'classnames';
5
5
  var Layout = function Layout(_ref) {
6
6
  var children = _ref.children,
7
7
  className = _ref.className,
8
8
  restProps = _objectWithoutProperties(_ref, _excluded);
9
+ useEffect(function () {
10
+ setTimeout(function () {
11
+ var url = window.location.href;
12
+ var id = url.slice(url.indexOf('#') + 1);
13
+ if (id) {
14
+ var element = document.getElementById(id);
15
+ element && element.scrollIntoView(true);
16
+ }
17
+ }, 500);
18
+ }, []);
9
19
  return /*#__PURE__*/React.createElement("div", Object.assign({
10
20
  className: classnames('sdoc-editor-page-wrapper', className)
11
21
  }, restProps), children);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seafile/sdoc-editor",
3
- "version": "0.2.21",
3
+ "version": "0.2.23",
4
4
  "private": false,
5
5
  "description": "This is a sdoc editor",
6
6
  "main": "dist/index.js",
@@ -50,7 +50,7 @@
50
50
  "Right": "Vpravo",
51
51
  "File_saved": "Soubor uložen",
52
52
  "File_failed_to_save": "Soubor nebyl uložen",
53
- "Back_to_parent_directory":"Zpět do nadřazeného adresáře",
53
+ "Back_to_parent_directory": "Zpět do nadřazeného adresáře",
54
54
  "Edit": "Upravit",
55
55
  "Copy": "Kopírovat",
56
56
  "Copied": "Zkopírováno",
@@ -93,7 +93,7 @@
93
93
  "New_draft": "New draft",
94
94
  "View_draft": "View draft",
95
95
  "Publish": "Zveřejnit",
96
- "This_file_has_a_draft": "Tento soubor má koncept.",
96
+ "This_file_has_a_draft": "Tento soubor má koncept.",
97
97
  "Delete": "Smazat",
98
98
  "Reply": "Odpověď",
99
99
  "Comment": "Komentář",
@@ -146,7 +146,7 @@
146
146
  "MarkdownLint": {
147
147
  "missing_h1": {
148
148
  "description": "V dokumentu není žádný h1",
149
- "issue" : "Chybí h1"
149
+ "issue": "Chybí h1"
150
150
  },
151
151
  "heading_end_with_colon": {
152
152
  "description": "Koncová interpunkce v záhlaví by neměla být dvojtečka",
@@ -162,7 +162,7 @@
162
162
  "title": "Klávesové zkratky",
163
163
  "userHelpData": [
164
164
  {
165
- "shortcutType":"Seznam zkratek",
165
+ "shortcutType": "Seznam zkratek",
166
166
  "shortcutData": {
167
167
  "Make_list": "Vytvořit seznam",
168
168
  "Make_ordered_list": "Vytvořit číslovaný seznam",
@@ -170,7 +170,8 @@
170
170
  "Insert_child_in_item": "Vložit podpoložku",
171
171
  "Increase_depth": "Zvýšit hloubku"
172
172
  }
173
- }, {
173
+ },
174
+ {
174
175
  "shortcutType": "Zkratky záhlaví",
175
176
  "shortcutData": {
176
177
  "Heading_1": "Záhlaví 1",
@@ -180,7 +181,8 @@
180
181
  "Heading_5": "Záhlaví 5",
181
182
  "Heading_6": "Záhlaví 6"
182
183
  }
183
- }, {
184
+ },
185
+ {
184
186
  "shortcutType": "Zkratky bloků kódu",
185
187
  "shortcutData": {
186
188
  "Make_code_block": "Vytvořit blok kódu",
@@ -188,37 +190,43 @@
188
190
  "Escape_code_block": "Opustit blok kódu",
189
191
  "Insert_indent": "Vložit odrážku"
190
192
  }
191
- }, {
193
+ },
194
+ {
192
195
  "shortcutType": "Zkratky bloku citace",
193
196
  "shortcutData": {
194
197
  "Make_Block_quote": "Vytvořit blokovou citaci",
195
198
  "Escape_Block_quote": "Opustit blokovou citaci"
196
199
  }
197
- }, {
200
+ },
201
+ {
198
202
  "shortcutType": "Zkratky tabulky",
199
203
  "shortcutData": {
200
204
  "Insert_Table_Row": "Vložit řádku tabulky",
201
205
  "Escape_table": "Opustit tabulku"
202
206
  }
203
- }, {
207
+ },
208
+ {
204
209
  "shortcutType": "Zkratky vzorečku",
205
210
  "shortcutData": {
206
211
  "Insert_Formula": "Insert Formula"
207
212
  }
208
- }, {
209
- "shortcutType":"Řádkové zkratky",
213
+ },
214
+ {
215
+ "shortcutType": "Řádkové zkratky",
210
216
  "shortcutData": {
211
217
  "Bold": "Tučně",
212
218
  "Italic": "Kurzíva",
213
219
  "Italic_Bold": "Tučná kurzíva",
214
220
  "Inline_code": "Řádkový kód"
215
221
  }
216
- }, {
222
+ },
223
+ {
217
224
  "shortcutType": "Uložit zkratky",
218
225
  "shortcutData": {
219
226
  "Save_file": "Uložit soubor"
220
227
  }
221
- }, {
228
+ },
229
+ {
222
230
  "shortcutType": "Zkratky obrázku",
223
231
  "shortcutData": {
224
232
  "Paste_screen_shot": "Vložit snímek obrazovky",
@@ -267,7 +275,7 @@
267
275
  "Are_you_sure_to_delete_this_reply": "Are you sure to delete this reply?",
268
276
  "Enter_a_comment": "Enter a comment",
269
277
  "Enter_a_reply": "Enter a reply",
270
- "Reopen_discussion" : "Adding a reply will reopen this discussion",
278
+ "Reopen_discussion": "Adding a reply will reopen this discussion",
271
279
  "Confirm": "Potvrdit",
272
280
  "View_changes": "View changes",
273
281
  "Revision": "Revision",
@@ -392,5 +400,11 @@
392
400
  "Insert_caption": "Insert caption",
393
401
  "No_collaborators_available": "No_collaborators_available",
394
402
  "Find_a_collaborator": "Find a collaborator",
395
- "Doc_comments": "Document comments"
403
+ "Doc_comments": "Document comments",
404
+ "Tag_not_found": "Tag not found",
405
+ "Create_a_new_tag": "Vytvořit nový štítek",
406
+ "Search_tags": "Search tags",
407
+ "No_options_available": "Tag not found",
408
+ "Add_option": "Vytvořit nový štítek",
409
+ "Find_an_option": "Search tags"
396
410
  }
@@ -50,7 +50,7 @@
50
50
  "Right": "Rechts",
51
51
  "File_saved": "Die Datei wurde gespeichert.",
52
52
  "File_failed_to_save": "Die Datei konnte nicht gespeichert werden.",
53
- "Back_to_parent_directory":"Zurück zum übergeordneten Verzeichnis",
53
+ "Back_to_parent_directory": "Zurück zum übergeordneten Verzeichnis",
54
54
  "Edit": "Bearbeiten",
55
55
  "Copy": "Kopieren",
56
56
  "Copied": "Kopiert",
@@ -93,7 +93,7 @@
93
93
  "New_draft": "New draft",
94
94
  "View_draft": "View draft",
95
95
  "Publish": "Veröffentlichen",
96
- "This_file_has_a_draft": "Zu dieser Datei gibt es einen Entwurf.",
96
+ "This_file_has_a_draft": "Zu dieser Datei gibt es einen Entwurf.",
97
97
  "Delete": "Löschen",
98
98
  "Reply": "Antworten",
99
99
  "Comment": "Kommentar",
@@ -146,7 +146,7 @@
146
146
  "MarkdownLint": {
147
147
  "missing_h1": {
148
148
  "description": "Es gibt keine Hauptüberschrift (h1) in dem Text",
149
- "issue" : "Hauptüberschrift (h1) fehlt"
149
+ "issue": "Hauptüberschrift (h1) fehlt"
150
150
  },
151
151
  "heading_end_with_colon": {
152
152
  "description": "Überschriften dürfen nicht mit einem Doppelpunkt enden.",
@@ -162,7 +162,7 @@
162
162
  "title": "Tastenkombinationen",
163
163
  "userHelpData": [
164
164
  {
165
- "shortcutType":"Listen",
165
+ "shortcutType": "Listen",
166
166
  "shortcutData": {
167
167
  "Make_list": "Ungeordnete Liste anlegen",
168
168
  "Make_ordered_list": "Nummerierte Liste anlegen",
@@ -170,7 +170,8 @@
170
170
  "Insert_child_in_item": "Textzeile einfügen",
171
171
  "Increase_depth": "Einzug erhöhen"
172
172
  }
173
- }, {
173
+ },
174
+ {
174
175
  "shortcutType": "Überschriften",
175
176
  "shortcutData": {
176
177
  "Heading_1": "Überschrift 1",
@@ -180,7 +181,8 @@
180
181
  "Heading_5": "Überschrift 5",
181
182
  "Heading_6": "Überschrift 6"
182
183
  }
183
- }, {
184
+ },
185
+ {
184
186
  "shortcutType": "Codeblock",
185
187
  "shortcutData": {
186
188
  "Make_code_block": "Codeblock anlegen",
@@ -188,37 +190,43 @@
188
190
  "Escape_code_block": "Codeblock beenden",
189
191
  "Insert_indent": "Einzug erhöhen"
190
192
  }
191
- }, {
193
+ },
194
+ {
192
195
  "shortcutType": "Blockquote",
193
196
  "shortcutData": {
194
197
  "Make_Block_quote": "Blockquote einfügen",
195
198
  "Escape_Block_quote": "Blockquote beenden"
196
199
  }
197
- }, {
200
+ },
201
+ {
198
202
  "shortcutType": "Tabellen",
199
203
  "shortcutData": {
200
204
  "Insert_Table_Row": "Tabellenzeile einfügen",
201
205
  "Escape_table": "Tabelle beenden"
202
206
  }
203
- }, {
207
+ },
208
+ {
204
209
  "shortcutType": "Formeln",
205
210
  "shortcutData": {
206
211
  "Insert_Formula": "Formel einfügen"
207
212
  }
208
- }, {
209
- "shortcutType":"Textformatierung",
213
+ },
214
+ {
215
+ "shortcutType": "Textformatierung",
210
216
  "shortcutData": {
211
217
  "Bold": "Fett",
212
218
  "Italic": "Kursiv",
213
219
  "Italic_Bold": "Kursiv fett",
214
220
  "Inline_code": "Inline-Code"
215
221
  }
216
- }, {
222
+ },
223
+ {
217
224
  "shortcutType": "Speichern",
218
225
  "shortcutData": {
219
226
  "Save_file": "Datei speichern"
220
227
  }
221
- }, {
228
+ },
229
+ {
222
230
  "shortcutType": "Bilder",
223
231
  "shortcutData": {
224
232
  "Paste_screen_shot": "Bild aus Zwischenablage einfügen",
@@ -267,7 +275,7 @@
267
275
  "Are_you_sure_to_delete_this_reply": "Are you sure to delete this reply?",
268
276
  "Enter_a_comment": "Enter a comment",
269
277
  "Enter_a_reply": "Enter a reply",
270
- "Reopen_discussion" : "Adding a reply will reopen this discussion",
278
+ "Reopen_discussion": "Adding a reply will reopen this discussion",
271
279
  "Confirm": "Bestätigen",
272
280
  "View_changes": "View changes",
273
281
  "Revision": "Revision",
@@ -392,5 +400,11 @@
392
400
  "Insert_caption": "Insert caption",
393
401
  "No_collaborators_available": "No_collaborators_available",
394
402
  "Find_a_collaborator": "Find a collaborator",
395
- "Doc_comments": "Document comments"
403
+ "Doc_comments": "Document comments",
404
+ "Tag_not_found": "Tag not found",
405
+ "Create_a_new_tag": "Neues Tag erstellen",
406
+ "Search_tags": "Search tags",
407
+ "No_options_available": "Tag not found",
408
+ "Add_option": "Neues Tag erstellen",
409
+ "Find_an_option": "Search tags"
396
410
  }
@@ -50,7 +50,7 @@
50
50
  "Right": "Right",
51
51
  "File_saved": "File saved.",
52
52
  "File_failed_to_save": "File failed to save.",
53
- "Back_to_parent_directory":"Back to parent directory",
53
+ "Back_to_parent_directory": "Back to parent directory",
54
54
  "Edit": "Edit",
55
55
  "Copy": "Copy",
56
56
  "Copied": "Copied",
@@ -93,7 +93,7 @@
93
93
  "New_draft": "New draft",
94
94
  "View_draft": "View draft",
95
95
  "Publish": "Publish",
96
- "This_file_has_a_draft": "This file has a draft.",
96
+ "This_file_has_a_draft": "This file has a draft.",
97
97
  "Delete": "Delete",
98
98
  "Reply": "Reply",
99
99
  "Comment": "Comment",
@@ -146,7 +146,7 @@
146
146
  "MarkdownLint": {
147
147
  "missing_h1": {
148
148
  "description": "There is no h1 in the document",
149
- "issue" : "Missing h1"
149
+ "issue": "Missing h1"
150
150
  },
151
151
  "heading_end_with_colon": {
152
152
  "description": "Trailing punctuation in heading should not be a colon",
@@ -162,7 +162,7 @@
162
162
  "title": "Keyboard shortcuts",
163
163
  "userHelpData": [
164
164
  {
165
- "shortcutType":"List shortcuts",
165
+ "shortcutType": "List shortcuts",
166
166
  "shortcutData": {
167
167
  "Make_list": "Make list",
168
168
  "Make_ordered_list": "Make Ordered list",
@@ -170,7 +170,8 @@
170
170
  "Insert_child_in_item": "Insert child in item",
171
171
  "Increase_depth": "Increase depth"
172
172
  }
173
- }, {
173
+ },
174
+ {
174
175
  "shortcutType": "Head shortcuts",
175
176
  "shortcutData": {
176
177
  "Heading_1": "Heading 1",
@@ -180,7 +181,8 @@
180
181
  "Heading_5": "Heading 5",
181
182
  "Heading_6": "Heading 6"
182
183
  }
183
- }, {
184
+ },
185
+ {
184
186
  "shortcutType": "Code block shortcuts",
185
187
  "shortcutData": {
186
188
  "Make_code_block": "Make code block",
@@ -188,37 +190,43 @@
188
190
  "Escape_code_block": "Escape code block",
189
191
  "Insert_indent": "Insert indent"
190
192
  }
191
- }, {
193
+ },
194
+ {
192
195
  "shortcutType": "Block quote shortcuts",
193
196
  "shortcutData": {
194
197
  "Make_Block_quote": "Make Block quote",
195
198
  "Escape_Block_quote": "Escape Block quote"
196
199
  }
197
- }, {
200
+ },
201
+ {
198
202
  "shortcutType": "Table shortcuts",
199
203
  "shortcutData": {
200
204
  "Insert_Table_Row": "Insert Table Row",
201
205
  "Escape_table": "Escape table"
202
206
  }
203
- }, {
207
+ },
208
+ {
204
209
  "shortcutType": "Formula shortcuts",
205
210
  "shortcutData": {
206
211
  "Insert_Formula": "Insert Formula"
207
212
  }
208
- }, {
209
- "shortcutType":"Inline shortcuts",
213
+ },
214
+ {
215
+ "shortcutType": "Inline shortcuts",
210
216
  "shortcutData": {
211
217
  "Bold": "Bold",
212
218
  "Italic": "Italic",
213
219
  "Italic_Bold": "Italic Bold",
214
220
  "Inline_code": "Inline code"
215
221
  }
216
- }, {
222
+ },
223
+ {
217
224
  "shortcutType": "Save shortcuts",
218
225
  "shortcutData": {
219
226
  "Save_file": "Save file"
220
227
  }
221
- }, {
228
+ },
229
+ {
222
230
  "shortcutType": "Image shortcuts",
223
231
  "shortcutData": {
224
232
  "Paste_screen_shot": "Paste screen shot",
@@ -267,7 +275,7 @@
267
275
  "Are_you_sure_to_delete_this_reply": "Are you sure to delete this reply?",
268
276
  "Enter_a_comment": "Enter a comment",
269
277
  "Enter_a_reply": "Enter a reply",
270
- "Reopen_discussion" : "Adding a reply will reopen this discussion",
278
+ "Reopen_discussion": "Adding a reply will reopen this discussion",
271
279
  "Confirm": "Confirm",
272
280
  "View_changes": "View changes",
273
281
  "Revision": "Revision",
@@ -392,5 +400,12 @@
392
400
  "Insert_caption": "Insert caption",
393
401
  "No_collaborators_available": "No_collaborators_available",
394
402
  "Find_a_collaborator": "Find a collaborator",
395
- "Doc_comments": "Document comments"
403
+ "Doc_comments": "Document comments",
404
+ "Tag_not_found": "Tag not found",
405
+ "Create_a_new_tag": "Create a new tag",
406
+ "Search_tags": "Search tags",
407
+ "No_options_available": "Tag not found",
408
+ "Add_option": "Create a new tag",
409
+ "Find_an_option": "Search tags",
410
+ "Copy_link_of_section": "Copy link of section"
396
411
  }
@@ -50,7 +50,7 @@
50
50
  "Right": "derecha",
51
51
  "File_saved": "Archivo guardado",
52
52
  "File_failed_to_save": "Fallo al guardar archivo",
53
- "Back_to_parent_directory":"Volver a la carpeta superior",
53
+ "Back_to_parent_directory": "Volver a la carpeta superior",
54
54
  "Edit": "Editar",
55
55
  "Copy": "Copiar",
56
56
  "Copied": "Copiado",
@@ -93,7 +93,7 @@
93
93
  "New_draft": "New draft",
94
94
  "View_draft": "View draft",
95
95
  "Publish": "Publicar",
96
- "This_file_has_a_draft": "Este archivo tiene un borrador",
96
+ "This_file_has_a_draft": "Este archivo tiene un borrador",
97
97
  "Delete": "Borrar",
98
98
  "Reply": "Responder",
99
99
  "Comment": "Comentar",
@@ -146,7 +146,7 @@
146
146
  "MarkdownLint": {
147
147
  "missing_h1": {
148
148
  "description": "No hay h1 en el documento",
149
- "issue" : "Falta h1"
149
+ "issue": "Falta h1"
150
150
  },
151
151
  "heading_end_with_colon": {
152
152
  "description": "Un encabezado no debe finalizar con el signo Dos Puntos",
@@ -162,7 +162,7 @@
162
162
  "title": "Atajos de teclado",
163
163
  "userHelpData": [
164
164
  {
165
- "shortcutType":"Listar atajos",
165
+ "shortcutType": "Listar atajos",
166
166
  "shortcutData": {
167
167
  "Make_list": "Crear lista",
168
168
  "Make_ordered_list": "Crear lista ordenada",
@@ -170,7 +170,8 @@
170
170
  "Insert_child_in_item": "Insert child in item",
171
171
  "Increase_depth": "Increase depth"
172
172
  }
173
- }, {
173
+ },
174
+ {
174
175
  "shortcutType": "Head shortcuts",
175
176
  "shortcutData": {
176
177
  "Heading_1": "Encabezado 1",
@@ -180,7 +181,8 @@
180
181
  "Heading_5": "Encabezado 5",
181
182
  "Heading_6": "Encabezado 6"
182
183
  }
183
- }, {
184
+ },
185
+ {
184
186
  "shortcutType": "Code block shortcuts",
185
187
  "shortcutData": {
186
188
  "Make_code_block": "Crear bloque de código",
@@ -188,37 +190,43 @@
188
190
  "Escape_code_block": "Escape code block",
189
191
  "Insert_indent": "Insert indent"
190
192
  }
191
- }, {
193
+ },
194
+ {
192
195
  "shortcutType": "Block quote shortcuts",
193
196
  "shortcutData": {
194
197
  "Make_Block_quote": "Make Block quote",
195
198
  "Escape_Block_quote": "Escape Block quote"
196
199
  }
197
- }, {
200
+ },
201
+ {
198
202
  "shortcutType": "Atajos de tabla",
199
203
  "shortcutData": {
200
204
  "Insert_Table_Row": "Insertar fila de tabla",
201
205
  "Escape_table": "Escape table"
202
206
  }
203
- }, {
207
+ },
208
+ {
204
209
  "shortcutType": "Atajos de fórmula",
205
210
  "shortcutData": {
206
211
  "Insert_Formula": "Insertar Fórmula"
207
212
  }
208
- }, {
209
- "shortcutType":"Inline shortcuts",
213
+ },
214
+ {
215
+ "shortcutType": "Inline shortcuts",
210
216
  "shortcutData": {
211
217
  "Bold": "Negrita",
212
218
  "Italic": "Itálica",
213
219
  "Italic_Bold": "Negrita itálica",
214
220
  "Inline_code": "Inline code"
215
221
  }
216
- }, {
222
+ },
223
+ {
217
224
  "shortcutType": "Guardar atajos",
218
225
  "shortcutData": {
219
226
  "Save_file": "Guardar archivo"
220
227
  }
221
- }, {
228
+ },
229
+ {
222
230
  "shortcutType": "Atajos de imagen",
223
231
  "shortcutData": {
224
232
  "Paste_screen_shot": "Pegar captura de pantalla",
@@ -267,7 +275,7 @@
267
275
  "Are_you_sure_to_delete_this_reply": "Are you sure to delete this reply?",
268
276
  "Enter_a_comment": "Enter a comment",
269
277
  "Enter_a_reply": "Enter a reply",
270
- "Reopen_discussion" : "Adding a reply will reopen this discussion",
278
+ "Reopen_discussion": "Adding a reply will reopen this discussion",
271
279
  "Confirm": "Confirmar",
272
280
  "View_changes": "View changes",
273
281
  "Revision": "Revision",
@@ -392,5 +400,11 @@
392
400
  "Insert_caption": "Insert caption",
393
401
  "No_collaborators_available": "No_collaborators_available",
394
402
  "Find_a_collaborator": "Find a collaborator",
395
- "Doc_comments": "Document comments"
403
+ "Doc_comments": "Document comments",
404
+ "Tag_not_found": "Tag not found",
405
+ "Create_a_new_tag": "Cear una nueva etiqueta",
406
+ "Search_tags": "Search tags",
407
+ "No_options_available": "Tag not found",
408
+ "Add_option": "Cear una nueva etiqueta",
409
+ "Find_an_option": "Search tags"
396
410
  }
@@ -50,7 +50,7 @@
50
50
  "Right": "Droite",
51
51
  "File_saved": "Le fichier a été sauvegardé.",
52
52
  "File_failed_to_save": "Échec de la sauvegarde du fichier",
53
- "Back_to_parent_directory":"Retour au répertoire parent",
53
+ "Back_to_parent_directory": "Retour au répertoire parent",
54
54
  "Edit": "Modifier",
55
55
  "Copy": "Copier",
56
56
  "Copied": "Copié",
@@ -93,7 +93,7 @@
93
93
  "New_draft": "Nouveau brouillon",
94
94
  "View_draft": "Voir le brouillon",
95
95
  "Publish": "Publier",
96
- "This_file_has_a_draft": "Ce fichier possède un brouillon.",
96
+ "This_file_has_a_draft": "Ce fichier possède un brouillon.",
97
97
  "Delete": "Supprimer",
98
98
  "Reply": "Répondre",
99
99
  "Comment": "Commentaire",
@@ -146,7 +146,7 @@
146
146
  "MarkdownLint": {
147
147
  "missing_h1": {
148
148
  "description": "Il n'y a pas de h1 dans le document.",
149
- "issue" : "h1 manquant"
149
+ "issue": "h1 manquant"
150
150
  },
151
151
  "heading_end_with_colon": {
152
152
  "description": "La ponctuation de fin de titre ne doit pas être deux points",
@@ -162,7 +162,7 @@
162
162
  "title": "Raccourcis clavier",
163
163
  "userHelpData": [
164
164
  {
165
- "shortcutType":"Liste des raccourcis",
165
+ "shortcutType": "Liste des raccourcis",
166
166
  "shortcutData": {
167
167
  "Make_list": "Faire une liste",
168
168
  "Make_ordered_list": "Faire une liste ordonnée",
@@ -170,7 +170,8 @@
170
170
  "Insert_child_in_item": "Insérer enfant dans l'élément",
171
171
  "Increase_depth": "Améliorer la profondeur"
172
172
  }
173
- }, {
173
+ },
174
+ {
174
175
  "shortcutType": "Raccourcis en-tête",
175
176
  "shortcutData": {
176
177
  "Heading_1": "Titre 1",
@@ -180,7 +181,8 @@
180
181
  "Heading_5": "Titre 5",
181
182
  "Heading_6": "Titre 6"
182
183
  }
183
- }, {
184
+ },
185
+ {
184
186
  "shortcutType": "Raccourcis de blocs de code",
185
187
  "shortcutData": {
186
188
  "Make_code_block": "Faire un bloc de code",
@@ -188,37 +190,43 @@
188
190
  "Escape_code_block": "Sortir du bloc de code",
189
191
  "Insert_indent": "Insérer un espace"
190
192
  }
191
- }, {
193
+ },
194
+ {
192
195
  "shortcutType": "Raccourcis blockquote",
193
196
  "shortcutData": {
194
197
  "Make_Block_quote": "Faire un blockquote",
195
198
  "Escape_Block_quote": "Sortir du blockquote"
196
199
  }
197
- }, {
200
+ },
201
+ {
198
202
  "shortcutType": "Raccourcis tableau",
199
203
  "shortcutData": {
200
204
  "Insert_Table_Row": "Insérer une ligne",
201
205
  "Escape_table": "Sortir de la table"
202
206
  }
203
- }, {
207
+ },
208
+ {
204
209
  "shortcutType": "Raccourcis formule",
205
210
  "shortcutData": {
206
211
  "Insert_Formula": "Insérer formule"
207
212
  }
208
- }, {
209
- "shortcutType":"Raccourcis en ligne",
213
+ },
214
+ {
215
+ "shortcutType": "Raccourcis en ligne",
210
216
  "shortcutData": {
211
217
  "Bold": "Gras",
212
218
  "Italic": "Italique",
213
219
  "Italic_Bold": "Italique Gras",
214
220
  "Inline_code": "Ligne de code"
215
221
  }
216
- }, {
222
+ },
223
+ {
217
224
  "shortcutType": "Raccourcis sauvegarde",
218
225
  "shortcutData": {
219
226
  "Save_file": "Sauvegarder le fichier"
220
227
  }
221
- }, {
228
+ },
229
+ {
222
230
  "shortcutType": "Raccourcis image",
223
231
  "shortcutData": {
224
232
  "Paste_screen_shot": "Coller la capture d'écran",
@@ -267,7 +275,7 @@
267
275
  "Are_you_sure_to_delete_this_reply": "Êtes-vous sûr de vouloir supprimer cette réponse ?",
268
276
  "Enter_a_comment": "Saisir un commentaire",
269
277
  "Enter_a_reply": "Saisir une réponse",
270
- "Reopen_discussion" : "L'ajout d'une réponse rouvrira la discussion.",
278
+ "Reopen_discussion": "L'ajout d'une réponse rouvrira la discussion.",
271
279
  "Confirm": "Confirmer",
272
280
  "View_changes": "Afficher les modifications",
273
281
  "Revision": "Révision",
@@ -392,5 +400,11 @@
392
400
  "Insert_caption": "Insert caption",
393
401
  "No_collaborators_available": "No_collaborators_available",
394
402
  "Find_a_collaborator": "Find a collaborator",
395
- "Doc_comments": "Document comments"
403
+ "Doc_comments": "Document comments",
404
+ "Tag_not_found": "Tag not found",
405
+ "Create_a_new_tag": "Créer un nouveau Tag",
406
+ "Search_tags": "Search tags",
407
+ "No_options_available": "Tag not found",
408
+ "Add_option": "Créer un nouveau Tag",
409
+ "Find_an_option": "Search tags"
396
410
  }