@seafile/sdoc-editor 0.2.20 → 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.
- package/dist/api/seafile-api.js +55 -0
- package/dist/basic-sdk/assets/css/sdoc-editor-plugins.css +2 -2
- package/dist/basic-sdk/extension/plugins/image/render-elem.js +14 -32
- package/dist/basic-sdk/extension/toolbar/side-toolbar/side-menu.js +23 -0
- package/dist/basic-sdk/outline/index.js +1 -1
- package/dist/basic-sdk/outline/outline-item.js +1 -1
- package/dist/components/doc-operations/index.js +2 -1
- package/dist/components/doc-operations/tag-operation/constans.js +2 -0
- package/dist/components/doc-operations/tag-operation/index.js +11 -0
- package/dist/components/doc-operations/tag-operation/tag-popover/index.css +70 -0
- package/dist/components/doc-operations/tag-operation/tag-popover/index.js +251 -0
- package/dist/components/doc-operations/tag-operation/utils.js +8 -0
- package/dist/context.js +54 -0
- package/dist/layout/layout.js +11 -1
- package/package.json +1 -1
- package/public/locales/cs/sdoc-editor.json +29 -15
- package/public/locales/de/sdoc-editor.json +29 -15
- package/public/locales/en/sdoc-editor.json +30 -15
- package/public/locales/es/sdoc-editor.json +29 -15
- package/public/locales/fr/sdoc-editor.json +29 -15
- package/public/locales/it/sdoc-editor.json +29 -15
- package/public/locales/ru/sdoc-editor.json +29 -15
- package/public/locales/zh_CN/sdoc-editor.json +30 -15
- package/public/media/sdoc-editor-font/iconfont.svg +0 -4
- package/public/media/sdoc-editor-font.css +0 -8
package/dist/context.js
CHANGED
|
@@ -114,6 +114,15 @@ var Context = /*#__PURE__*/function () {
|
|
|
114
114
|
value: function saveContent(content) {
|
|
115
115
|
return this.sdocServerApi.saveDocContent(content);
|
|
116
116
|
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @private Get DocUuid
|
|
120
|
+
*/
|
|
121
|
+
}, {
|
|
122
|
+
key: "getDocUuid",
|
|
123
|
+
value: function getDocUuid() {
|
|
124
|
+
return this.getSetting('docUuid');
|
|
125
|
+
}
|
|
117
126
|
}, {
|
|
118
127
|
key: "getCollaborators",
|
|
119
128
|
value: function getCollaborators() {
|
|
@@ -290,6 +299,51 @@ var Context = /*#__PURE__*/function () {
|
|
|
290
299
|
var docUuid = this.getSetting('docUuid');
|
|
291
300
|
return this.api.listRelatedUsers(docUuid);
|
|
292
301
|
}
|
|
302
|
+
// File tags
|
|
303
|
+
}, {
|
|
304
|
+
key: "getFileTagList",
|
|
305
|
+
value: function getFileTagList() {
|
|
306
|
+
var docUuid = this.getDocUuid();
|
|
307
|
+
return this.api.getFileTagList(docUuid);
|
|
308
|
+
}
|
|
309
|
+
}, {
|
|
310
|
+
key: "addFileTag",
|
|
311
|
+
value: function addFileTag(repoTagID) {
|
|
312
|
+
var docUuid = this.getDocUuid();
|
|
313
|
+
return this.api.addFileTag(docUuid, repoTagID);
|
|
314
|
+
}
|
|
315
|
+
}, {
|
|
316
|
+
key: "removeFileTag",
|
|
317
|
+
value: function removeFileTag(fileTagID) {
|
|
318
|
+
var docUuid = this.getDocUuid();
|
|
319
|
+
return this.api.removeFileTag(docUuid, fileTagID);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// Repo tags
|
|
323
|
+
}, {
|
|
324
|
+
key: "getRepoTagList",
|
|
325
|
+
value: function getRepoTagList() {
|
|
326
|
+
var docUuid = this.getDocUuid();
|
|
327
|
+
return this.api.getRepoTagList(docUuid);
|
|
328
|
+
}
|
|
329
|
+
}, {
|
|
330
|
+
key: "createRepoTag",
|
|
331
|
+
value: function createRepoTag(repoTagName, color) {
|
|
332
|
+
var docUuid = this.getDocUuid();
|
|
333
|
+
return this.api.createRepoTag(docUuid, repoTagName, color);
|
|
334
|
+
}
|
|
335
|
+
}, {
|
|
336
|
+
key: "removeRepoTag",
|
|
337
|
+
value: function removeRepoTag(fileTagID) {
|
|
338
|
+
var docUuid = this.getDocUuid();
|
|
339
|
+
return this.api.removeRepoTag(docUuid, fileTagID);
|
|
340
|
+
}
|
|
341
|
+
}, {
|
|
342
|
+
key: "updateRepoTag",
|
|
343
|
+
value: function updateRepoTag(repoTagId, repoTagName, color) {
|
|
344
|
+
var docUuid = this.getDocUuid();
|
|
345
|
+
return this.api.updateRepoTag(docUuid, repoTagId, repoTagName, color);
|
|
346
|
+
}
|
|
293
347
|
}]);
|
|
294
348
|
return Context;
|
|
295
349
|
}();
|
package/dist/layout/layout.js
CHANGED
|
@@ -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
|
@@ -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"
|
|
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
|
-
|
|
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"
|
|
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"
|
|
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
|
-
|
|
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"
|
|
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"
|
|
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
|
-
|
|
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"
|
|
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"
|
|
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
|
-
|
|
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"
|
|
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
|
}
|