@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": "Gras",
|
|
3
|
+
"italic": "Italique",
|
|
4
|
+
"inline_code": "Code",
|
|
5
|
+
"header_one": "Titre 1",
|
|
6
|
+
"header_two": "Titre 2",
|
|
7
|
+
"header_three": "Titre 3",
|
|
8
|
+
"header_four": "Titre 4",
|
|
9
|
+
"header_five": "Titre 5",
|
|
10
|
+
"header_six": "Titre 6",
|
|
11
|
+
"paragraph": "Paragraphe",
|
|
12
|
+
"quote": "Citation",
|
|
13
|
+
"ordered_list": "Liste ordonnée",
|
|
14
|
+
"unordered_list": "Liste non ordonnée",
|
|
15
|
+
"check_list_item": "Élément liste de vérification",
|
|
16
|
+
"insert_image": "Insérer image",
|
|
17
|
+
"code": "Ligne de code",
|
|
18
|
+
"code_block": "Bloc de code",
|
|
19
|
+
"insert_link": "Insérer lien",
|
|
20
|
+
"insert_table": "Insérer table",
|
|
21
|
+
"save": "Sauvegarder",
|
|
22
|
+
"more": "Plus",
|
|
23
|
+
"invalid_url": "L'adresse n'est pas valide",
|
|
24
|
+
"link_address": "Adresse du lien",
|
|
25
|
+
"image_address": "Adresse de l'image",
|
|
26
|
+
"submit": "Soumettre",
|
|
27
|
+
"cancel": "Annuler",
|
|
28
|
+
"switch_to_plain_text_editor": "Basculer en éditeur de texte plein",
|
|
29
|
+
"switch_to_rich_text_editor": "Basculer en éditeur de texte riche",
|
|
30
|
+
"switch_to_viewer": "Basculer en visualiseur Markdown",
|
|
31
|
+
"help": "Aide",
|
|
32
|
+
"remove_table": "Supprimer la table",
|
|
33
|
+
"column": "Colonne",
|
|
34
|
+
"row": "Ligne",
|
|
35
|
+
"set_align": "Ajuster l'alignement",
|
|
36
|
+
"left": "Gauche",
|
|
37
|
+
"center": "Centrer",
|
|
38
|
+
"right": "Droite",
|
|
39
|
+
"file_saved": "Fichier sauvegardé.",
|
|
40
|
+
"file_failed_to_save": "Échec de la sauvegarde du fichier",
|
|
41
|
+
"star": "Ajouter étoile",
|
|
42
|
+
"unstar": "Enlever étoile",
|
|
43
|
+
"back_to_parent_directory":"Retour au répertoire parent",
|
|
44
|
+
"edit":"éditer",
|
|
45
|
+
"copy": "Copier",
|
|
46
|
+
"copied": "Copié",
|
|
47
|
+
"internal_link": "Lien interne",
|
|
48
|
+
"copy_internal_link": "Le lien interne a été copié dans le presse-papier",
|
|
49
|
+
"internal_link_desc": "Un lien interne est un lien vers un fichier ou un dossier accessible en lecture par un utilisateur.",
|
|
50
|
+
"share": "Partager",
|
|
51
|
+
"share_link": "Lien de partage",
|
|
52
|
+
"generate": "Générer",
|
|
53
|
+
"add_password_protection": "Ajouter un mot de passe de protection",
|
|
54
|
+
"password": "Mot de passe",
|
|
55
|
+
"at_least_8_characters": "Au moins 8 caractères",
|
|
56
|
+
"password_again": "Mot de passe (à nouveau)",
|
|
57
|
+
"add_auto_expiration": "Ajouter l'expiration automatique",
|
|
58
|
+
"days": "jours",
|
|
59
|
+
"please_enter_password": "Entrez un mot de passe",
|
|
60
|
+
"greater_than_or_equal_to": "Plus grand ou égale à",
|
|
61
|
+
"less_than_or_equal_to": "Plus petit ou égal à",
|
|
62
|
+
"set_permission": "Définir la permission",
|
|
63
|
+
"preview_and_download": "Prévisualiser et télécharger",
|
|
64
|
+
"preview_only": "Aperçu uniquement",
|
|
65
|
+
"please_enter_valid_days": "Saisissez un nombre de jours valide",
|
|
66
|
+
"please_enter_a_non-negative_integer": "Veuillez introduire un intégrateur non-négatif",
|
|
67
|
+
"please_enter_days": "Veuillez entrer un nombre de jours",
|
|
68
|
+
"password_is_too_short": "Le mot de passe est trop court",
|
|
69
|
+
"passwords_do_not_match": "Les mots de passe ne correspondent pas",
|
|
70
|
+
"return_to_wiki_page": "Retour à la page du Wiki",
|
|
71
|
+
"insert_network_image": "Insérer une image du réseau",
|
|
72
|
+
"upload_local_image": "Insérer une image locale",
|
|
73
|
+
"add_link": "Ajouter un lien",
|
|
74
|
+
"file_history": "Historique du fichier",
|
|
75
|
+
"history_version": "Historique des versions",
|
|
76
|
+
"back_to_viewer": "Retour au visualiseur",
|
|
77
|
+
"link_title": "Titre du lien",
|
|
78
|
+
"local_draft": "Brouillon local",
|
|
79
|
+
"use_draft": "Utiliser le brouillon",
|
|
80
|
+
"delete_draft": "Supprimer le brouillon",
|
|
81
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "Vous avez un brouillon qui n'est pas sauvé. Voulez-vous l'utiliser ?",
|
|
82
|
+
"local_draft_saved": "Brouillon local sauvegardé",
|
|
83
|
+
"new_draft": "Nouveau brouillon",
|
|
84
|
+
"edit_draft": "Éditer brouillon",
|
|
85
|
+
"this_file_has_a_draft": "Ce fichier possède un brouillon.",
|
|
86
|
+
"delete": "Supprimer",
|
|
87
|
+
"comments": "Commentaires",
|
|
88
|
+
"add_a_comment": "Ajouter un commentaire ...",
|
|
89
|
+
"no_comment_yet": "Pas encore de commentaire.",
|
|
90
|
+
"Mark_as_Resolved": "Marqué comme résolu",
|
|
91
|
+
"ask_for_review": "Demande d'un avis",
|
|
92
|
+
"review_already_exists": "Un avis existe déjà",
|
|
93
|
+
"view_review": "Voir l'avis",
|
|
94
|
+
"there_is_an_associated_review_with_this_file": "Il y a un avis associé à ce fichier",
|
|
95
|
+
"start_review": "Commencer l'avis",
|
|
96
|
+
"this_file_is_in_draft_stage": "Ce fichier est à l'état de brouillon",
|
|
97
|
+
"this_file_is_in_review_stage": "Ce fichier est à l'état d'avis",
|
|
98
|
+
"this_file_has_been_updated": "Ce fichier à bien été mis à jour.",
|
|
99
|
+
"refresh": "Rafraichir",
|
|
100
|
+
"related_files": "Fichiers relatifs",
|
|
101
|
+
"related_file": "Fichier relatif",
|
|
102
|
+
"no_tags": "Pas de tag",
|
|
103
|
+
"no_related_files": "Aucun fichier relatif",
|
|
104
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "",
|
|
105
|
+
"userHelp": {
|
|
106
|
+
"title": "Raccourcis clavier",
|
|
107
|
+
"userHelpData": [
|
|
108
|
+
{
|
|
109
|
+
"shortcutType":"Liste des raccourcis",
|
|
110
|
+
"shortcutData": {
|
|
111
|
+
"Make_list": "Faire une liste",
|
|
112
|
+
"Make_ordered_list": "Faire une liste ordonnée",
|
|
113
|
+
"Insert_new_item": "Insérer un nouvel élément",
|
|
114
|
+
"Insert_child_in_item": "Insérer enfant dans l'élément",
|
|
115
|
+
"Increase_depth": "Améliorer la profondeur"
|
|
116
|
+
}
|
|
117
|
+
}, {
|
|
118
|
+
"shortcutType": "Raccourcis en-tête",
|
|
119
|
+
"shortcutData": {
|
|
120
|
+
"Heading_1": "Titre 1",
|
|
121
|
+
"Heading_2": "Titre 2",
|
|
122
|
+
"Heading_3": "Titre 3",
|
|
123
|
+
"Heading_4": "Titre 4",
|
|
124
|
+
"Heading_5": "Titre 5",
|
|
125
|
+
"Heading_6": "Titre 6"
|
|
126
|
+
}
|
|
127
|
+
}, {
|
|
128
|
+
"shortcutType": "Raccourcis de blocs de code",
|
|
129
|
+
"shortcutData": {
|
|
130
|
+
"Make_code_block": "Faire un bloc de code",
|
|
131
|
+
"Insert_new_line": "Insérer une nouvelle ligne",
|
|
132
|
+
"Escape_code_block": "Sortir du bloc de code",
|
|
133
|
+
"Insert_indent": "Insérer un espace"
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
"shortcutType": "Raccourcis blocs de citation",
|
|
137
|
+
"shortcutData": {
|
|
138
|
+
"Make_Block_quote": "Faire un bloc de citation",
|
|
139
|
+
"Escape_Block_quote": "Sortir du bloc de citation"
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
"shortcutType": "Raccourcis table",
|
|
143
|
+
"shortcutData": {
|
|
144
|
+
"Insert_Table_Row": "Insérer une ligne à la table",
|
|
145
|
+
"Escape_table": "Sortir de la table"
|
|
146
|
+
}
|
|
147
|
+
}, {
|
|
148
|
+
"shortcutType":"Raccourcis en ligne",
|
|
149
|
+
"shortcutData": {
|
|
150
|
+
"Bold": "Gras",
|
|
151
|
+
"Italic": "Italique",
|
|
152
|
+
"Italic_Bold": "Italique Gras",
|
|
153
|
+
"Inline_code": "Ligne de code"
|
|
154
|
+
}
|
|
155
|
+
}, {
|
|
156
|
+
"shortcutType": "Sauvegarder les raccourcis",
|
|
157
|
+
"shortcutData": {
|
|
158
|
+
"Save_file": "Sauvegarder fichier"
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
"shortcutType": "Raccourcis image",
|
|
162
|
+
"shortcutData": {
|
|
163
|
+
"Paste_screen_shot": "Coller la capture d'écran",
|
|
164
|
+
"Drag_image_from_anywhere_to_upload_it": "Glisser l'image de n'importe où pour l'envoyer"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bold": "Grassetto",
|
|
3
|
+
"italic": "Corsivo",
|
|
4
|
+
"inline_code": "Codice",
|
|
5
|
+
"header_one": "Titolo 1",
|
|
6
|
+
"header_two": "Titolo 2",
|
|
7
|
+
"header_three": "Titolo 3",
|
|
8
|
+
"header_four": "Titolo 4",
|
|
9
|
+
"header_five": "Intestazione 5",
|
|
10
|
+
"header_six": "Intestazione 6",
|
|
11
|
+
"paragraph": "Paragrafo",
|
|
12
|
+
"quote": "Citazione",
|
|
13
|
+
"ordered_list": "Lista ordinata",
|
|
14
|
+
"unordered_list": "Lista non ordinata",
|
|
15
|
+
"check_list_item": "Controlla la voce dell'elenco",
|
|
16
|
+
"insert_image": "Inserisci Immagine",
|
|
17
|
+
"code": "Codice in linea",
|
|
18
|
+
"code_block": "Codice",
|
|
19
|
+
"insert_link": "Inserisci Collegamento",
|
|
20
|
+
"insert_table": "Inserisci tabella",
|
|
21
|
+
"save": "Salvare",
|
|
22
|
+
"more": "Altro",
|
|
23
|
+
"invalid_url": "URL non valida",
|
|
24
|
+
"link_address": "Indirizzo collegamento",
|
|
25
|
+
"image_address": "Indirizzo Immagine",
|
|
26
|
+
"submit": "Invia",
|
|
27
|
+
"cancel": "Annulla",
|
|
28
|
+
"switch_to_plain_text_editor": "Passa all'Editor di testo semplice",
|
|
29
|
+
"switch_to_rich_text_editor": "Passa all'Editor di testo formattato",
|
|
30
|
+
"switch_to_viewer": "Passa alla vista di tipo Markdown",
|
|
31
|
+
"help": "Aiuto",
|
|
32
|
+
"remove_table": "Rimuovere Tabella",
|
|
33
|
+
"column": "Colonna",
|
|
34
|
+
"row": "Riga",
|
|
35
|
+
"set_align": "Imposta allineamento",
|
|
36
|
+
"left": "Sinistra",
|
|
37
|
+
"center": "Centrato",
|
|
38
|
+
"right": "Destra",
|
|
39
|
+
"file_saved": "File salvato.",
|
|
40
|
+
"file_failed_to_save": "Errore salvataggio file.",
|
|
41
|
+
"star": "Aggiungi asterisco",
|
|
42
|
+
"unstar": "Rimozione asterisco",
|
|
43
|
+
"back_to_parent_directory":"Torna alla cartella precedente",
|
|
44
|
+
"edit":"modifica",
|
|
45
|
+
"copy": "Copia",
|
|
46
|
+
"copied": "Copiato",
|
|
47
|
+
"internal_link": "Collegamento interno",
|
|
48
|
+
"copy_internal_link": "Il collegamento interno è stato copiato negli appunti",
|
|
49
|
+
"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.",
|
|
50
|
+
"share": "Condividi",
|
|
51
|
+
"share_link": "Condividi Collegamento",
|
|
52
|
+
"generate": "Generare",
|
|
53
|
+
"add_password_protection": "Aggiungi la protezione password",
|
|
54
|
+
"password": "Password",
|
|
55
|
+
"at_least_8_characters": "almeno 8 caratteri",
|
|
56
|
+
"password_again": "Ridigita password",
|
|
57
|
+
"add_auto_expiration": "Aggiungi la scadenza automatica",
|
|
58
|
+
"days": "giorni",
|
|
59
|
+
"please_enter_password": "Per favore, inserisci la password",
|
|
60
|
+
"greater_than_or_equal_to": "Maggiore o uguale a ",
|
|
61
|
+
"less_than_or_equal_to": "Minore o uguale a",
|
|
62
|
+
"set_permission": "Imposta permessi",
|
|
63
|
+
"preview_and_download": "Anteprima e download",
|
|
64
|
+
"preview_only": "Solo Anteprima",
|
|
65
|
+
"please_enter_valid_days": "Si prega di inserire giorni validi",
|
|
66
|
+
"please_enter_a_non-negative_integer": "Prego inserire un intero non negativo",
|
|
67
|
+
"please_enter_days": "Prego inserire i giorni",
|
|
68
|
+
"password_is_too_short": "La password è troppo corta",
|
|
69
|
+
"passwords_do_not_match": "Le password non corrispondono",
|
|
70
|
+
"return_to_wiki_page": "Torna alla pagina Wiki",
|
|
71
|
+
"insert_network_image": "Inserisci immagine di rete",
|
|
72
|
+
"upload_local_image": "Inserisci immagine locale",
|
|
73
|
+
"add_link": "Aggiungi collegamento",
|
|
74
|
+
"file_history": "Cronologia dei file",
|
|
75
|
+
"history_version": "Versioni cronologia",
|
|
76
|
+
"back_to_viewer": "Torma alla vista",
|
|
77
|
+
"link_title": "Link al titolo",
|
|
78
|
+
"local_draft": "Bozza locale",
|
|
79
|
+
"use_draft": "Usa bozza",
|
|
80
|
+
"delete_draft": "Rimuovi Bozza",
|
|
81
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "Hai una bozza non salvata. La vuoi utilizzare?",
|
|
82
|
+
"local_draft_saved": "Bozza salvata in locale",
|
|
83
|
+
"new_draft": "Nuova Bozza",
|
|
84
|
+
"edit_draft": "Modifica Bozza",
|
|
85
|
+
"this_file_has_a_draft": "Questo file è una bozza",
|
|
86
|
+
"delete": "Elimina",
|
|
87
|
+
"comments": "Commenti",
|
|
88
|
+
"add_a_comment": "Aggiungi un commento...",
|
|
89
|
+
"no_comment_yet": "Ancora nessun commento.",
|
|
90
|
+
"Mark_as_Resolved": "Contrassegnato come risolto",
|
|
91
|
+
"ask_for_review": "Richiedi una revisione",
|
|
92
|
+
"review_already_exists": "Revisione già esistente",
|
|
93
|
+
"view_review": "Visualizza revisione",
|
|
94
|
+
"there_is_an_associated_review_with_this_file": "C'è una recensione associata con questo file.",
|
|
95
|
+
"start_review": "Inizia Revisione",
|
|
96
|
+
"this_file_is_in_draft_stage": "Questo file è in fase di bozza.",
|
|
97
|
+
"this_file_is_in_review_stage": "Questo file è in fase di revisione.",
|
|
98
|
+
"this_file_has_been_updated": "Questo file è stato aggiornato.",
|
|
99
|
+
"refresh": "Aggiornare",
|
|
100
|
+
"related_files": "file correlati",
|
|
101
|
+
"related_file": "file correlato",
|
|
102
|
+
"no_tags": "Nessun tag",
|
|
103
|
+
"no_related_files": "Nessun file correlato",
|
|
104
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "",
|
|
105
|
+
"userHelp": {
|
|
106
|
+
"title": "Tasti rapidi",
|
|
107
|
+
"userHelpData": [
|
|
108
|
+
{
|
|
109
|
+
"shortcutType":"Elenca scorciatoie",
|
|
110
|
+
"shortcutData": {
|
|
111
|
+
"Make_list": "Crea elenco",
|
|
112
|
+
"Make_ordered_list": "Crea elenco ordinato",
|
|
113
|
+
"Insert_new_item": "Inserisci un nuovo elemento",
|
|
114
|
+
"Insert_child_in_item": "Inserisci un elemento figlio sotto questo elemento",
|
|
115
|
+
"Increase_depth": "Aumenta la profondità"
|
|
116
|
+
}
|
|
117
|
+
}, {
|
|
118
|
+
"shortcutType": "Scorciatoie principali",
|
|
119
|
+
"shortcutData": {
|
|
120
|
+
"Heading_1": "Titolo 1",
|
|
121
|
+
"Heading_2": "Titolo 2",
|
|
122
|
+
"Heading_3": "Titolo 3",
|
|
123
|
+
"Heading_4": "Titolo 4",
|
|
124
|
+
"Heading_5": "Intestazione 5",
|
|
125
|
+
"Heading_6": "Intestazione 6"
|
|
126
|
+
}
|
|
127
|
+
}, {
|
|
128
|
+
"shortcutType": "Scorciatoie di codice",
|
|
129
|
+
"shortcutData": {
|
|
130
|
+
"Make_code_block": "Crea un blocco di codice",
|
|
131
|
+
"Insert_new_line": "Inserisci nuova linea",
|
|
132
|
+
"Escape_code_block": "Codice di escape",
|
|
133
|
+
"Insert_indent": "Inserisci indentazione"
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
"shortcutType": "Blocco scorciatoie di citazione",
|
|
137
|
+
"shortcutData": {
|
|
138
|
+
"Make_Block_quote": "Crea blocco citazioni",
|
|
139
|
+
"Escape_Block_quote": "Escape Blocco Codice"
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
"shortcutType": "Scorciatoie Tabella",
|
|
143
|
+
"shortcutData": {
|
|
144
|
+
"Insert_Table_Row": "Inserisci riga nella tabella",
|
|
145
|
+
"Escape_table": "Escape tabella"
|
|
146
|
+
}
|
|
147
|
+
}, {
|
|
148
|
+
"shortcutType":"Scorciatoie in linea",
|
|
149
|
+
"shortcutData": {
|
|
150
|
+
"Bold": "Grassetto",
|
|
151
|
+
"Italic": "Corsivo",
|
|
152
|
+
"Italic_Bold": "Corsivo Grassetto",
|
|
153
|
+
"Inline_code": "Codice in linea"
|
|
154
|
+
}
|
|
155
|
+
}, {
|
|
156
|
+
"shortcutType": "Salva scorciatoie",
|
|
157
|
+
"shortcutData": {
|
|
158
|
+
"Save_file": "Salva file"
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
"shortcutType": "Scorciatoie per le immagini",
|
|
162
|
+
"shortcutData": {
|
|
163
|
+
"Paste_screen_shot": "Incolla la schermata",
|
|
164
|
+
"Drag_image_from_anywhere_to_upload_it": "Trascina l'immagine da qualsiasi posizione per caricarla"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bold": "Полужирный",
|
|
3
|
+
"italic": "Курсив",
|
|
4
|
+
"inline_code": "Код",
|
|
5
|
+
"header_one": "Заголовок 1",
|
|
6
|
+
"header_two": "Заголовок 2",
|
|
7
|
+
"header_three": "Заголовок 3",
|
|
8
|
+
"header_four": "Заголовок 4",
|
|
9
|
+
"header_five": "Заголовок 5",
|
|
10
|
+
"header_six": "Заголовок 6",
|
|
11
|
+
"paragraph": "Параграф",
|
|
12
|
+
"quote": "Цитата",
|
|
13
|
+
"ordered_list": "Нумерованный список",
|
|
14
|
+
"unordered_list": "Маркированный список",
|
|
15
|
+
"check_list_item": "Проверка элемента списка",
|
|
16
|
+
"insert_image": "Вставить изображение",
|
|
17
|
+
"code": "Встроенный код",
|
|
18
|
+
"code_block": "Блок кода",
|
|
19
|
+
"insert_link": "Вставить ссылку",
|
|
20
|
+
"insert_table": "Вставить таблицу",
|
|
21
|
+
"save": "Сохранить",
|
|
22
|
+
"more": "Подробнее",
|
|
23
|
+
"invalid_url": "Недопустимый URL",
|
|
24
|
+
"link_address": "Адрес ссылки",
|
|
25
|
+
"image_address": "Адрес изображения",
|
|
26
|
+
"submit": "Отправить",
|
|
27
|
+
"cancel": "Отменить",
|
|
28
|
+
"switch_to_plain_text_editor": "Переключиться на обычный текстовый редактор",
|
|
29
|
+
"switch_to_rich_text_editor": "Переключиться на визуальный редактор",
|
|
30
|
+
"switch_to_viewer": "Переключиться на просмотр Markdown",
|
|
31
|
+
"help": "Помощь",
|
|
32
|
+
"remove_table": "Удалить таблицу",
|
|
33
|
+
"column": "Столбец",
|
|
34
|
+
"row": "Строка",
|
|
35
|
+
"set_align": "Установить выравнивание",
|
|
36
|
+
"left": "Слева",
|
|
37
|
+
"center": "По центру",
|
|
38
|
+
"right": "Справа",
|
|
39
|
+
"file_saved": "Файл сохранен.",
|
|
40
|
+
"file_failed_to_save": "Не удалось сохранить файл.",
|
|
41
|
+
"star": "Добавить пометку",
|
|
42
|
+
"unstar": "Удалить пометку",
|
|
43
|
+
"back_to_parent_directory":"Вернуться в родительский каталог",
|
|
44
|
+
"edit":"изменить",
|
|
45
|
+
"copy": "Копировать",
|
|
46
|
+
"copied": "Скопировано",
|
|
47
|
+
"internal_link": "Внутренняя ссылка",
|
|
48
|
+
"copy_internal_link": "Внутренняя ссылка скопирована в буфер обмена",
|
|
49
|
+
"internal_link_desc": "Внутренняя ссылка - это ссылка на файл или папку, к которым могут обращаться пользователи с правами на чтение файла или папки.",
|
|
50
|
+
"share": "Общий доступ",
|
|
51
|
+
"share_link": "Общедоступная ссылка",
|
|
52
|
+
"generate": "Создать",
|
|
53
|
+
"add_password_protection": "Защитить паролем",
|
|
54
|
+
"password": "Пароль",
|
|
55
|
+
"at_least_8_characters": "не менее 8 символов",
|
|
56
|
+
"password_again": "Подтвердите пароль",
|
|
57
|
+
"add_auto_expiration": "Добавить авто истечение срока действия",
|
|
58
|
+
"days": "дней",
|
|
59
|
+
"please_enter_password": "Пожалуйста, введите пароль",
|
|
60
|
+
"greater_than_or_equal_to": "Больше или равно",
|
|
61
|
+
"less_than_or_equal_to": "Меньше или равно",
|
|
62
|
+
"set_permission": "Установить разрешения",
|
|
63
|
+
"preview_and_download": "Предпросмотр и скачивание",
|
|
64
|
+
"preview_only": "Только предпросмотр",
|
|
65
|
+
"please_enter_valid_days": "Пожалуйста, введите корректные дни",
|
|
66
|
+
"please_enter_a_non-negative_integer": "Пожалуйста, введите неотрицательное целое число",
|
|
67
|
+
"please_enter_days": "Пожалуйста, введите дни",
|
|
68
|
+
"password_is_too_short": "Пароль слишком короткий",
|
|
69
|
+
"passwords_do_not_match": "Пароли не совпадают",
|
|
70
|
+
"return_to_wiki_page": "Вернуться на страницу Wiki",
|
|
71
|
+
"insert_network_image": "Вставить удаленное изображение",
|
|
72
|
+
"upload_local_image": "Загрузить локальное изображение",
|
|
73
|
+
"add_link": "Добавить ссылку",
|
|
74
|
+
"file_history": "История файла",
|
|
75
|
+
"history_version": "История версий",
|
|
76
|
+
"back_to_viewer": "Вернуться к просмотру",
|
|
77
|
+
"link_title": "Название ссылки",
|
|
78
|
+
"local_draft": "Локальный черновик",
|
|
79
|
+
"use_draft": "Использовать черновик",
|
|
80
|
+
"delete_draft": "Удалить черновик",
|
|
81
|
+
"you_have_an_unsaved_draft_do_you_like_to_use_it": "У вас есть несохраненный черновик. Хотите использовать его?",
|
|
82
|
+
"local_draft_saved": "Локальный черновик сохранен",
|
|
83
|
+
"new_draft": "Новый черновик",
|
|
84
|
+
"edit_draft": "Изменить черновик",
|
|
85
|
+
"this_file_has_a_draft": "Этот файл имеет черновик.",
|
|
86
|
+
"delete": "Удалить",
|
|
87
|
+
"comments": "Комментарии",
|
|
88
|
+
"add_a_comment": "Добавить комментарий...",
|
|
89
|
+
"no_comment_yet": "Комментариев пока нет.",
|
|
90
|
+
"Mark_as_Resolved": "Отметить как разрешенный",
|
|
91
|
+
"ask_for_review": "Спросить отзыв",
|
|
92
|
+
"review_already_exists": "Отзыв уже существует",
|
|
93
|
+
"view_review": "Просмотр отзыва",
|
|
94
|
+
"there_is_an_associated_review_with_this_file": "Есть связанный отзыв с этим файлом.",
|
|
95
|
+
"start_review": "Начать отзыв",
|
|
96
|
+
"this_file_is_in_draft_stage": "Этот файл находится в стадии черновика.",
|
|
97
|
+
"this_file_is_in_review_stage": "Этот файл находится на стадии проверки.",
|
|
98
|
+
"this_file_has_been_updated": "Этот файл был обновлен.",
|
|
99
|
+
"refresh": "Обновить",
|
|
100
|
+
"related_files": "связанные файлы",
|
|
101
|
+
"related_file": "связанный файл",
|
|
102
|
+
"no_tags": "Нет тегов",
|
|
103
|
+
"no_related_files": "Нет связанных файлов",
|
|
104
|
+
"Editing_files_in_this_browser_can_lead_to_slight_display_problems": "",
|
|
105
|
+
"userHelp": {
|
|
106
|
+
"title": "Горячие клавиши",
|
|
107
|
+
"userHelpData": [
|
|
108
|
+
{
|
|
109
|
+
"shortcutType":"Список горячих клавиш",
|
|
110
|
+
"shortcutData": {
|
|
111
|
+
"Make_list": "Создать список",
|
|
112
|
+
"Make_ordered_list": "Создать нумерованный список",
|
|
113
|
+
"Insert_new_item": "Вставить новый элемент",
|
|
114
|
+
"Insert_child_in_item": "Вставить дочерний в элемент",
|
|
115
|
+
"Increase_depth": "Увеличить глубину"
|
|
116
|
+
}
|
|
117
|
+
}, {
|
|
118
|
+
"shortcutType": "Горячие клавиши для заголовка",
|
|
119
|
+
"shortcutData": {
|
|
120
|
+
"Heading_1": "Заголовок 1",
|
|
121
|
+
"Heading_2": "Заголовок 2",
|
|
122
|
+
"Heading_3": "Заголовок 3",
|
|
123
|
+
"Heading_4": "Заголовок 4",
|
|
124
|
+
"Heading_5": "Заголовок 5",
|
|
125
|
+
"Heading_6": "Заголовок 6"
|
|
126
|
+
}
|
|
127
|
+
}, {
|
|
128
|
+
"shortcutType": "Горячие клавиши для кода",
|
|
129
|
+
"shortcutData": {
|
|
130
|
+
"Make_code_block": "Создать блок кода",
|
|
131
|
+
"Insert_new_line": "Вставить новую строку",
|
|
132
|
+
"Escape_code_block": "Выделить блок кода",
|
|
133
|
+
"Insert_indent": "Вставить отступ"
|
|
134
|
+
}
|
|
135
|
+
}, {
|
|
136
|
+
"shortcutType": "Горячие клавиши для блока цитаты",
|
|
137
|
+
"shortcutData": {
|
|
138
|
+
"Make_Block_quote": "Создать блок цитаты",
|
|
139
|
+
"Escape_Block_quote": "Выделить блок цитаты"
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
"shortcutType": "Горячие клавиши для таблицы",
|
|
143
|
+
"shortcutData": {
|
|
144
|
+
"Insert_Table_Row": "Вставить строку таблицы",
|
|
145
|
+
"Escape_table": "Выделить таблицу"
|
|
146
|
+
}
|
|
147
|
+
}, {
|
|
148
|
+
"shortcutType":"Встроенные горячие клавиши",
|
|
149
|
+
"shortcutData": {
|
|
150
|
+
"Bold": "Полужирный",
|
|
151
|
+
"Italic": "Курсив",
|
|
152
|
+
"Italic_Bold": "Курсив Полужирный",
|
|
153
|
+
"Inline_code": "Встроенный код"
|
|
154
|
+
}
|
|
155
|
+
}, {
|
|
156
|
+
"shortcutType": "Сохранить горячие клавиши",
|
|
157
|
+
"shortcutData": {
|
|
158
|
+
"Save_file": "Сохранить файл"
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
"shortcutType": "Горячие клавиши для изображений",
|
|
162
|
+
"shortcutData": {
|
|
163
|
+
"Paste_screen_shot": "Вставить скриншот",
|
|
164
|
+
"Drag_image_from_anywhere_to_upload_it": "Перетащите изображение для загрузки"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|