@seafile/seafile-editor 1.0.38 → 1.0.40
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/extension/core/queries/index.js +8 -1
- package/dist/extension/plugins/blockquote/plugin.js +81 -28
- package/dist/extension/plugins/index.js +1 -1
- package/dist/extension/plugins/list/plugin/index.js +1 -0
- package/dist/extension/plugins/paragraph/plugin.js +0 -21
- package/dist/extension/toolbar/header-toolbar/index.js +1 -0
- package/dist/extension/toolbar/user-help/shortcut-dialog.js +5 -4
- package/dist/slate-convert/md-to-slate/transform.js +22 -3
- package/package.json +1 -1
- package/public/locales/cs/seafile-editor.json +41 -41
- package/public/locales/de/seafile-editor.json +39 -39
- package/public/locales/en/seafile-editor.json +22 -22
- package/public/locales/es/seafile-editor.json +18 -18
- package/public/locales/fr/seafile-editor.json +14 -14
- package/public/locales/it/seafile-editor.json +21 -21
- package/public/locales/ru/seafile-editor.json +5 -5
- package/public/locales/zh-CN/seafile-editor.json +2 -2
- package/public/locales/zh_CN/seafile-editor.json +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.isTextNode = exports.isStartPoint = exports.isSelectionAtBlockStart = exports.isSelectionAtBlockEnd = exports.isRangeAcrossBlocks = exports.isLastNode = exports.isLastChild = exports.isFirstNode = exports.isEndPoint = exports.isBlockTextEmptyAfterSelection = exports.isBlockAboveEmpty = exports.isAncestorEmpty = exports.getSelectedNodeEntryByType = exports.getSelectedNodeByTypes = exports.getSelectedNodeByType = exports.getSelectedElems = exports.getQueryOptions = exports.getPreviousPath = exports.getPrevNode = exports.getParentNode = exports.getNodes = exports.getNodeType = exports.getNodeEntries = exports.getNode = exports.getNextSiblingNodes = exports.getNextNode = exports.getLastChildPath = exports.getLastChild = exports.getEditorString = exports.getDeepInlineChildren = exports.getCommonNode = exports.getChildren = exports.getAboveNode = exports.getAboveBlockNode = exports.findPath = exports.findNode = exports.findDescendant = void 0;
|
|
6
|
+
exports.isTextNode = exports.isStartPoint = exports.isSelectionAtBlockStart = exports.isSelectionAtBlockEnd = exports.isRangeAcrossBlocks = exports.isLastNode = exports.isLastChild = exports.isFirstNode = exports.isFirstChild = exports.isEndPoint = exports.isBlockTextEmptyAfterSelection = exports.isBlockAboveEmpty = exports.isAncestorEmpty = exports.getSelectedNodeEntryByType = exports.getSelectedNodeByTypes = exports.getSelectedNodeByType = exports.getSelectedElems = exports.getQueryOptions = exports.getPreviousPath = exports.getPrevNode = exports.getParentNode = exports.getNodes = exports.getNodeType = exports.getNodeEntries = exports.getNode = exports.getNextSiblingNodes = exports.getNextNode = exports.getLastChildPath = exports.getLastChild = exports.getEditorString = exports.getDeepInlineChildren = exports.getCommonNode = exports.getChildren = exports.getAboveNode = exports.getAboveBlockNode = exports.findPath = exports.findNode = exports.findDescendant = void 0;
|
|
7
7
|
var _slate = require("slate");
|
|
8
8
|
var _slateReact = require("slate-react");
|
|
9
9
|
var _utils = require("../utils");
|
|
@@ -168,6 +168,13 @@ const getPreviousPath = path => {
|
|
|
168
168
|
return path.slice(0, -1).concat(last - 1);
|
|
169
169
|
};
|
|
170
170
|
exports.getPreviousPath = getPreviousPath;
|
|
171
|
+
const isFirstChild = (nodeEntry, childPath) => {
|
|
172
|
+
const children = getChildren(nodeEntry);
|
|
173
|
+
const firstChild = children[0] || [];
|
|
174
|
+
const firstChildPath = firstChild[1];
|
|
175
|
+
return _slate.Path.equals(firstChildPath, childPath);
|
|
176
|
+
};
|
|
177
|
+
exports.isFirstChild = isFirstChild;
|
|
171
178
|
const isLastChild = (nodeEntry, childPath) => {
|
|
172
179
|
const lastChildPath = getLastChildPath(nodeEntry);
|
|
173
180
|
return _slate.Path.equals(lastChildPath, childPath);
|
|
@@ -5,14 +5,34 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _slate = require("slate");
|
|
8
|
-
var _slateReact = require("slate-react");
|
|
9
8
|
var _core = require("../../core");
|
|
10
9
|
var _elementTypes = require("../../constants/element-types");
|
|
11
10
|
var _helpers = require("./helpers");
|
|
11
|
+
var _constant = require("../list/constant");
|
|
12
|
+
const getCurrentLineEntry = editor => {
|
|
13
|
+
// blockquote > paragraph
|
|
14
|
+
// blockquote > check_list_item
|
|
15
|
+
// blockquote > list > list_item > paragraph
|
|
16
|
+
const [currentLineEntry] = _slate.Editor.nodes(editor, {
|
|
17
|
+
match: n => _slate.Element.isElement(n) && _slate.Editor.isBlock(editor, n),
|
|
18
|
+
mode: 'lowest'
|
|
19
|
+
});
|
|
20
|
+
if (!currentLineEntry) return null;
|
|
21
|
+
const type = currentLineEntry[0].type;
|
|
22
|
+
if (type === _elementTypes.PARAGRAPH) {
|
|
23
|
+
const parentPath = _slate.Path.parent(currentLineEntry[1]);
|
|
24
|
+
if (parentPath.length === 1) return currentLineEntry; // top level element
|
|
25
|
+
const [listEntry] = _slate.Editor.nodes(editor, {
|
|
26
|
+
match: n => _slate.Element.isElement(n) && _constant.LIST_TYPES.includes(n.type),
|
|
27
|
+
mode: 'highest'
|
|
28
|
+
});
|
|
29
|
+
return listEntry;
|
|
30
|
+
}
|
|
31
|
+
return currentLineEntry;
|
|
32
|
+
};
|
|
12
33
|
const withBlockquote = editor => {
|
|
13
34
|
const {
|
|
14
35
|
insertBreak,
|
|
15
|
-
insertText,
|
|
16
36
|
deleteBackward,
|
|
17
37
|
insertFragment
|
|
18
38
|
} = editor;
|
|
@@ -22,32 +42,48 @@ const withBlockquote = editor => {
|
|
|
22
42
|
selection
|
|
23
43
|
} = editor;
|
|
24
44
|
if (selection == null) return insertBreak();
|
|
25
|
-
const [
|
|
45
|
+
const [blockquoteEntry] = _slate.Editor.nodes(editor, {
|
|
26
46
|
match: n => _slate.Element.isElement(n) && n.type === _elementTypes.BLOCKQUOTE,
|
|
27
47
|
universal: true
|
|
28
48
|
});
|
|
29
|
-
if (!
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
if (!blockquoteEntry) return insertBreak();
|
|
50
|
+
|
|
51
|
+
// blockquote > paragraph
|
|
52
|
+
// blockquote > check_list_item
|
|
53
|
+
// blockquote > list > list_item
|
|
54
|
+
const currentLineEntry = getCurrentLineEntry(newEditor);
|
|
55
|
+
if (!currentLineEntry) return insertBreak();
|
|
56
|
+
|
|
57
|
+
// handle this case by list plugin
|
|
58
|
+
const currentLineType = currentLineEntry[0].type;
|
|
59
|
+
if (_constant.LIST_TYPES.includes(currentLineType) || currentLineType === _elementTypes.CHECK_LIST_ITEM) {
|
|
60
|
+
insertBreak();
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
const isEmptyLine = _slate.Node.string(currentLineEntry[0]).length === 0;
|
|
64
|
+
const isFirst = (0, _core.isFirstChild)(blockquoteEntry, currentLineEntry[1]);
|
|
65
|
+
if (isEmptyLine && isFirst && blockquoteEntry[0].children.length === 1) {
|
|
66
|
+
_slate.Transforms.unwrapNodes(editor, {
|
|
67
|
+
mode: 'highest',
|
|
68
|
+
match: n => _slate.Element.isElement(n) && _slate.Editor.isBlock(editor, n)
|
|
69
|
+
});
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
const isLast = (0, _core.isLastChild)(blockquoteEntry, currentLineEntry);
|
|
73
|
+
if (isEmptyLine && isLast) {
|
|
74
|
+
const nextPath = _slate.Path.next(blockquoteEntry[1]);
|
|
75
|
+
_slate.Transforms.moveNodes(newEditor, {
|
|
76
|
+
at: currentLineEntry[1],
|
|
77
|
+
to: nextPath
|
|
78
|
+
});
|
|
79
|
+
return;
|
|
47
80
|
}
|
|
48
81
|
|
|
49
82
|
// In other cases, insert a newline
|
|
50
|
-
|
|
83
|
+
_slate.Transforms.insertNodes(newEditor, (0, _core.generateDefaultParagraph)(), {
|
|
84
|
+
at: newEditor.selection,
|
|
85
|
+
select: true
|
|
86
|
+
});
|
|
51
87
|
};
|
|
52
88
|
newEditor.deleteBackward = unit => {
|
|
53
89
|
const {
|
|
@@ -57,12 +93,29 @@ const withBlockquote = editor => {
|
|
|
57
93
|
deleteBackward(unit);
|
|
58
94
|
return;
|
|
59
95
|
}
|
|
60
|
-
const
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
96
|
+
const [blockquoteEntry] = _slate.Editor.nodes(editor, {
|
|
97
|
+
match: n => _slate.Element.isElement(n) && n.type === _elementTypes.BLOCKQUOTE,
|
|
98
|
+
universal: true
|
|
99
|
+
});
|
|
100
|
+
if (!blockquoteEntry) return deleteBackward(unit);
|
|
101
|
+
|
|
102
|
+
// blockquote > paragraph
|
|
103
|
+
// blockquote > check_list_item
|
|
104
|
+
// blockquote > list > list_item
|
|
105
|
+
const currentLineEntry = getCurrentLineEntry(editor);
|
|
106
|
+
if (!currentLineEntry) return deleteBackward(unit);
|
|
107
|
+
|
|
108
|
+
// handle this case by list plugin
|
|
109
|
+
const currentLineType = currentLineEntry[0].type;
|
|
110
|
+
if (_constant.LIST_TYPES.includes(currentLineType) || currentLineType === _elementTypes.CHECK_LIST_ITEM) {
|
|
111
|
+
deleteBackward(unit);
|
|
112
|
+
return;
|
|
113
|
+
}
|
|
114
|
+
const isEmptyLine = _slate.Node.string(currentLineEntry[0]).length === 0;
|
|
115
|
+
const isFirst = (0, _core.isFirstChild)(blockquoteEntry, currentLineEntry[1]);
|
|
116
|
+
if (isEmptyLine && isFirst && blockquoteEntry[0].children.length === 1) {
|
|
117
|
+
(0, _helpers.setBlockQuoteType)(editor, _elementTypes.PARAGRAPH);
|
|
118
|
+
return;
|
|
66
119
|
}
|
|
67
120
|
deleteBackward(unit);
|
|
68
121
|
};
|
|
@@ -103,7 +103,7 @@ var _table = _interopRequireDefault(require("./table"));
|
|
|
103
103
|
var _formula = _interopRequireDefault(require("./formula"));
|
|
104
104
|
var _column = _interopRequireDefault(require("./column"));
|
|
105
105
|
var _markdown = _interopRequireDefault(require("./markdown"));
|
|
106
|
-
const Plugins = [
|
|
106
|
+
const Plugins = [_paragraph.default, _textStyle.default, _header.default, _image.default, _link.default, _codeBlock.default, _checkList.default, _list.default, _table.default, _blockquote.default, _formula.default, _markdown.default, _column.default,
|
|
107
107
|
// put at the end
|
|
108
108
|
_nodeId.default];
|
|
109
109
|
var _default = exports.default = Plugins;
|
|
@@ -22,27 +22,6 @@ const withParagraph = editor => {
|
|
|
22
22
|
}
|
|
23
23
|
const selectedParagraphNodeEntry = (0, _core.getSelectedNodeEntryByType)(newEditor, _elementTypes.PARAGRAPH);
|
|
24
24
|
if (selectedParagraphNodeEntry) {
|
|
25
|
-
const isCollapsed = _slate.Range.isCollapsed(selection);
|
|
26
|
-
const isCursorAtStartOfLine = (0, _core.isStartPoint)(editor, selection.anchor, selection);
|
|
27
|
-
const previousNodeEntry = (0, _core.getPrevNode)(newEditor);
|
|
28
|
-
const isCheckListAtPrevious = previousNodeEntry && previousNodeEntry[0].type === _elementTypes.CHECK_LIST_ITEM;
|
|
29
|
-
// If cursor is at start of line and previous node is check list,remove the paragraph
|
|
30
|
-
// instead of delete backward, which fix the bug that the check list will be removed when user
|
|
31
|
-
// press backspace at start of line.
|
|
32
|
-
if (isCollapsed && isCursorAtStartOfLine && isCheckListAtPrevious) {
|
|
33
|
-
const focusPoint = _slate.Editor.end(newEditor, previousNodeEntry[1]);
|
|
34
|
-
const selectedParagraphText = _slate.Node.string(selectedParagraphNodeEntry[0]);
|
|
35
|
-
const checkListText = _slate.Node.string(previousNodeEntry[0]);
|
|
36
|
-
const newCheckListText = checkListText + selectedParagraphText;
|
|
37
|
-
_slate.Transforms.insertText(newEditor, newCheckListText, {
|
|
38
|
-
at: previousNodeEntry[1]
|
|
39
|
-
});
|
|
40
|
-
_slate.Transforms.removeNodes(newEditor, {
|
|
41
|
-
at: selectedParagraphNodeEntry[1]
|
|
42
|
-
});
|
|
43
|
-
_slate.Transforms.select(newEditor, focusPoint);
|
|
44
|
-
return;
|
|
45
|
-
}
|
|
46
25
|
if (_slate.Node.string(selectedParagraphNodeEntry[0]) === '') {
|
|
47
26
|
const previousNodeEntry = (0, _core.getPrevNode)(newEditor);
|
|
48
27
|
if (previousNodeEntry && previousNodeEntry[0].type === _elementTypes.TABLE_CELL) {
|
|
@@ -101,6 +101,7 @@ const Toolbar = _ref => {
|
|
|
101
101
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
102
102
|
className: "iconfont icon-use-help"
|
|
103
103
|
})), isShowHelpModal && /*#__PURE__*/_react.default.createElement(_shortcutDialog.default, {
|
|
104
|
+
isRichEditor: isRichEditor,
|
|
104
105
|
toggleShortcutDialog: onHelpIconToggle
|
|
105
106
|
}));
|
|
106
107
|
};
|
|
@@ -38,7 +38,8 @@ class KeyboardShortcuts extends _react.default.PureComponent {
|
|
|
38
38
|
render() {
|
|
39
39
|
let {
|
|
40
40
|
t,
|
|
41
|
-
toggleShortcutDialog
|
|
41
|
+
toggleShortcutDialog,
|
|
42
|
+
isRichEditor
|
|
42
43
|
} = this.props;
|
|
43
44
|
const userHelp = t('userHelp', {
|
|
44
45
|
returnObjects: true
|
|
@@ -95,7 +96,7 @@ class KeyboardShortcuts extends _react.default.PureComponent {
|
|
|
95
96
|
className: "col-4"
|
|
96
97
|
}, this.renderShortcut(['***italic***', 'space']), this.renderShortcut(['___italic___', 'space'])), /*#__PURE__*/_react.default.createElement("div", {
|
|
97
98
|
className: "col-8"
|
|
98
|
-
}, t(userHelpData[6].shortcutData['
|
|
99
|
+
}, t(userHelpData[6].shortcutData['Italic_bold']))), this.renderContainer(['`code`', 'space'], t(userHelpData[6].shortcutData['Inline_code']))), /*#__PURE__*/_react.default.createElement("div", {
|
|
99
100
|
className: "pb-2"
|
|
100
101
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
101
102
|
className: "keyboard-shortcut-title pb-1"
|
|
@@ -109,11 +110,11 @@ class KeyboardShortcuts extends _react.default.PureComponent {
|
|
|
109
110
|
className: "pb-2"
|
|
110
111
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
111
112
|
className: "keyboard-shortcut-title pb-1"
|
|
112
|
-
}, t(userHelpData[3]['shortcutType'])), this.renderContainer(['>', 'space'], t(userHelpData[3].shortcutData['
|
|
113
|
+
}, t(userHelpData[3]['shortcutType'])), this.renderContainer(['>', 'space'], t(userHelpData[3].shortcutData['Make_block_quote'])), this.renderContainer(['Enter'], t(userHelpData[3].shortcutData['Escape_block_quote']))), /*#__PURE__*/_react.default.createElement("div", {
|
|
113
114
|
className: "pb-2"
|
|
114
115
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
115
116
|
className: "keyboard-shortcut-title pb-1"
|
|
116
|
-
}, t(userHelpData[4]['shortcutType'])), this.renderContainer(['Enter'], t(userHelpData[4].shortcutData['
|
|
117
|
+
}, t(userHelpData[4]['shortcutType'])), this.renderContainer(['Enter'], t(userHelpData[4].shortcutData['Insert_table_row'])), this.renderContainer([controlKey, 'Enter'], t(userHelpData[4].shortcutData['Escape_table']))), isRichEditor && /*#__PURE__*/_react.default.createElement("div", {
|
|
117
118
|
className: "pb-2"
|
|
118
119
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
119
120
|
className: "keyboard-shortcut-title pb-1"
|
|
@@ -213,19 +213,38 @@ const transformCheckListItem = node => {
|
|
|
213
213
|
children,
|
|
214
214
|
checked
|
|
215
215
|
} = node;
|
|
216
|
-
|
|
216
|
+
if (children.length === 0) {
|
|
217
|
+
return {
|
|
218
|
+
id: _slugid.default.nice(),
|
|
219
|
+
type: _elementTypes.CHECK_LIST_ITEM,
|
|
220
|
+
checked: checked,
|
|
221
|
+
children: [transformNodeWithInlineChildren({})]
|
|
222
|
+
};
|
|
223
|
+
}
|
|
224
|
+
if (children.length === 1) {
|
|
225
|
+
return {
|
|
226
|
+
id: _slugid.default.nice(),
|
|
227
|
+
type: _elementTypes.CHECK_LIST_ITEM,
|
|
228
|
+
checked: checked,
|
|
229
|
+
children: children.map(child => transformNodeWithInlineChildren(child)).flat()
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
const [child, ...reset] = children;
|
|
233
|
+
const firstChild = {
|
|
217
234
|
id: _slugid.default.nice(),
|
|
218
235
|
type: _elementTypes.CHECK_LIST_ITEM,
|
|
219
236
|
checked: checked,
|
|
220
|
-
children:
|
|
237
|
+
children: transformNodeWithInlineChildren(child)
|
|
221
238
|
};
|
|
239
|
+
const resetChildren = formatMdToSlate(reset);
|
|
240
|
+
return [firstChild, ...resetChildren];
|
|
222
241
|
};
|
|
223
242
|
exports.transformCheckListItem = transformCheckListItem;
|
|
224
243
|
const transformCheckList = node => {
|
|
225
244
|
const {
|
|
226
245
|
children
|
|
227
246
|
} = node;
|
|
228
|
-
return children.map(child => transformCheckListItem(child));
|
|
247
|
+
return children.map(child => transformCheckListItem(child)).flat();
|
|
229
248
|
};
|
|
230
249
|
exports.transformCheckList = transformCheckList;
|
|
231
250
|
const transformList = (node, hasParent) => {
|
package/package.json
CHANGED
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"Header_six": "Záhlaví 6",
|
|
11
11
|
"Paragraph": "Odstavec",
|
|
12
12
|
"Quote": "Citace",
|
|
13
|
-
"Ordered_list": "
|
|
14
|
-
"Unordered_list": "
|
|
15
|
-
"Check_list_item": "
|
|
16
|
-
"Insert_image": "
|
|
17
|
-
"Insert_formula": "
|
|
18
|
-
"Formula": "
|
|
19
|
-
"Insert_file": "
|
|
13
|
+
"Ordered_list": "Seřazený seznam",
|
|
14
|
+
"Unordered_list": "Neseřazený seznam",
|
|
15
|
+
"Check_list_item": "Check list item",
|
|
16
|
+
"Insert_image": "Insert image",
|
|
17
|
+
"Insert_formula": "Vložit vzorec",
|
|
18
|
+
"Formula": "Vzorec",
|
|
19
|
+
"Insert_file": "Insert file",
|
|
20
20
|
"Code": "Řádkový kód",
|
|
21
|
-
"Code_block": "
|
|
22
|
-
"Insert_link": "
|
|
23
|
-
"Insert_table": "
|
|
21
|
+
"Code_block": "Code block",
|
|
22
|
+
"Insert_link": "Insert link",
|
|
23
|
+
"Insert_table": "Insert table",
|
|
24
24
|
"Save": "Uložit",
|
|
25
25
|
"More": "Více",
|
|
26
26
|
"Invalid_url": "Chybná URL",
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"Cancel": "Storno",
|
|
31
31
|
"Switch_to_plain_text_editor": "Přepnout do textového editoru",
|
|
32
32
|
"Switch_to_rich_text_editor": "Přepnout do rozšířeného textového editoru",
|
|
33
|
-
"Switch_to_viewer": "
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Pomoc",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Sloupec",
|
|
37
37
|
"Row": "Řádek",
|
|
38
|
-
"Insert_row_before": "
|
|
39
|
-
"Insert_row_after": "
|
|
40
|
-
"Insert_column_before": "
|
|
41
|
-
"Insert_column_after": "
|
|
42
|
-
"Remove_row": "
|
|
43
|
-
"Remove_column": "
|
|
44
|
-
"Insert_row": "
|
|
45
|
-
"Insert_column": "
|
|
38
|
+
"Insert_row_before": "Vložit řádku před",
|
|
39
|
+
"Insert_row_after": "Vložit řádek za",
|
|
40
|
+
"Insert_column_before": "Vložit sloupec před",
|
|
41
|
+
"Insert_column_after": "Vložit sloupec za",
|
|
42
|
+
"Remove_row": "Odstranit řádek",
|
|
43
|
+
"Remove_column": "Odstranit sloupec",
|
|
44
|
+
"Insert_row": "Vložit řádek",
|
|
45
|
+
"Insert_column": "Vložit sloupec",
|
|
46
46
|
"Set_align": "Nastavit zarovnání",
|
|
47
47
|
"Left": "Vlevo",
|
|
48
48
|
"Center": "Střed",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"Insert_network_image": "Vložit síťový obrázek",
|
|
83
83
|
"Upload_local_image": "Nahrát lokální obrázek",
|
|
84
84
|
"Add_link": "Přidat odkaz",
|
|
85
|
-
"File_history": "
|
|
86
|
-
"History_version": "
|
|
85
|
+
"File_history": "File history",
|
|
86
|
+
"History_version": "History versions",
|
|
87
87
|
"Back_to_viewer": "Zpět na prohlížeč",
|
|
88
88
|
"Link_title": "Název odkazu",
|
|
89
89
|
"Local_draft": "Místní koncept",
|
|
@@ -91,15 +91,15 @@
|
|
|
91
91
|
"Delete_draft": "Smazat koncept",
|
|
92
92
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "Máte neuložený koncept. Chcete ho použít?",
|
|
93
93
|
"Local_draft_saved": "Místní koncept byl uložen",
|
|
94
|
-
"New_draft": "
|
|
95
|
-
"View_draft": "
|
|
94
|
+
"New_draft": "New draft",
|
|
95
|
+
"View_draft": "View draft",
|
|
96
96
|
"Publish": "Zveřejnit",
|
|
97
97
|
"This_file_has_a_draft": "Tento soubor má koncept.",
|
|
98
98
|
"Delete": "Smazat",
|
|
99
99
|
"Comments": "Komentáře",
|
|
100
100
|
"Add_a_comment": "Přidat komentář…",
|
|
101
101
|
"No_comment_yet": "Žádné komentáře",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Označit jako vyřešené",
|
|
103
103
|
"Ask_for_review": "Požádat o kontrolu",
|
|
104
104
|
"Review_already_exists": "Kontrola již existuje. ",
|
|
105
105
|
"View_review": "Zobrazit kontrolu",
|
|
@@ -131,16 +131,16 @@
|
|
|
131
131
|
"Insert_library_image": "Vložit obrázek knihovny",
|
|
132
132
|
"Size": "Velikost",
|
|
133
133
|
"Location": "Umístění",
|
|
134
|
-
"Last_update": "
|
|
134
|
+
"Last_update": "Poslední aktualizace",
|
|
135
135
|
"Tags": "Štítky",
|
|
136
136
|
"Add_participants": "Přidat účastníky",
|
|
137
|
-
"Clear_format": "
|
|
138
|
-
"Image_address_invalid": "
|
|
139
|
-
"Shortcut_help": "
|
|
140
|
-
"Link_address_required": "
|
|
141
|
-
"Link_address_invalid": "
|
|
142
|
-
"Link_title_required": "
|
|
143
|
-
"Blank_title_not_allowed": "
|
|
137
|
+
"Clear_format": "Jasný formát",
|
|
138
|
+
"Image_address_invalid": "Adresa obrázku je neplatná",
|
|
139
|
+
"Shortcut_help": "Zkratka nápovědy",
|
|
140
|
+
"Link_address_required": "Adresa odkazu je vyžadována",
|
|
141
|
+
"Link_address_invalid": "Adresa odkazu je neplatná",
|
|
142
|
+
"Link_title_required": "Název odkazu je vyžadován",
|
|
143
|
+
"Blank_title_not_allowed": "Prázdný název není povolen",
|
|
144
144
|
"userHelp": {
|
|
145
145
|
"title": "Klávesové zkratky",
|
|
146
146
|
"userHelpData": [
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Seznam zkratek",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Vytvořit seznam",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Vložit novou položku",
|
|
153
153
|
"Insert_child_in_item": "Vložit podpoložku",
|
|
154
154
|
"Increase_depth": "Zvýšit hloubku"
|
|
@@ -177,21 +177,21 @@
|
|
|
177
177
|
{
|
|
178
178
|
"shortcutType": "Zkratky bloku citace",
|
|
179
179
|
"shortcutData": {
|
|
180
|
-
"Make_block_quote": "
|
|
181
|
-
"Escape_block_quote": "
|
|
180
|
+
"Make_block_quote": "Vytvořit blokovou citaci",
|
|
181
|
+
"Escape_block_quote": "Opustit blokovou citaci"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"shortcutType": "Zkratky tabulky",
|
|
186
186
|
"shortcutData": {
|
|
187
|
-
"Insert_table_row": "
|
|
187
|
+
"Insert_table_row": "Vložit řádku tabulky",
|
|
188
188
|
"Escape_table": "Opustit tabulku"
|
|
189
189
|
}
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"shortcutType": "Zkratky vzorečku",
|
|
193
193
|
"shortcutData": {
|
|
194
|
-
"Insert_formula": "
|
|
194
|
+
"Insert_formula": "Vložit vzorec"
|
|
195
195
|
}
|
|
196
196
|
},
|
|
197
197
|
{
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"shortcutData": {
|
|
200
200
|
"Bold": "Tučně",
|
|
201
201
|
"Italic": "Kurzíva",
|
|
202
|
-
"Italic_bold": "
|
|
202
|
+
"Italic_bold": "Tučná kurzíva",
|
|
203
203
|
"Inline_code": "Řádkový kód"
|
|
204
204
|
}
|
|
205
205
|
},
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
}
|
|
219
219
|
]
|
|
220
220
|
},
|
|
221
|
-
"Select_field": "
|
|
222
|
-
"Font_style": "
|
|
221
|
+
"Select_field": "Vyberte pole",
|
|
222
|
+
"Font_style": "Styl písma",
|
|
223
223
|
"Open_link": "Open link"
|
|
224
224
|
}
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
"Quote": "Blockquote",
|
|
13
13
|
"Ordered_list": "Nummerierte Liste",
|
|
14
14
|
"Unordered_list": "Ungeordnete Liste",
|
|
15
|
-
"Check_list_item": "
|
|
16
|
-
"Insert_image": "
|
|
15
|
+
"Check_list_item": "Check list item",
|
|
16
|
+
"Insert_image": "Insert image",
|
|
17
17
|
"Insert_formula": "Formel einfügen",
|
|
18
18
|
"Formula": "Formel",
|
|
19
|
-
"Insert_file": "
|
|
19
|
+
"Insert_file": "Insert file",
|
|
20
20
|
"Code": "Inline-Code",
|
|
21
|
-
"Code_block": "
|
|
22
|
-
"Insert_link": "
|
|
23
|
-
"Insert_table": "
|
|
21
|
+
"Code_block": "Code block",
|
|
22
|
+
"Insert_link": "Insert link",
|
|
23
|
+
"Insert_table": "Insert table",
|
|
24
24
|
"Save": "Speichern",
|
|
25
25
|
"More": "Mehr",
|
|
26
26
|
"Invalid_url": "Ungültige Adresse",
|
|
@@ -28,21 +28,21 @@
|
|
|
28
28
|
"Image_address": "Bild-URL",
|
|
29
29
|
"Submit": "Speichern",
|
|
30
30
|
"Cancel": "Abbrechen",
|
|
31
|
-
"Switch_to_plain_text_editor": "Zum
|
|
32
|
-
"Switch_to_rich_text_editor": "Zum
|
|
33
|
-
"Switch_to_viewer": "
|
|
31
|
+
"Switch_to_plain_text_editor": "Zum reinen Texteditor wechseln",
|
|
32
|
+
"Switch_to_rich_text_editor": "Zum Editor mit Formatierungen wechseln",
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Hilfe",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Spalte",
|
|
37
37
|
"Row": "Zeile",
|
|
38
|
-
"Insert_row_before": "
|
|
39
|
-
"Insert_row_after": "
|
|
40
|
-
"Insert_column_before": "
|
|
41
|
-
"Insert_column_after": "
|
|
42
|
-
"Remove_row": "
|
|
43
|
-
"Remove_column": "
|
|
44
|
-
"Insert_row": "
|
|
45
|
-
"Insert_column": "
|
|
38
|
+
"Insert_row_before": "Zeile darüber einfügen",
|
|
39
|
+
"Insert_row_after": "Zeile darunter einfügen",
|
|
40
|
+
"Insert_column_before": "Spalte links einfügen",
|
|
41
|
+
"Insert_column_after": "Spalte rechts einfügen",
|
|
42
|
+
"Remove_row": "Zeile entfernen",
|
|
43
|
+
"Remove_column": "Spalte entfernen",
|
|
44
|
+
"Insert_row": "Zeile einfügen",
|
|
45
|
+
"Insert_column": "Spalte einfügen",
|
|
46
46
|
"Set_align": "Ausrichtung festlegen",
|
|
47
47
|
"Left": "Links",
|
|
48
48
|
"Center": "Zentrieren",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"Edit": "Bearbeiten",
|
|
56
56
|
"Copy": "Kopieren",
|
|
57
57
|
"Copied": "Kopiert",
|
|
58
|
-
"Internal_link": "
|
|
58
|
+
"Internal_link": "Interner Link",
|
|
59
59
|
"Copy_internal_link": "Der interne Link wurde in den Zwischenspeicher kopiert.",
|
|
60
60
|
"Internal_link_desc": "Interne Links sind Verweise auf Dateien bzw. Ordner, die nur von Benutzer/innen mit mindestens Leserechten für die Dateien bzw. Ordner genutzt werden können. Interne Links eignen sich insbesondere für die interne Kommunikation in Ticket-/CRM-Systemen sowie E-Mails und Chats.",
|
|
61
61
|
"Share": "Freigeben",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"Insert_network_image": "Bild per URL einfügen",
|
|
83
83
|
"Upload_local_image": "Bild hochladen und einfügen",
|
|
84
84
|
"Add_link": "Link hinzufügen",
|
|
85
|
-
"File_history": "
|
|
86
|
-
"History_version": "
|
|
85
|
+
"File_history": "File history",
|
|
86
|
+
"History_version": "History versions",
|
|
87
87
|
"Back_to_viewer": "Zurück zur Vorschau",
|
|
88
88
|
"Link_title": "Linktext",
|
|
89
89
|
"Local_draft": "Lokaler Entwurf",
|
|
@@ -91,15 +91,15 @@
|
|
|
91
91
|
"Delete_draft": "Entwurf löschen",
|
|
92
92
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "Es gibt einen ungespeicherten Entwurf. Möchten Sie ihn verwenden?",
|
|
93
93
|
"Local_draft_saved": "Lokaler Entwurf gespeichert",
|
|
94
|
-
"New_draft": "
|
|
95
|
-
"View_draft": "
|
|
94
|
+
"New_draft": "New draft",
|
|
95
|
+
"View_draft": "View draft",
|
|
96
96
|
"Publish": "Veröffentlichen",
|
|
97
97
|
"This_file_has_a_draft": "Zu dieser Datei gibt es einen Entwurf.",
|
|
98
98
|
"Delete": "Löschen",
|
|
99
99
|
"Comments": "Kommentare",
|
|
100
100
|
"Add_a_comment": "Kommentar einfügen",
|
|
101
101
|
"No_comment_yet": "Keine Kommentare vorhanden",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Als erledigt markieren",
|
|
103
103
|
"Ask_for_review": "Um ein Review bitten",
|
|
104
104
|
"Review_already_exists": "Es gibt bereits ein Review.",
|
|
105
105
|
"View_review": "Review anzeigen",
|
|
@@ -131,16 +131,16 @@
|
|
|
131
131
|
"Insert_library_image": "Bild aus Bibliothek einfügen",
|
|
132
132
|
"Size": "Größe",
|
|
133
133
|
"Location": "Ort",
|
|
134
|
-
"Last_update": "
|
|
134
|
+
"Last_update": "Letzte Änderung",
|
|
135
135
|
"Tags": "Tags",
|
|
136
136
|
"Add_participants": "Teilnehmer hinzufügen",
|
|
137
|
-
"Clear_format": "
|
|
138
|
-
"Image_address_invalid": "
|
|
137
|
+
"Clear_format": "Formatierung löschen",
|
|
138
|
+
"Image_address_invalid": "Die Adresse des Bildes ist ungültig.",
|
|
139
139
|
"Shortcut_help": "Hilfe Tastenkombinationen",
|
|
140
|
-
"Link_address_required": "Link
|
|
141
|
-
"Link_address_invalid": "Link
|
|
142
|
-
"Link_title_required": "Link
|
|
143
|
-
"Blank_title_not_allowed": "
|
|
140
|
+
"Link_address_required": "Eine Link-Adresse ist erforderlich.",
|
|
141
|
+
"Link_address_invalid": "Die Link-Adresse ist ungültig.",
|
|
142
|
+
"Link_title_required": "Ein Link-Titel ist erforderlich.",
|
|
143
|
+
"Blank_title_not_allowed": "Ein leerer Titel ist nicht erlaubt.",
|
|
144
144
|
"userHelp": {
|
|
145
145
|
"title": "Tastenkombinationen",
|
|
146
146
|
"userHelpData": [
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Listen",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Ungeordnete Liste anlegen",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Neues Listenelement einfügen",
|
|
153
153
|
"Insert_child_in_item": "Textzeile einfügen",
|
|
154
154
|
"Increase_depth": "Einzug erhöhen"
|
|
@@ -177,21 +177,21 @@
|
|
|
177
177
|
{
|
|
178
178
|
"shortcutType": "Blockquote",
|
|
179
179
|
"shortcutData": {
|
|
180
|
-
"Make_block_quote": "
|
|
181
|
-
"Escape_block_quote": "
|
|
180
|
+
"Make_block_quote": "Blockquote einfügen",
|
|
181
|
+
"Escape_block_quote": "Blockquote beenden"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"shortcutType": "Tabellen",
|
|
186
186
|
"shortcutData": {
|
|
187
|
-
"Insert_table_row": "
|
|
187
|
+
"Insert_table_row": "Tabellenzeile einfügen",
|
|
188
188
|
"Escape_table": "Tabelle beenden"
|
|
189
189
|
}
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"shortcutType": "Formeln",
|
|
193
193
|
"shortcutData": {
|
|
194
|
-
"Insert_formula": "
|
|
194
|
+
"Insert_formula": "Formel einfügen"
|
|
195
195
|
}
|
|
196
196
|
},
|
|
197
197
|
{
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"shortcutData": {
|
|
200
200
|
"Bold": "Fett",
|
|
201
201
|
"Italic": "Kursiv",
|
|
202
|
-
"Italic_bold": "
|
|
202
|
+
"Italic_bold": "Kursiv fett",
|
|
203
203
|
"Inline_code": "Inline-Code"
|
|
204
204
|
}
|
|
205
205
|
},
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
}
|
|
219
219
|
]
|
|
220
220
|
},
|
|
221
|
-
"Select_field": "
|
|
222
|
-
"Font_style": "
|
|
221
|
+
"Select_field": "Feld auswählen",
|
|
222
|
+
"Font_style": "Schriftschnitt",
|
|
223
223
|
"Open_link": "Open link"
|
|
224
224
|
}
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"Header_six": "Heading 6",
|
|
11
11
|
"Paragraph": "Paragraph",
|
|
12
12
|
"Quote": "Quote",
|
|
13
|
-
"Ordered_list": "Ordered
|
|
14
|
-
"Unordered_list": "Unordered
|
|
15
|
-
"Check_list_item": "Check
|
|
16
|
-
"Insert_image": "Insert
|
|
17
|
-
"Insert_formula": "Insert
|
|
13
|
+
"Ordered_list": "Ordered list",
|
|
14
|
+
"Unordered_list": "Unordered list",
|
|
15
|
+
"Check_list_item": "Check list item",
|
|
16
|
+
"Insert_image": "Insert image",
|
|
17
|
+
"Insert_formula": "Insert formula",
|
|
18
18
|
"Formula": "Formula",
|
|
19
|
-
"Insert_file": "Insert
|
|
20
|
-
"Code": "Inline
|
|
21
|
-
"Code_block": "Code
|
|
22
|
-
"Insert_link": "Insert
|
|
23
|
-
"Insert_table": "Insert
|
|
19
|
+
"Insert_file": "Insert file",
|
|
20
|
+
"Code": "Inline code",
|
|
21
|
+
"Code_block": "Code block",
|
|
22
|
+
"Insert_link": "Insert link",
|
|
23
|
+
"Insert_table": "Insert table",
|
|
24
24
|
"Save": "Save",
|
|
25
25
|
"More": "More",
|
|
26
26
|
"Invalid_url": "Invalid URL",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"Image_address": "Image address",
|
|
29
29
|
"Submit": "Submit",
|
|
30
30
|
"Cancel": "Cancel",
|
|
31
|
-
"Switch_to_plain_text_editor": "Switch to
|
|
32
|
-
"Switch_to_rich_text_editor": "Switch to
|
|
33
|
-
"Switch_to_viewer": "Switch to
|
|
31
|
+
"Switch_to_plain_text_editor": "Switch to plain text editor",
|
|
32
|
+
"Switch_to_rich_text_editor": "Switch to rich text editor",
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Help",
|
|
35
|
-
"Remove_table": "Remove
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Column",
|
|
37
37
|
"Row": "Row",
|
|
38
38
|
"Insert_row_before": "Insert row before",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"Edit": "Edit",
|
|
56
56
|
"Copy": "Copy",
|
|
57
57
|
"Copied": "Copied",
|
|
58
|
-
"Internal_link": "Internal
|
|
58
|
+
"Internal_link": "Internal link",
|
|
59
59
|
"Copy_internal_link": "Internal link has been copied to clipboard",
|
|
60
60
|
"Internal_link_desc": "An internal link is a link to a file or folder that can be accessed by users with read permission to the file or folder.",
|
|
61
61
|
"Share": "Share",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"Insert_network_image": "Insert network image",
|
|
83
83
|
"Upload_local_image": "Upload local image",
|
|
84
84
|
"Add_link": "Add link",
|
|
85
|
-
"File_history": "File
|
|
86
|
-
"History_version": "History
|
|
85
|
+
"File_history": "File history",
|
|
86
|
+
"History_version": "History versions",
|
|
87
87
|
"Back_to_viewer": "Back To Viewer",
|
|
88
88
|
"Link_title": "Link title",
|
|
89
89
|
"Local_draft": "Local draft",
|
|
@@ -91,20 +91,20 @@
|
|
|
91
91
|
"Delete_draft": "Delete draft",
|
|
92
92
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "You have an unsaved draft. Do you like to use it?",
|
|
93
93
|
"Local_draft_saved": "Local draft saved",
|
|
94
|
-
"New_draft": "New
|
|
95
|
-
"View_draft": "View
|
|
94
|
+
"New_draft": "New draft",
|
|
95
|
+
"View_draft": "View draft",
|
|
96
96
|
"Publish": "Publish",
|
|
97
97
|
"This_file_has_a_draft": "This file has a draft.",
|
|
98
98
|
"Delete": "Delete",
|
|
99
99
|
"Comments": "Comments",
|
|
100
100
|
"Add_a_comment": "Add a comment...",
|
|
101
101
|
"No_comment_yet": "No comment yet.",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Mark as resolved",
|
|
103
103
|
"Ask_for_review": "Ask for review",
|
|
104
104
|
"Review_already_exists": "Review already exists",
|
|
105
105
|
"View_review": "View review",
|
|
106
106
|
"There_is_an_associated_review_with_this_file": "There is an associated review with this file.",
|
|
107
|
-
"Start_review": "Start
|
|
107
|
+
"Start_review": "Start review",
|
|
108
108
|
"This_file_is_in_draft_stage": "This file is in draft stage.",
|
|
109
109
|
"This_file_is_in_review_stage": "This file is in review stage.",
|
|
110
110
|
"This_file_has_been_updated": "This file has been updated.",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "List shortcuts",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Make list",
|
|
151
|
-
"Make_ordered_list": "Make
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Insert new item",
|
|
153
153
|
"Insert_child_in_item": "Insert child in item",
|
|
154
154
|
"Increase_depth": "Increase depth"
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"Header_six": "Encabezado 6",
|
|
11
11
|
"Paragraph": "Párrafo",
|
|
12
12
|
"Quote": "Cita",
|
|
13
|
-
"Ordered_list": "Lista
|
|
14
|
-
"Unordered_list": "Lista
|
|
15
|
-
"Check_list_item": "Check
|
|
16
|
-
"Insert_image": "
|
|
17
|
-
"Insert_formula": "
|
|
13
|
+
"Ordered_list": "Lista ordenada",
|
|
14
|
+
"Unordered_list": "Lista desordenada",
|
|
15
|
+
"Check_list_item": "Check list item",
|
|
16
|
+
"Insert_image": "Insert image",
|
|
17
|
+
"Insert_formula": "Insert formula",
|
|
18
18
|
"Formula": "Fórmula",
|
|
19
|
-
"Insert_file": "
|
|
20
|
-
"Code": "Inline
|
|
21
|
-
"Code_block": "
|
|
22
|
-
"Insert_link": "
|
|
23
|
-
"Insert_table": "
|
|
19
|
+
"Insert_file": "Insert file",
|
|
20
|
+
"Code": "Inline code",
|
|
21
|
+
"Code_block": "Code block",
|
|
22
|
+
"Insert_link": "Insert link",
|
|
23
|
+
"Insert_table": "Insert table",
|
|
24
24
|
"Save": "Guardar",
|
|
25
25
|
"More": "Más",
|
|
26
26
|
"Invalid_url": "URL Inválida",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Cancel": "Cancelar",
|
|
31
31
|
"Switch_to_plain_text_editor": "Cambiar a editor de texto sin formato",
|
|
32
32
|
"Switch_to_rich_text_editor": "Cambiar a editor de texto enriquecido",
|
|
33
|
-
"Switch_to_viewer": "
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Ayuda",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Columna",
|
|
37
37
|
"Row": "Fila",
|
|
38
38
|
"Insert_row_before": "Insert row before",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"Insert_network_image": "Insertar imágen desde la red",
|
|
83
83
|
"Upload_local_image": "Subir imagen local",
|
|
84
84
|
"Add_link": "Agregar enlace",
|
|
85
|
-
"File_history": "
|
|
86
|
-
"History_version": "
|
|
85
|
+
"File_history": "File history",
|
|
86
|
+
"History_version": "History versions",
|
|
87
87
|
"Back_to_viewer": "Volver al Visualizador",
|
|
88
88
|
"Link_title": "Título del enlace",
|
|
89
89
|
"Local_draft": "Borrador local",
|
|
@@ -91,15 +91,15 @@
|
|
|
91
91
|
"Delete_draft": "Eliminar borrador",
|
|
92
92
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "Tienes un borrador sin guardar. ¿Deseas utilizarlo?",
|
|
93
93
|
"Local_draft_saved": "Borrador local guardado",
|
|
94
|
-
"New_draft": "
|
|
95
|
-
"View_draft": "
|
|
94
|
+
"New_draft": "New draft",
|
|
95
|
+
"View_draft": "View draft",
|
|
96
96
|
"Publish": "Publicar",
|
|
97
97
|
"This_file_has_a_draft": "Este archivo tiene un borrador",
|
|
98
98
|
"Delete": "Borrar",
|
|
99
99
|
"Comments": "Comentarios",
|
|
100
100
|
"Add_a_comment": "Agregar un comentario...",
|
|
101
101
|
"No_comment_yet": "No hay comentarios.",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Marcar como resuelto",
|
|
103
103
|
"Ask_for_review": "Solicitar revisión",
|
|
104
104
|
"Review_already_exists": "La revisión ya existe",
|
|
105
105
|
"View_review": "Ver revisión",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Listar atajos",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Crear lista",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Insertar nuevo ítem",
|
|
153
153
|
"Insert_child_in_item": "Insert child in item",
|
|
154
154
|
"Increase_depth": "Increase depth"
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"Header_six": "Titre 6",
|
|
11
11
|
"Paragraph": "Paragraphe",
|
|
12
12
|
"Quote": "Blockquote",
|
|
13
|
-
"Ordered_list": "Liste
|
|
14
|
-
"Unordered_list": "Liste non
|
|
15
|
-
"Check_list_item": "
|
|
16
|
-
"Insert_image": "
|
|
13
|
+
"Ordered_list": "Liste ordonnée",
|
|
14
|
+
"Unordered_list": "Liste non ordonnée",
|
|
15
|
+
"Check_list_item": "Élément de la liste de vérification",
|
|
16
|
+
"Insert_image": "Insérer une image",
|
|
17
17
|
"Insert_formula": "Insérer formule",
|
|
18
18
|
"Formula": "Formule",
|
|
19
|
-
"Insert_file": "
|
|
19
|
+
"Insert_file": "Insérer un fichier",
|
|
20
20
|
"Code": "Ligne de code",
|
|
21
21
|
"Code_block": "Bloc de code",
|
|
22
|
-
"Insert_link": "
|
|
23
|
-
"Insert_table": "
|
|
22
|
+
"Insert_link": "Insérer un lien",
|
|
23
|
+
"Insert_table": "Insérer un tableau",
|
|
24
24
|
"Save": "Sauvegarder",
|
|
25
25
|
"More": "Plus",
|
|
26
26
|
"Invalid_url": "L'adresse n'est pas valide.",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"Submit": "Soummettre",
|
|
30
30
|
"Cancel": "Annuler",
|
|
31
31
|
"Switch_to_plain_text_editor": "Basculer en éditeur de texte plein",
|
|
32
|
-
"Switch_to_rich_text_editor": "Basculer en éditeur de texte
|
|
33
|
-
"Switch_to_viewer": "
|
|
32
|
+
"Switch_to_rich_text_editor": "Basculer en éditeur de texte enrichi",
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Aide",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Colonne",
|
|
37
37
|
"Row": "Ligne",
|
|
38
38
|
"Insert_row_before": "Insert row before",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"Edit": "Modifier",
|
|
56
56
|
"Copy": "Copier",
|
|
57
57
|
"Copied": "Copié",
|
|
58
|
-
"Internal_link": "
|
|
58
|
+
"Internal_link": "Lien interne",
|
|
59
59
|
"Copy_internal_link": "Le lien interne a été copié dans le presse-papiers.",
|
|
60
60
|
"Internal_link_desc": "Un lien interne est un lien vers un fichier ou un dossier accessible en lecture par un utilisateur.",
|
|
61
61
|
"Share": "Partager",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"Insert_network_image": "Insérer une image du réseau",
|
|
83
83
|
"Upload_local_image": "Insérer une image locale",
|
|
84
84
|
"Add_link": "Ajouter un lien",
|
|
85
|
-
"File_history": "
|
|
85
|
+
"File_history": "Historique du fichier",
|
|
86
86
|
"History_version": "Historique des versions",
|
|
87
87
|
"Back_to_viewer": "Retour au visualiseur",
|
|
88
88
|
"Link_title": "Titre du lien",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"Comments": "Commentaires",
|
|
100
100
|
"Add_a_comment": "Ajouter un commentaire",
|
|
101
101
|
"No_comment_yet": "Aucun commentaire disponible",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Marqué comme résolu",
|
|
103
103
|
"Ask_for_review": "Demande d'un avis",
|
|
104
104
|
"Review_already_exists": "Un avis existe déjà.",
|
|
105
105
|
"View_review": "Voir l'avis",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Liste des raccourcis",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Faire une liste",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Insérer un nouvel élément",
|
|
153
153
|
"Insert_child_in_item": "Insérer enfant dans l'élément",
|
|
154
154
|
"Increase_depth": "Améliorer la profondeur"
|
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
"Header_six": "Intestazione 6",
|
|
11
11
|
"Paragraph": "Paragrafo",
|
|
12
12
|
"Quote": "Citazione",
|
|
13
|
-
"Ordered_list": "
|
|
14
|
-
"Unordered_list": "
|
|
15
|
-
"Check_list_item": "
|
|
16
|
-
"Insert_image": "
|
|
17
|
-
"Insert_formula": "Insert
|
|
13
|
+
"Ordered_list": "Elenco Ordiniato",
|
|
14
|
+
"Unordered_list": "Elenco non ordinato",
|
|
15
|
+
"Check_list_item": "Check list item",
|
|
16
|
+
"Insert_image": "Insert image",
|
|
17
|
+
"Insert_formula": "Insert formula",
|
|
18
18
|
"Formula": "Formula",
|
|
19
|
-
"Insert_file": "Insert
|
|
19
|
+
"Insert_file": "Insert file",
|
|
20
20
|
"Code": "Codice in linea",
|
|
21
|
-
"Code_block": "
|
|
22
|
-
"Insert_link": "
|
|
23
|
-
"Insert_table": "
|
|
21
|
+
"Code_block": "Code block",
|
|
22
|
+
"Insert_link": "Insert link",
|
|
23
|
+
"Insert_table": "Insert table",
|
|
24
24
|
"Save": "Salvare",
|
|
25
25
|
"More": "Altro",
|
|
26
26
|
"Invalid_url": "URL non valida",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"Image_address": "Indirizzo Immagine",
|
|
29
29
|
"Submit": "Invia",
|
|
30
30
|
"Cancel": "Annulla",
|
|
31
|
-
"Switch_to_plain_text_editor": "
|
|
32
|
-
"Switch_to_rich_text_editor": "
|
|
33
|
-
"Switch_to_viewer": "
|
|
31
|
+
"Switch_to_plain_text_editor": "Switch to plain text editor",
|
|
32
|
+
"Switch_to_rich_text_editor": "Switch to rich text editor",
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Aiuto",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Colonna",
|
|
37
37
|
"Row": "Riga",
|
|
38
38
|
"Insert_row_before": "Insert row before",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"Edit": "Modifica",
|
|
56
56
|
"Copy": "Copia",
|
|
57
57
|
"Copied": "Copiato",
|
|
58
|
-
"Internal_link": "Collegamento
|
|
58
|
+
"Internal_link": "Collegamento Interno",
|
|
59
59
|
"Copy_internal_link": "Il collegamento interno è stato copiato negli appunti",
|
|
60
60
|
"Internal_link_desc": "Un collegamento interno è un collegamento a un file o una cartella a cui gli utenti possono accedere con autorizzazione di lettura al file o alla cartella.",
|
|
61
61
|
"Share": "Condividi",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"Insert_network_image": "Inserisci immagine di rete",
|
|
83
83
|
"Upload_local_image": "Inserisci immagine locale",
|
|
84
84
|
"Add_link": "Aggiungi collegamento",
|
|
85
|
-
"File_history": "
|
|
86
|
-
"History_version": "
|
|
85
|
+
"File_history": "File history",
|
|
86
|
+
"History_version": "History versions",
|
|
87
87
|
"Back_to_viewer": "Torma alla vista",
|
|
88
88
|
"Link_title": "Link al titolo",
|
|
89
89
|
"Local_draft": "Bozza locale",
|
|
@@ -91,20 +91,20 @@
|
|
|
91
91
|
"Delete_draft": "Rimuovi Bozza",
|
|
92
92
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "Hai una bozza non salvata. La vuoi utilizzare?",
|
|
93
93
|
"Local_draft_saved": "Bozza salvata in locale",
|
|
94
|
-
"New_draft": "
|
|
95
|
-
"View_draft": "
|
|
94
|
+
"New_draft": "New draft",
|
|
95
|
+
"View_draft": "View draft",
|
|
96
96
|
"Publish": "Pubblica",
|
|
97
97
|
"This_file_has_a_draft": "Questo file è una bozza",
|
|
98
98
|
"Delete": "Elimina",
|
|
99
99
|
"Comments": "Commenti",
|
|
100
100
|
"Add_a_comment": "Aggiungi un commento...",
|
|
101
101
|
"No_comment_yet": "Ancora nessun commento.",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Contrassegnato come risolto",
|
|
103
103
|
"Ask_for_review": "Richiedi una revisione",
|
|
104
104
|
"Review_already_exists": "Revisione già esistente",
|
|
105
105
|
"View_review": "Visualizza revisione",
|
|
106
106
|
"There_is_an_associated_review_with_this_file": "C'è una recensione associata con questo file.",
|
|
107
|
-
"Start_review": "
|
|
107
|
+
"Start_review": "Start review",
|
|
108
108
|
"This_file_is_in_draft_stage": "Questo file è in fase di bozza.",
|
|
109
109
|
"This_file_is_in_review_stage": "Questo file è in fase di revisione.",
|
|
110
110
|
"This_file_has_been_updated": "Questo file è stato aggiornato.",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Elenca scorciatoie",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Crea elenco",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Inserisci un nuovo elemento",
|
|
153
153
|
"Insert_child_in_item": "Inserisci un elemento figlio sotto questo elemento",
|
|
154
154
|
"Increase_depth": "Aumenta la profondità"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"Quote": "Цитата",
|
|
13
13
|
"Ordered_list": "Нумерованный список",
|
|
14
14
|
"Unordered_list": "Маркированный список",
|
|
15
|
-
"Check_list_item": "
|
|
15
|
+
"Check_list_item": "Элемент контрольного списка",
|
|
16
16
|
"Insert_image": "Вставить изображение",
|
|
17
17
|
"Insert_formula": "Вставить формулу",
|
|
18
18
|
"Formula": "Формула",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Cancel": "Отменить",
|
|
31
31
|
"Switch_to_plain_text_editor": "Переключиться на обычный текстовый редактор",
|
|
32
32
|
"Switch_to_rich_text_editor": "Переключиться на визуальный редактор",
|
|
33
|
-
"Switch_to_viewer": "
|
|
33
|
+
"Switch_to_viewer": "Switch to markdown viewer",
|
|
34
34
|
"Help": "Помощь",
|
|
35
|
-
"Remove_table": "
|
|
35
|
+
"Remove_table": "Remove table",
|
|
36
36
|
"Column": "Столбец",
|
|
37
37
|
"Row": "Строка",
|
|
38
38
|
"Insert_row_before": "Вставить строку перед",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"Comments": "Комментарии",
|
|
100
100
|
"Add_a_comment": "Добавить комментарий...",
|
|
101
101
|
"No_comment_yet": "Комментариев пока нет.",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "Отметить как разрешённый",
|
|
103
103
|
"Ask_for_review": "Спросить отзыв",
|
|
104
104
|
"Review_already_exists": "Отзыв уже существует",
|
|
105
105
|
"View_review": "Просмотр отзыва",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"shortcutType": "Список горячих клавиш",
|
|
149
149
|
"shortcutData": {
|
|
150
150
|
"Make_list": "Создать список",
|
|
151
|
-
"Make_ordered_list": "
|
|
151
|
+
"Make_ordered_list": "Make ordered list",
|
|
152
152
|
"Insert_new_item": "Вставить новый элемент",
|
|
153
153
|
"Insert_child_in_item": "Вставить дочерний в элемент",
|
|
154
154
|
"Increase_depth": "Увеличить глубину"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"Unordered_list": "无序列表",
|
|
15
15
|
"Check_list_item": "任务列表",
|
|
16
16
|
"Insert_image": "插入图片",
|
|
17
|
-
"Insert_formula": "
|
|
17
|
+
"Insert_formula": "插入公式",
|
|
18
18
|
"Formula": "公式",
|
|
19
19
|
"Insert_file": "插入文件",
|
|
20
20
|
"Code": "行内代码",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"Comments": "评论",
|
|
100
100
|
"Add_a_comment": "增加评论",
|
|
101
101
|
"No_comment_yet": "还没有评论",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "标记为已解决",
|
|
103
103
|
"Ask_for_review": "发起评审",
|
|
104
104
|
"Review_already_exists": "评审已存在",
|
|
105
105
|
"View_review": "查看评审",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"Unordered_list": "无序列表",
|
|
15
15
|
"Check_list_item": "任务列表",
|
|
16
16
|
"Insert_image": "插入图片",
|
|
17
|
-
"Insert_formula": "
|
|
17
|
+
"Insert_formula": "插入公式",
|
|
18
18
|
"Formula": "公式",
|
|
19
19
|
"Insert_file": "插入文件",
|
|
20
20
|
"Code": "行内代码",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"Comments": "评论",
|
|
100
100
|
"Add_a_comment": "增加评论",
|
|
101
101
|
"No_comment_yet": "还没有评论",
|
|
102
|
-
"
|
|
102
|
+
"Mark_as_resolved": "标记为已解决",
|
|
103
103
|
"Ask_for_review": "发起评审",
|
|
104
104
|
"Review_already_exists": "评审已存在",
|
|
105
105
|
"View_review": "查看评审",
|