@seafile/seafile-editor 0.3.76
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/README.md +119 -0
- package/TODO.md +55 -0
- package/dist/components/add-formula-dialog.js +135 -0
- package/dist/components/add-image-dialog.js +78 -0
- package/dist/components/add-link-dialog.js +148 -0
- package/dist/components/comment-dialog.js +107 -0
- package/dist/components/comment-panel.js +452 -0
- package/dist/components/context-menu.js +112 -0
- package/dist/components/detail-list-view.js +119 -0
- package/dist/components/generate-share-link.js +412 -0
- package/dist/components/internal-link-dialog.js +96 -0
- package/dist/components/loading.js +32 -0
- package/dist/components/markdown-lint.js +87 -0
- package/dist/components/modal-portal.js +46 -0
- package/dist/components/outline.js +130 -0
- package/dist/components/participants-list.js +126 -0
- package/dist/components/related-files-list.js +75 -0
- package/dist/components/shortcut-dialog.js +167 -0
- package/dist/components/side-panel.js +175 -0
- package/dist/components/toast/alert.js +150 -0
- package/dist/components/toast/index.js +3 -0
- package/dist/components/toast/toast.js +179 -0
- package/dist/components/toast/toastManager.js +158 -0
- package/dist/components/toast/toaster.js +76 -0
- package/dist/components/toolbar.js +235 -0
- package/dist/components/topbar-component/button-group.js +31 -0
- package/dist/components/topbar-component/editor-toolbar.js +545 -0
- package/dist/components/topbar-component/file-info.js +65 -0
- package/dist/components/topbar-component/header-list.js +128 -0
- package/dist/components/topbar-component/icon-button.js +99 -0
- package/dist/components/topbar-component/insert-file.js +67 -0
- package/dist/components/topbar-component/table-toolbar.js +175 -0
- package/dist/components/topbar-component/upload-img.js +122 -0
- package/dist/components/user-help.js +205 -0
- package/dist/css/diff-viewer.css +105 -0
- package/dist/css/history-viewer.css +104 -0
- package/dist/css/keyboard-shortcuts.css +59 -0
- package/dist/css/layout.css +110 -0
- package/dist/css/markdown-viewer-slate/file-tags-list.css +76 -0
- package/dist/css/markdown-viewer.css +69 -0
- package/dist/css/plaineditor/markdown-editor.css +12 -0
- package/dist/css/react-mentions-default-style.js +72 -0
- package/dist/css/related-files-list.css +56 -0
- package/dist/css/richeditor/comments-list.css +184 -0
- package/dist/css/richeditor/detail-list-view.css +114 -0
- package/dist/css/richeditor/document-info.css +57 -0
- package/dist/css/richeditor/formula.css +19 -0
- package/dist/css/richeditor/image.css +141 -0
- package/dist/css/richeditor/link.css +7 -0
- package/dist/css/richeditor/navbar-imgbutton.css +79 -0
- package/dist/css/richeditor/participants-list.css +22 -0
- package/dist/css/richeditor/rich-editor-main.css +42 -0
- package/dist/css/richeditor/right-panel.css +84 -0
- package/dist/css/richeditor/side-panel.css +190 -0
- package/dist/css/richeditor/table.css +57 -0
- package/dist/css/richeditor/textlink-hovermenu.css +47 -0
- package/dist/css/richeditor/tree-view.css +67 -0
- package/dist/css/topbar.css +400 -0
- package/dist/editor/code-highlight-package.js +27 -0
- package/dist/editor/controller/block-element-controller.js +376 -0
- package/dist/editor/controller/inline-element-controller.js +129 -0
- package/dist/editor/controller/normalize-controller.js +107 -0
- package/dist/editor/controller/shortcut-controller.js +394 -0
- package/dist/editor/controller/void-element-controller.js +12 -0
- package/dist/editor/custom/custom.js +17 -0
- package/dist/editor/custom/get-event-transfer.js +34 -0
- package/dist/editor/custom/getNodesByTypeAtRange.js +69 -0
- package/dist/editor/custom/insertNodes.js +140 -0
- package/dist/editor/custom/is-empty-paragraph.js +13 -0
- package/dist/editor/custom/set-event-transfer.js +31 -0
- package/dist/editor/custom/split-nodes-at-point.js +162 -0
- package/dist/editor/custom/unwrap-node-by-type-at-range.js +81 -0
- package/dist/editor/editor-component/check-list-item.js +64 -0
- package/dist/editor/editor-component/code-block.js +150 -0
- package/dist/editor/editor-component/formula.js +79 -0
- package/dist/editor/editor-component/image.js +215 -0
- package/dist/editor/editor-component/link.js +11 -0
- package/dist/editor/editor-component/table.js +172 -0
- package/dist/editor/editor-component/textlink-hovermenu.js +136 -0
- package/dist/editor/editor-plugin.js +249 -0
- package/dist/editor/editor-utils/block-element-utils/blockquote-utils.js +96 -0
- package/dist/editor/editor-utils/block-element-utils/code-utils.js +162 -0
- package/dist/editor/editor-utils/block-element-utils/formula-utils.js +58 -0
- package/dist/editor/editor-utils/block-element-utils/index.js +38 -0
- package/dist/editor/editor-utils/block-element-utils/list-utils.js +398 -0
- package/dist/editor/editor-utils/block-element-utils/table-utils.js +418 -0
- package/dist/editor/editor-utils/common-editor-utils.js +587 -0
- package/dist/editor/editor-utils/inline-element-utils/index.js +95 -0
- package/dist/editor/editor-utils/mark-utils.js +25 -0
- package/dist/editor/editor-utils/range-utils.js +9 -0
- package/dist/editor/editor-utils/selection-utils.js +33 -0
- package/dist/editor/editor-utils/text-utils.js +130 -0
- package/dist/editor/editor.js +66 -0
- package/dist/editor/element-model/blockquote.js +16 -0
- package/dist/editor/element-model/image.js +19 -0
- package/dist/editor/element-model/link.js +19 -0
- package/dist/editor/element-model/table.js +50 -0
- package/dist/editor/element-model/text.js +13 -0
- package/dist/editor/load-script.js +83 -0
- package/dist/editor/plain-markdown-editor.js +324 -0
- package/dist/editor/rich-markdown-editor.js +580 -0
- package/dist/editor/seafile-editor.js +326 -0
- package/dist/editor/simple-editor.js +245 -0
- package/dist/editor-api.js +261 -0
- package/dist/index.css +97 -0
- package/dist/lib/slate-hyperscript/creators.js +263 -0
- package/dist/lib/slate-hyperscript/hyperscript.js +92 -0
- package/dist/lib/slate-hyperscript/index.js +3 -0
- package/dist/lib/slate-hyperscript/tokens.js +102 -0
- package/dist/lib/unified/index.js +470 -0
- package/dist/lib/vfile/core.js +172 -0
- package/dist/lib/vfile/index.js +48 -0
- package/dist/seafile-editor-chooser.js +45 -0
- package/dist/seafile-markdown-editor.js +301 -0
- package/dist/seafile-markdown-viewer.js +79 -0
- package/dist/seafile-simple-editor.js +56 -0
- package/dist/utils/copy-to-clipboard.js +47 -0
- package/dist/utils/deserialize-html.js +282 -0
- package/dist/utils/diff/compare-strings.js +46 -0
- package/dist/utils/diff/diff.js +855 -0
- package/dist/utils/diff/index.js +2 -0
- package/dist/utils/render-slate.js +219 -0
- package/dist/utils/seafile-markdown2html.js +62 -0
- package/dist/utils/slate2markdown/deserialize.js +689 -0
- package/dist/utils/slate2markdown/index.js +3 -0
- package/dist/utils/slate2markdown/serialize.js +407 -0
- package/dist/utils/utils.js +28 -0
- package/dist/viewer/diff-viewer.js +98 -0
- package/dist/viewer/markdown-viewer.js +139 -0
- package/dist/viewer/slate-viewer.js +73 -0
- package/dist/viewer/viewer-formula.js +67 -0
- package/dist/viewer/viewer-image.js +93 -0
- package/dist/viewer/viewer-outline.js +118 -0
- package/package.json +215 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +45 -0
- package/public/locales/cs/seafile-editor.json +169 -0
- package/public/locales/de/seafile-editor.json +169 -0
- package/public/locales/en/seafile-editor.json +222 -0
- package/public/locales/es/seafile-editor.json +169 -0
- package/public/locales/es-AR/seafile-editor.json +169 -0
- package/public/locales/es-MX/seafile-editor.json +169 -0
- package/public/locales/fr/seafile-editor.json +169 -0
- package/public/locales/it/seafile-editor.json +169 -0
- package/public/locales/ru/seafile-editor.json +169 -0
- package/public/locales/zh-CN/seafile-editor.json +219 -0
- package/public/manifest.json +15 -0
- package/public/media/scripts/mathjax/tex-svg.js +1 -0
- package/public/media/seafile-editor-font/iconfont.eot +0 -0
- package/public/media/seafile-editor-font/iconfont.svg +164 -0
- package/public/media/seafile-editor-font/iconfont.ttf +0 -0
- package/public/media/seafile-editor-font/iconfont.woff +0 -0
- package/public/media/seafile-editor-font/iconfont.woff2 +0 -0
- package/public/media/seafile-editor-font.css +201 -0
- package/public/media/seafile-logo.png +0 -0
- package/public/media/seafile-ui.css +11169 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bold": "Tučně",
|
|
3
|
+
"italic": "Kurzíva",
|
|
4
|
+
"inline_code": "Kód",
|
|
5
|
+
"header_one": "Záhlaví 1",
|
|
6
|
+
"header_two": "Záhlaví 2",
|
|
7
|
+
"header_three": "Záhlaví 3",
|
|
8
|
+
"header_four": "Záhlaví 4",
|
|
9
|
+
"header_five": "Záhlaví 5",
|
|
10
|
+
"header_six": "Záhlaví 6",
|
|
11
|
+
"paragraph": "Odstavec",
|
|
12
|
+
"quote": "Citace",
|
|
13
|
+
"ordered_list": "Číslovaný seznam",
|
|
14
|
+
"unordered_list": "Nečíslovaný seznam",
|
|
15
|
+
"check_list_item": "Zkontrolovat položku seznamu",
|
|
16
|
+
"insert_image": "Vložit obrázek",
|
|
17
|
+
"code": "Řádkový kód",
|
|
18
|
+
"code_block": "Blok kódu",
|
|
19
|
+
"insert_link": "Vložit odkaz",
|
|
20
|
+
"insert_table": "Vložit tabulku",
|
|
21
|
+
"save": "Uložit",
|
|
22
|
+
"more": "Více",
|
|
23
|
+
"invalid_url": "Chybná URL",
|
|
24
|
+
"link_address": "Adresa odkazu",
|
|
25
|
+
"image_address": "Adresa obrázku",
|
|
26
|
+
"submit": "Odeslat",
|
|
27
|
+
"cancel": "Storno",
|
|
28
|
+
"switch_to_plain_text_editor": "Přepnout do textového editoru",
|
|
29
|
+
"switch_to_rich_text_editor": "Přepnout do rozšířeného textového editoru",
|
|
30
|
+
"switch_to_viewer": "Přepnout do značkovacího prohlížeče",
|
|
31
|
+
"help": "Pomoc",
|
|
32
|
+
"remove_table": "Odebrat tabulku",
|
|
33
|
+
"column": "Sloupec",
|
|
34
|
+
"row": "Řádek",
|
|
35
|
+
"set_align": "Nastavit zarovnání",
|
|
36
|
+
"left": "Vlevo",
|
|
37
|
+
"center": "Střed",
|
|
38
|
+
"right": "Vpravo",
|
|
39
|
+
"file_saved": "Soubor uložen",
|
|
40
|
+
"file_failed_to_save": "Soubor nebyl uložen",
|
|
41
|
+
"star": "Přidat hvězdičku",
|
|
42
|
+
"unstar": "Odebrat hvězdičku",
|
|
43
|
+
"back_to_parent_directory":"Zpět do nadřazeného adresáře",
|
|
44
|
+
"edit":"editovat",
|
|
45
|
+
"copy": "Kopírovat",
|
|
46
|
+
"copied": "Zkopírováno",
|
|
47
|
+
"internal_link": "Interní odkaz",
|
|
48
|
+
"copy_internal_link": "Interní odkaz byl zkopírován do schránky",
|
|
49
|
+
"internal_link_desc": "Interní odkaz směřuje na soubor nebo složku u které má uživatel oprávnění ke čtení.",
|
|
50
|
+
"share": "Sdílet",
|
|
51
|
+
"share_link": "Veřejný odkaz",
|
|
52
|
+
"generate": "Generovat",
|
|
53
|
+
"add_password_protection": "Přidat ochranu heslem",
|
|
54
|
+
"password": "Heslo",
|
|
55
|
+
"at_least_8_characters": "nejméně 8 znaků",
|
|
56
|
+
"password_again": "Heslo znovu",
|
|
57
|
+
"add_auto_expiration": "Přidat automatickou expiraci",
|
|
58
|
+
"days": "dní",
|
|
59
|
+
"please_enter_password": "Zadejte heslo",
|
|
60
|
+
"greater_than_or_equal_to": "Vyšší nebo rovno",
|
|
61
|
+
"less_than_or_equal_to": "Nižší nebo rovno",
|
|
62
|
+
"set_permission": "Nastavit oprávnění",
|
|
63
|
+
"preview_and_download": "Zobrazit a stáhnout",
|
|
64
|
+
"preview_only": "Pouze zobrazit",
|
|
65
|
+
"please_enter_valid_days": "Zadejte platné dny",
|
|
66
|
+
"please_enter_a_non-negative_integer": "Vložte prosím nezáporné celé číslo",
|
|
67
|
+
"please_enter_days": "Prosím zadejte dny",
|
|
68
|
+
"password_is_too_short": "Heslo je příliš krátké.",
|
|
69
|
+
"passwords_do_not_match": "Hesla nesouhlasí",
|
|
70
|
+
"return_to_wiki_page": "Návrat na stránku Wiki",
|
|
71
|
+
"insert_network_image": "Vložit síťový obrázek",
|
|
72
|
+
"upload_local_image": "Nahrát lokální obrázek",
|
|
73
|
+
"add_link": "Přidat odkaz",
|
|
74
|
+
"file_history": "Historie souboru",
|
|
75
|
+
"history_version": "Historie verzí",
|
|
76
|
+
"back_to_viewer": "Zpět na prohlížeč",
|
|
77
|
+
"link_title": "Název odkazu",
|
|
78
|
+
"local_draft": "Místní koncept",
|
|
79
|
+
"use_draft": "Použít koncept",
|
|
80
|
+
"delete_draft": "Smazat koncept",
|
|
81
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "Máte neuložený koncept. Chcete ho použít?",
|
|
82
|
+
"local_draft_saved": "Místní koncept byl uložen",
|
|
83
|
+
"new_draft": "Nový návrh",
|
|
84
|
+
"edit_draft": "Upravit návrh",
|
|
85
|
+
"this_file_has_a_draft": "Tento soubor má koncept.",
|
|
86
|
+
"delete": "Smazat",
|
|
87
|
+
"comments": "Komentáře",
|
|
88
|
+
"add_a_comment": "Přidat komentář…",
|
|
89
|
+
"no_comment_yet": "Žádné komentáře",
|
|
90
|
+
"Mark_as_Resolved": "Označit jako vyřešené",
|
|
91
|
+
"ask_for_review": "Požádat o kontrolu",
|
|
92
|
+
"review_already_exists": "Kontrola již existuje. ",
|
|
93
|
+
"view_review": "Zobrazit kontrolu",
|
|
94
|
+
"there_is_an_associated_review_with_this_file": "K tomuto souboru je přiřazená kontrola",
|
|
95
|
+
"start_review": "Začít kontrolu",
|
|
96
|
+
"this_file_is_in_draft_stage": "Tento soubor je ve fázi návrhu.",
|
|
97
|
+
"this_file_is_in_review_stage": "Tento soubor je ve fázi kontroly.",
|
|
98
|
+
"this_file_has_been_updated": "Tento soubor byl aktualizován.",
|
|
99
|
+
"refresh": "Obnovit",
|
|
100
|
+
"related_files": "související soubory",
|
|
101
|
+
"related_file": "související soubor",
|
|
102
|
+
"no_tags": "Žádné značky",
|
|
103
|
+
"no_related_files": "Žádné související soubory",
|
|
104
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "",
|
|
105
|
+
"userHelp": {
|
|
106
|
+
"title": "Klávesové zkratky",
|
|
107
|
+
"userHelpData": [
|
|
108
|
+
{
|
|
109
|
+
"shortcutType":"Seznam zkratek",
|
|
110
|
+
"shortcutData": {
|
|
111
|
+
"Make_list": "Vytvořit seznam",
|
|
112
|
+
"Make_ordered_list": "Vytvořit číslovaný seznam",
|
|
113
|
+
"Insert_new_item": "Vložit novou položku",
|
|
114
|
+
"Insert_child_in_item": "Vložit podpoložku",
|
|
115
|
+
"Increase_depth": "Zvýšit hloubku"
|
|
116
|
+
}
|
|
117
|
+
}, {
|
|
118
|
+
"shortcutType": "Zkratky záhlaví",
|
|
119
|
+
"shortcutData": {
|
|
120
|
+
"Heading_1": "Záhlaví 1",
|
|
121
|
+
"Heading_2": "Záhlaví 2",
|
|
122
|
+
"Heading_3": "Záhlaví 3",
|
|
123
|
+
"Heading_4": "Záhlaví 4",
|
|
124
|
+
"Heading_5": "Záhlaví 5",
|
|
125
|
+
"Heading_6": "Záhlaví 6"
|
|
126
|
+
}
|
|
127
|
+
}, {
|
|
128
|
+
"shortcutType": "Zkratky bloků kódu",
|
|
129
|
+
"shortcutData": {
|
|
130
|
+
"Make_code_block": "Vytvořit blok kódu",
|
|
131
|
+
"Insert_new_line": "Vložit novou řádku",
|
|
132
|
+
"Escape_code_block": "Opustit blok kódu",
|
|
133
|
+
"Insert_indent": "Vložit odrážku"
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
"shortcutType": "Zkratky bloku citace",
|
|
137
|
+
"shortcutData": {
|
|
138
|
+
"Make_Block_quote": "Vytvořit blokovou citaci",
|
|
139
|
+
"Escape_Block_quote": "Opustit blokovou citaci"
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
"shortcutType": "Zkratky tabulky",
|
|
143
|
+
"shortcutData": {
|
|
144
|
+
"Insert_Table_Row": "Vložit řádku tabulky",
|
|
145
|
+
"Escape_table": "Opustit tabulku"
|
|
146
|
+
}
|
|
147
|
+
}, {
|
|
148
|
+
"shortcutType":"Řádkové zkratky",
|
|
149
|
+
"shortcutData": {
|
|
150
|
+
"Bold": "Tučně",
|
|
151
|
+
"Italic": "Kurzíva",
|
|
152
|
+
"Italic_Bold": "Tučná kurzíva",
|
|
153
|
+
"Inline_code": "Řádkový kód"
|
|
154
|
+
}
|
|
155
|
+
}, {
|
|
156
|
+
"shortcutType": "Uložit zkratky",
|
|
157
|
+
"shortcutData": {
|
|
158
|
+
"Save_file": "Uložit soubor"
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
"shortcutType": "Zkratky obrázku",
|
|
162
|
+
"shortcutData": {
|
|
163
|
+
"Paste_screen_shot": "Vložit snímek obrazovky",
|
|
164
|
+
"Drag_image_from_anywhere_to_upload_it": "Přetáhnout obrázek odkudkoliv k jeho nahrání"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bold": "Fett",
|
|
3
|
+
"italic": "Kursiv",
|
|
4
|
+
"inline_code": "Code",
|
|
5
|
+
"header_one": "Überschrift 1",
|
|
6
|
+
"header_two": "Überschrift 2",
|
|
7
|
+
"header_three": "Überschrift 3",
|
|
8
|
+
"header_four": "Überschrift 4",
|
|
9
|
+
"header_five": "Überschrift 5",
|
|
10
|
+
"header_six": "Überschrift 6",
|
|
11
|
+
"paragraph": "Absatz",
|
|
12
|
+
"quote": "Zitat",
|
|
13
|
+
"ordered_list": "Nummerierte Liste",
|
|
14
|
+
"unordered_list": "Ungeordnete Liste",
|
|
15
|
+
"check_list_item": "Listeneintrag überprüfen",
|
|
16
|
+
"insert_image": "Bild einfügen",
|
|
17
|
+
"code": "Inline-Code",
|
|
18
|
+
"code_block": "Codeblock",
|
|
19
|
+
"insert_link": "Link einfügen",
|
|
20
|
+
"insert_table": "Tabelle einfügen",
|
|
21
|
+
"save": "Speichern",
|
|
22
|
+
"more": "Mehr",
|
|
23
|
+
"invalid_url": "Ungültige Adresse",
|
|
24
|
+
"link_address": "Adresse des Links",
|
|
25
|
+
"image_address": "Adresse des Bildes",
|
|
26
|
+
"submit": "Absenden",
|
|
27
|
+
"cancel": "Abbrechen",
|
|
28
|
+
"switch_to_plain_text_editor": "Zum reinen Texteditor wechseln",
|
|
29
|
+
"switch_to_rich_text_editor": "Zum Editor mit Formatierungen wechseln",
|
|
30
|
+
"switch_to_viewer": "Zur Markdown-Vorschau wechseln",
|
|
31
|
+
"help": "Hilfe",
|
|
32
|
+
"remove_table": "Tabelle entfernen",
|
|
33
|
+
"column": "Spalte",
|
|
34
|
+
"row": "Zeile",
|
|
35
|
+
"set_align": "Ausrichtung festlegen",
|
|
36
|
+
"left": "Links",
|
|
37
|
+
"center": "Zentrieren",
|
|
38
|
+
"right": "Rechts",
|
|
39
|
+
"file_saved": "Datei gespeichert.",
|
|
40
|
+
"file_failed_to_save": "Datei konnte nicht gespeichert werden.",
|
|
41
|
+
"star": "Stern hinzufügen",
|
|
42
|
+
"unstar": "Stern entfernen",
|
|
43
|
+
"back_to_parent_directory":"Zurück zum übergeordneten Verzeichnis",
|
|
44
|
+
"edit":"Bearbeiten",
|
|
45
|
+
"copy": "Kopieren",
|
|
46
|
+
"copied": "Kopiert",
|
|
47
|
+
"internal_link": "Interner Link",
|
|
48
|
+
"copy_internal_link": "Der interne Link ist in den Zwischenspeicher kopiert",
|
|
49
|
+
"internal_link_desc": "Ein interner Link ist eine Verlinkung auf eine Datei oder einen Ordner, die von Anderen genutzt werden kann, soweit sie die entsprechenden Leserechte haben.",
|
|
50
|
+
"share": "Freigeben",
|
|
51
|
+
"share_link": "Link freigeben",
|
|
52
|
+
"generate": "Erstellen",
|
|
53
|
+
"add_password_protection": "Passwort hinzufügen",
|
|
54
|
+
"password": "Passwort",
|
|
55
|
+
"at_least_8_characters": "mindestens 8 Zeichen",
|
|
56
|
+
"password_again": "Passwort erneut eingeben",
|
|
57
|
+
"add_auto_expiration": "Befristung hinzufügen",
|
|
58
|
+
"days": "Tage",
|
|
59
|
+
"please_enter_password": "Bitte geben Sie ein Passwort ein",
|
|
60
|
+
"greater_than_or_equal_to": "Größer oder gleich",
|
|
61
|
+
"less_than_or_equal_to": "Weniger oder gleich",
|
|
62
|
+
"set_permission": "Rechte festlegen",
|
|
63
|
+
"preview_and_download": "Vorschau und Herunterladen",
|
|
64
|
+
"preview_only": "Nur Vorschau erlaubt",
|
|
65
|
+
"please_enter_valid_days": "Bitte geben Sie eine gültige Anzahl von Tagen ein",
|
|
66
|
+
"please_enter_a_non-negative_integer": "Bitte geben Sie eine Zahl größer oder gleich Null ein",
|
|
67
|
+
"please_enter_days": "Bitte geben Sie Tage ein",
|
|
68
|
+
"password_is_too_short": "Passwort ist zu kurz",
|
|
69
|
+
"passwords_do_not_match": "Passwörter stimmen nicht überein",
|
|
70
|
+
"return_to_wiki_page": "Zurück zur Wiki-Seite",
|
|
71
|
+
"insert_network_image": "Bild aus dem Netzwerk einfügen",
|
|
72
|
+
"upload_local_image": "Lokales Bild hochladen",
|
|
73
|
+
"add_link": "Link hinzufügen",
|
|
74
|
+
"file_history": "Dateiversionen",
|
|
75
|
+
"history_version": "Versionen",
|
|
76
|
+
"back_to_viewer": "Zurück zur Vorschau",
|
|
77
|
+
"link_title": "Titel des Links",
|
|
78
|
+
"local_draft": "Lokaler Entwurf",
|
|
79
|
+
"use_draft": "Entwurf verwenden",
|
|
80
|
+
"delete_draft": "Entwurf löschen",
|
|
81
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "Es gibt einen ungespeicherten Entwurf. Möchten Sie ihn verwenden?",
|
|
82
|
+
"local_draft_saved": "Lokaler Entwurf gespeichert",
|
|
83
|
+
"new_draft": "Neuer Entwurf",
|
|
84
|
+
"edit_draft": "Entwurf bearbeiten",
|
|
85
|
+
"this_file_has_a_draft": "Zu dieser Datei gibt es einen Entwurf.",
|
|
86
|
+
"delete": "Löschen",
|
|
87
|
+
"comments": "Kommentare",
|
|
88
|
+
"add_a_comment": "Kommentieren …",
|
|
89
|
+
"no_comment_yet": "Noch nicht kommentiert.",
|
|
90
|
+
"Mark_as_Resolved": "Als erledigt markieren",
|
|
91
|
+
"ask_for_review": "Um ein Review bitten",
|
|
92
|
+
"review_already_exists": "Es gibt bereits ein Review.",
|
|
93
|
+
"view_review": "Review anzeigen",
|
|
94
|
+
"there_is_an_associated_review_with_this_file": "Es gibt ein Review zu dieser Datei.",
|
|
95
|
+
"start_review": "Review schreiben",
|
|
96
|
+
"this_file_is_in_draft_stage": "Die Datei hat den Status Entwurf",
|
|
97
|
+
"this_file_is_in_review_stage": "Die Datei hat den Status Review.",
|
|
98
|
+
"this_file_has_been_updated": "Die Datei wurde aktualisiert.",
|
|
99
|
+
"refresh": "Aktualisieren",
|
|
100
|
+
"related_files": "Zugehörige Dateien",
|
|
101
|
+
"related_file": "Zugehörige Datei",
|
|
102
|
+
"no_tags": "Keine Tags",
|
|
103
|
+
"no_related_files": "Keine zugehörigen Dateien",
|
|
104
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "",
|
|
105
|
+
"userHelp": {
|
|
106
|
+
"title": "Tastaturkürzel",
|
|
107
|
+
"userHelpData": [
|
|
108
|
+
{
|
|
109
|
+
"shortcutType":"Kürzel für Listen",
|
|
110
|
+
"shortcutData": {
|
|
111
|
+
"Make_list": "Liste anlegen",
|
|
112
|
+
"Make_ordered_list": "Nummerierte Liste anlegen",
|
|
113
|
+
"Insert_new_item": "Neues Objekt einfügen",
|
|
114
|
+
"Insert_child_in_item": "Unterobjekt einfügen",
|
|
115
|
+
"Increase_depth": "Tiefe erhöhen"
|
|
116
|
+
}
|
|
117
|
+
}, {
|
|
118
|
+
"shortcutType": "Kürzel für Überschriften",
|
|
119
|
+
"shortcutData": {
|
|
120
|
+
"Heading_1": "Überschrift 1",
|
|
121
|
+
"Heading_2": "Überschrift 2",
|
|
122
|
+
"Heading_3": "Überschrift 3",
|
|
123
|
+
"Heading_4": "Überschrift 4",
|
|
124
|
+
"Heading_5": "Überschrift 5",
|
|
125
|
+
"Heading_6": "Überschrift 6"
|
|
126
|
+
}
|
|
127
|
+
}, {
|
|
128
|
+
"shortcutType": "Kürzel für Code",
|
|
129
|
+
"shortcutData": {
|
|
130
|
+
"Make_code_block": "Codeblock anlegen",
|
|
131
|
+
"Insert_new_line": "Neue Zeile einfügen",
|
|
132
|
+
"Escape_code_block": "Codeblock beenden",
|
|
133
|
+
"Insert_indent": "Einzug einfügen"
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
"shortcutType": "Kürzel für Blockzitat",
|
|
137
|
+
"shortcutData": {
|
|
138
|
+
"Make_Block_quote": "Blockzitat anlegen",
|
|
139
|
+
"Escape_Block_quote": "Blockzitat beenden"
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
"shortcutType": "Kürzel für Tabellen",
|
|
143
|
+
"shortcutData": {
|
|
144
|
+
"Insert_Table_Row": "Tabellenzeile einfügen",
|
|
145
|
+
"Escape_table": "Tabelle beenden"
|
|
146
|
+
}
|
|
147
|
+
}, {
|
|
148
|
+
"shortcutType":"Kürzel für Inline-Text",
|
|
149
|
+
"shortcutData": {
|
|
150
|
+
"Bold": "Fett",
|
|
151
|
+
"Italic": "Kursiv",
|
|
152
|
+
"Italic_Bold": "Kursiv fett",
|
|
153
|
+
"Inline_code": "Inline-Code"
|
|
154
|
+
}
|
|
155
|
+
}, {
|
|
156
|
+
"shortcutType": "Kürzel speichern",
|
|
157
|
+
"shortcutData": {
|
|
158
|
+
"Save_file": "Datei speichern"
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
"shortcutType": "Kürzel für Bilder",
|
|
162
|
+
"shortcutData": {
|
|
163
|
+
"Paste_screen_shot": "Bildschirmfoto einfügen",
|
|
164
|
+
"Drag_image_from_anywhere_to_upload_it": "Datei zum Hochladen hierher ziehen"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bold": "Bold",
|
|
3
|
+
"italic": "Italic",
|
|
4
|
+
"inline_code": "Code",
|
|
5
|
+
"header_one": "Heading 1",
|
|
6
|
+
"header_two": "Heading 2",
|
|
7
|
+
"header_three": "Heading 3",
|
|
8
|
+
"header_four": "Heading 4",
|
|
9
|
+
"header_five": "Heading 5",
|
|
10
|
+
"header_six": "Heading 6",
|
|
11
|
+
"paragraph": "Paragraph",
|
|
12
|
+
"quote": "Quote",
|
|
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
|
+
"formula": "Formula",
|
|
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
|
+
"save": "Save",
|
|
25
|
+
"more": "More",
|
|
26
|
+
"invalid_url": "Invalid URL",
|
|
27
|
+
"link_address": "Link address",
|
|
28
|
+
"image_address": "Image address",
|
|
29
|
+
"submit": "Submit",
|
|
30
|
+
"cancel": "Cancel",
|
|
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
|
+
"help": "Help",
|
|
35
|
+
"remove_table": "Remove Table",
|
|
36
|
+
"column": "Column",
|
|
37
|
+
"row": "Row",
|
|
38
|
+
"Insert_Row_Before": "Insert Row Before",
|
|
39
|
+
"Insert_Row_After": "Insert Row After",
|
|
40
|
+
"Insert_Column_Before": "Insert Column Before",
|
|
41
|
+
"Insert_Column_After": "Insert Column After",
|
|
42
|
+
"Remove_Row": "Remove Row",
|
|
43
|
+
"Remove_Column": "Remove Column",
|
|
44
|
+
"Insert_Row": "Insert Row",
|
|
45
|
+
"Insert_Column": "Insert Column",
|
|
46
|
+
"set_align": "Set align",
|
|
47
|
+
"left": "Left",
|
|
48
|
+
"center": "Center",
|
|
49
|
+
"right": "Right",
|
|
50
|
+
"file_saved": "File saved.",
|
|
51
|
+
"file_failed_to_save": "File failed to save.",
|
|
52
|
+
"star": "Add star",
|
|
53
|
+
"unstar": "Remove star",
|
|
54
|
+
"back_to_parent_directory":"Back to parent directory",
|
|
55
|
+
"edit": "Edit",
|
|
56
|
+
"copy": "Copy",
|
|
57
|
+
"copied": "Copied",
|
|
58
|
+
"internal_link": "Internal Link",
|
|
59
|
+
"copy_internal_link": "Internal link has been copied to clipboard",
|
|
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
|
+
"share": "Share",
|
|
62
|
+
"share_link": "Share Link",
|
|
63
|
+
"generate": "Generate",
|
|
64
|
+
"add_password_protection": "Add password protection",
|
|
65
|
+
"password": "Password",
|
|
66
|
+
"at_least_8_characters": "at least 8 characters",
|
|
67
|
+
"password_again": "Password again",
|
|
68
|
+
"add_auto_expiration": "Add auto expiration",
|
|
69
|
+
"days": "days",
|
|
70
|
+
"please_enter_password": "Please enter password",
|
|
71
|
+
"greater_than_or_equal_to": "Greater than or equal to",
|
|
72
|
+
"less_than_or_equal_to": "Less than or equal to",
|
|
73
|
+
"set_permission": "Set permission",
|
|
74
|
+
"preview_and_download": "Preview and download",
|
|
75
|
+
"preview_only": "Preview only",
|
|
76
|
+
"please_enter_valid_days": "Please enter valid days",
|
|
77
|
+
"please_enter_a_non-negative_integer": "Please enter a non-negative integer",
|
|
78
|
+
"please_enter_days": "Please enter days",
|
|
79
|
+
"password_is_too_short": "Password is too short",
|
|
80
|
+
"passwords_do_not_match": "Passwords do not match",
|
|
81
|
+
"return_to_wiki_page": "Return to Wiki Page",
|
|
82
|
+
"insert_network_image": "Insert network image",
|
|
83
|
+
"upload_local_image": "Upload local image",
|
|
84
|
+
"add_link": "Add link",
|
|
85
|
+
"file_history": "File History",
|
|
86
|
+
"history_version": "History Versions",
|
|
87
|
+
"back_to_viewer": "Back To Viewer",
|
|
88
|
+
"link_title": "Link title",
|
|
89
|
+
"local_draft": "Local draft",
|
|
90
|
+
"use_draft": "Use draft",
|
|
91
|
+
"delete_draft": "Delete draft",
|
|
92
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "You have an unsaved draft. Do you like to use it?",
|
|
93
|
+
"local_draft_saved": "Local draft saved",
|
|
94
|
+
"new_draft": "New Draft",
|
|
95
|
+
"view_draft": "View Draft",
|
|
96
|
+
"publish": "Publish",
|
|
97
|
+
"this_file_has_a_draft": "This file has a draft.",
|
|
98
|
+
"delete": "Delete",
|
|
99
|
+
"comments": "Comments",
|
|
100
|
+
"add_a_comment": "Add a comment...",
|
|
101
|
+
"no_comment_yet": "No comment yet.",
|
|
102
|
+
"Mark_as_Resolved": "Mark as Resolved",
|
|
103
|
+
"ask_for_review": "Ask for review",
|
|
104
|
+
"review_already_exists": "Review already exists",
|
|
105
|
+
"view_review": "View review",
|
|
106
|
+
"there_is_an_associated_review_with_this_file": "There is an associated review with this file.",
|
|
107
|
+
"start_review": "Start Review",
|
|
108
|
+
"this_file_is_in_draft_stage": "This file is in draft stage.",
|
|
109
|
+
"this_file_is_in_review_stage": "This file is in review stage.",
|
|
110
|
+
"this_file_has_been_updated": "This file has been updated.",
|
|
111
|
+
"refresh": "Refresh",
|
|
112
|
+
"related_files": "related files",
|
|
113
|
+
"related_file": "related file",
|
|
114
|
+
"no_tags": "No tags",
|
|
115
|
+
"Date": "Date",
|
|
116
|
+
"Participants": "Participants",
|
|
117
|
+
"Meeting_note": "Meeting note",
|
|
118
|
+
"Chooser_document_type": "Chooser document type",
|
|
119
|
+
"Empty": "Empty",
|
|
120
|
+
"no_related_files": "No related files",
|
|
121
|
+
"no_out_line": "No outline",
|
|
122
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "Editing files in this browser can lead to slight display problems.",
|
|
123
|
+
"no_document_improvement_suggestion": "No document improvement suggestion",
|
|
124
|
+
"Hide_side_panel": "Hide side panel",
|
|
125
|
+
"Show_side_panel": "Show side panel",
|
|
126
|
+
"Show_resolved_comments": "Show resolved comments",
|
|
127
|
+
"Update": "Update",
|
|
128
|
+
"Width": "Width",
|
|
129
|
+
"Height": "Height",
|
|
130
|
+
"Full_screen": "Full screen",
|
|
131
|
+
"Insert_library_image": "Insert library image",
|
|
132
|
+
"Size": "Size",
|
|
133
|
+
"Location": "Location",
|
|
134
|
+
"Last_Update": "Last Update",
|
|
135
|
+
"Tags": "Tags",
|
|
136
|
+
"Related_Files": "Related Files",
|
|
137
|
+
"Add_participants": "Add participants",
|
|
138
|
+
"markdownLint": {
|
|
139
|
+
"missing_h1": {
|
|
140
|
+
"description": "There is no h1 in the document",
|
|
141
|
+
"issue" : "Missing h1"
|
|
142
|
+
},
|
|
143
|
+
"heading_end_with_colon": {
|
|
144
|
+
"description": "Trailing punctuation in heading should not be a colon",
|
|
145
|
+
"issue": "Heading ends width colon"
|
|
146
|
+
},
|
|
147
|
+
"heading_increase_irregular": {
|
|
148
|
+
"description": "Heading levels should only increment by one level at a time",
|
|
149
|
+
"issue": "Heading level issue"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"Shortcut_help": "Shortcut help",
|
|
153
|
+
"userHelp": {
|
|
154
|
+
"title": "Keyboard shortcuts",
|
|
155
|
+
"userHelpData": [
|
|
156
|
+
{
|
|
157
|
+
"shortcutType":"List shortcuts",
|
|
158
|
+
"shortcutData": {
|
|
159
|
+
"Make_list": "Make list",
|
|
160
|
+
"Make_ordered_list": "Make Ordered list",
|
|
161
|
+
"Insert_new_item": "Insert new item",
|
|
162
|
+
"Insert_child_in_item": "Insert child in item",
|
|
163
|
+
"Increase_depth": "Increase depth"
|
|
164
|
+
}
|
|
165
|
+
}, {
|
|
166
|
+
"shortcutType": "Head shortcuts",
|
|
167
|
+
"shortcutData": {
|
|
168
|
+
"Heading_1": "Heading 1",
|
|
169
|
+
"Heading_2": "Heading 2",
|
|
170
|
+
"Heading_3": "Heading 3",
|
|
171
|
+
"Heading_4": "Heading 4",
|
|
172
|
+
"Heading_5": "Heading 5",
|
|
173
|
+
"Heading_6": "Heading 6"
|
|
174
|
+
}
|
|
175
|
+
}, {
|
|
176
|
+
"shortcutType": "Code block shortcuts",
|
|
177
|
+
"shortcutData": {
|
|
178
|
+
"Make_code_block": "Make code block",
|
|
179
|
+
"Insert_new_line": "Insert new line",
|
|
180
|
+
"Escape_code_block": "Escape code block",
|
|
181
|
+
"Insert_indent": "Insert indent"
|
|
182
|
+
}
|
|
183
|
+
}, {
|
|
184
|
+
"shortcutType": "Block quote shortcuts",
|
|
185
|
+
"shortcutData": {
|
|
186
|
+
"Make_Block_quote": "Make Block quote",
|
|
187
|
+
"Escape_Block_quote": "Escape Block quote"
|
|
188
|
+
}
|
|
189
|
+
}, {
|
|
190
|
+
"shortcutType": "Table shortcuts",
|
|
191
|
+
"shortcutData": {
|
|
192
|
+
"Insert_Table_Row": "Insert Table Row",
|
|
193
|
+
"Escape_table": "Escape table"
|
|
194
|
+
}
|
|
195
|
+
}, {
|
|
196
|
+
"shortcutType": "Formula shortcuts",
|
|
197
|
+
"shortcutData": {
|
|
198
|
+
"Insert_Formula": "Insert Formula"
|
|
199
|
+
}
|
|
200
|
+
}, {
|
|
201
|
+
"shortcutType":"Inline shortcuts",
|
|
202
|
+
"shortcutData": {
|
|
203
|
+
"Bold": "Bold",
|
|
204
|
+
"Italic": "Italic",
|
|
205
|
+
"Italic_Bold": "Italic Bold",
|
|
206
|
+
"Inline_code": "Inline code"
|
|
207
|
+
}
|
|
208
|
+
}, {
|
|
209
|
+
"shortcutType": "Save shortcuts",
|
|
210
|
+
"shortcutData": {
|
|
211
|
+
"Save_file": "Save file"
|
|
212
|
+
}
|
|
213
|
+
}, {
|
|
214
|
+
"shortcutType": "Image shortcuts",
|
|
215
|
+
"shortcutData": {
|
|
216
|
+
"Paste_screen_shot": "Paste screen shot",
|
|
217
|
+
"Drag_image_from_anywhere_to_upload_it": "Drag image from anywhere to upload it"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
}
|
|
222
|
+
}
|