@seafile/sdoc-editor 0.1.157 → 0.1.159
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/basic-sdk/extension/constants/element-type.js +8 -8
- package/dist/basic-sdk/extension/constants/menus-config.js +27 -16
- package/dist/basic-sdk/extension/plugins/file-link/render-elem.css +4 -0
- package/dist/basic-sdk/extension/plugins/file-link/render-elem.js +1 -4
- package/dist/basic-sdk/extension/plugins/font/helpers.js +16 -12
- package/dist/basic-sdk/extension/plugins/html/rules/text.js +5 -5
- package/dist/basic-sdk/extension/plugins/markdown/plugin.js +4 -4
- package/dist/basic-sdk/extension/plugins/table/constants/index.js +5 -2
- package/dist/basic-sdk/extension/plugins/table/helpers.js +13 -8
- package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/cell-bg-color-menu.js +1 -1
- package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/cell-text-align-menu.js +3 -3
- package/dist/basic-sdk/extension/plugins/table/render/render-cell.js +2 -2
- package/dist/basic-sdk/extension/plugins/table/render/render-row.js +7 -9
- package/dist/basic-sdk/extension/plugins/table/render/table-header/rows-header/row-header.js +3 -3
- package/dist/basic-sdk/extension/plugins/text-style/plugin.js +3 -2
- package/dist/basic-sdk/extension/plugins/text-style/render-elem.js +20 -19
- package/dist/basic-sdk/utils/diff.js +16 -16
- package/package.json +1 -1
- package/public/locales/fr/sdoc-editor.json +154 -152
- package/public/locales/ru/sdoc-editor.json +50 -48
- package/public/locales/zh_CN/sdoc-editor.json +2 -1
- package/dist/basic-sdk/extension/plugins/text-style/model.js +0 -11
|
@@ -2,13 +2,13 @@ import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
|
2
2
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
3
3
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
4
4
|
import slugid from 'slugid';
|
|
5
|
-
import { ELEMENT_TYPE, ADDED_STYLE, DELETED_STYLE } from '../../basic-sdk/extension/constants';
|
|
5
|
+
import { ELEMENT_TYPE, ADDED_STYLE, DELETED_STYLE, TEXT_STYLE_MAP } from '../../basic-sdk/extension/constants';
|
|
6
6
|
import ObjectUtils from './object-utils';
|
|
7
7
|
import DiffText from './diff-text';
|
|
8
8
|
import { normalizeChildren } from './document-utils';
|
|
9
9
|
|
|
10
10
|
// ignore
|
|
11
|
-
var IGNORE_KEYS = ['BOLD', 'ITALIC', 'columns', 'minHeight', 'language', 'white_space'];
|
|
11
|
+
var IGNORE_KEYS = ['BOLD', 'ITALIC', 'bold', 'italic', 'columns', 'minHeight', 'min_height', 'language', 'white_space'];
|
|
12
12
|
var generatorDiffTextElement = function generatorDiffTextElement(textElement, diffType) {
|
|
13
13
|
var style = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
14
14
|
if (!textElement) return null;
|
|
@@ -74,11 +74,11 @@ var getTextDiff = function getTextDiff(element, oldElement, diff) {
|
|
|
74
74
|
};
|
|
75
75
|
if (item.added) {
|
|
76
76
|
diff.changes.push(id);
|
|
77
|
-
var commonChild = generatorDiffTextElement(elementItem,
|
|
77
|
+
var commonChild = generatorDiffTextElement(elementItem, TEXT_STYLE_MAP.ADD, ADDED_STYLE);
|
|
78
78
|
newChildren.push(commonChild);
|
|
79
79
|
} else if (item.removed) {
|
|
80
80
|
diff.changes.push(id);
|
|
81
|
-
var _commonChild = generatorDiffTextElement(elementItem,
|
|
81
|
+
var _commonChild = generatorDiffTextElement(elementItem, TEXT_STYLE_MAP.DELETE, DELETED_STYLE);
|
|
82
82
|
newChildren.push(_commonChild);
|
|
83
83
|
} else {
|
|
84
84
|
var _commonChild2 = generatorDiffTextElement(elementItem);
|
|
@@ -99,9 +99,9 @@ var getCommonDiff = function getCommonDiff(element, oldElement, diff) {
|
|
|
99
99
|
diff.changes.push("".concat(elementId, "_delete"));
|
|
100
100
|
return [generatorDiffElement(_objectSpread(_objectSpread({}, oldElement), {}, {
|
|
101
101
|
id: "".concat(elementId, "_delete")
|
|
102
|
-
}),
|
|
102
|
+
}), TEXT_STYLE_MAP.DELETE, DELETED_STYLE), generatorDiffElement(_objectSpread(_objectSpread({}, element), {}, {
|
|
103
103
|
id: "".concat(elementId, "_add")
|
|
104
|
-
}),
|
|
104
|
+
}), TEXT_STYLE_MAP.ADD, ADDED_STYLE)];
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
// Content does not change
|
|
@@ -129,10 +129,10 @@ var getCommonDiff = function getCommonDiff(element, oldElement, diff) {
|
|
|
129
129
|
var oldChildrenElement = oldMap[id];
|
|
130
130
|
if (isAdded) {
|
|
131
131
|
diff.changes.push(id);
|
|
132
|
-
newChildren.push(generatorDiffElement(newChildrenElement,
|
|
132
|
+
newChildren.push(generatorDiffElement(newChildrenElement, TEXT_STYLE_MAP.ADD, ADDED_STYLE));
|
|
133
133
|
} else if (isDelete) {
|
|
134
134
|
diff.changes.push(id);
|
|
135
|
-
newChildren.push(generatorDiffElement(oldChildrenElement,
|
|
135
|
+
newChildren.push(generatorDiffElement(oldChildrenElement, TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
|
|
136
136
|
} else {
|
|
137
137
|
if (ObjectUtils.isSameObject(newChildrenElement, oldChildrenElement, IGNORE_KEYS)) {
|
|
138
138
|
newChildren.push(newChildrenElement);
|
|
@@ -147,10 +147,10 @@ var getCommonDiff = function getCommonDiff(element, oldElement, diff) {
|
|
|
147
147
|
} else {
|
|
148
148
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, element), {}, {
|
|
149
149
|
id: element.id + '_add'
|
|
150
|
-
}),
|
|
150
|
+
}), TEXT_STYLE_MAP.ADD, ADDED_STYLE));
|
|
151
151
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, oldChildrenElement), {}, {
|
|
152
152
|
id: element.id + '_delete'
|
|
153
|
-
}),
|
|
153
|
+
}), TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
|
|
154
154
|
}
|
|
155
155
|
} else if (newChildrenElement.type === ELEMENT_TYPE.LINK) {
|
|
156
156
|
if (newChildrenElement.title !== oldChildrenElement.title) {
|
|
@@ -160,10 +160,10 @@ var getCommonDiff = function getCommonDiff(element, oldElement, diff) {
|
|
|
160
160
|
diff.changes.push(oldChildrenElement.id + '_delete');
|
|
161
161
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, oldChildrenElement), {}, {
|
|
162
162
|
id: oldChildrenElement.id + '_delete'
|
|
163
|
-
}),
|
|
163
|
+
}), TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
|
|
164
164
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, newChildrenElement), {}, {
|
|
165
165
|
id: newChildrenElement.id + '_add'
|
|
166
|
-
}),
|
|
166
|
+
}), TEXT_STYLE_MAP.ADD, ADDED_STYLE));
|
|
167
167
|
} else {
|
|
168
168
|
newChildren.push(newChildrenElement);
|
|
169
169
|
}
|
|
@@ -178,10 +178,10 @@ var getCommonDiff = function getCommonDiff(element, oldElement, diff) {
|
|
|
178
178
|
diff.changes.push(oldChildrenElement.id + '_delete');
|
|
179
179
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, oldChildrenElement), {}, {
|
|
180
180
|
id: oldChildrenElement.id + '_delete'
|
|
181
|
-
}),
|
|
181
|
+
}), TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
|
|
182
182
|
newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, newChildrenElement), {}, {
|
|
183
183
|
id: newChildrenElement.id + '_add'
|
|
184
|
-
}),
|
|
184
|
+
}), TEXT_STYLE_MAP.ADD, ADDED_STYLE));
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -228,14 +228,14 @@ var getElementDiffValue = function getElementDiffValue(currentContent, oldConten
|
|
|
228
228
|
elementIds.forEach(function (elementId) {
|
|
229
229
|
diff.changes.push(elementId);
|
|
230
230
|
var element = oldContentMap[elementId];
|
|
231
|
-
var diffElement = generatorDiffElement(element,
|
|
231
|
+
var diffElement = generatorDiffElement(element, TEXT_STYLE_MAP.DELETE, DELETED_STYLE);
|
|
232
232
|
diff.value.push(diffElement);
|
|
233
233
|
});
|
|
234
234
|
} else if (diffItem.added) {
|
|
235
235
|
elementIds.forEach(function (elementId) {
|
|
236
236
|
diff.changes.push(elementId);
|
|
237
237
|
var element = currentContentMap[elementId];
|
|
238
|
-
var diffElement = generatorDiffElement(element,
|
|
238
|
+
var diffElement = generatorDiffElement(element, TEXT_STYLE_MAP.ADD, ADDED_STYLE);
|
|
239
239
|
diff.value.push(diffElement);
|
|
240
240
|
});
|
|
241
241
|
} else {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Bold": "Gras",
|
|
3
3
|
"Italic": "Italique",
|
|
4
|
-
"Underline": "
|
|
4
|
+
"Underline": "Souligné",
|
|
5
5
|
"Strikethrough": "Barré",
|
|
6
|
-
"Superscript": "
|
|
7
|
-
"Subscript": "
|
|
6
|
+
"Superscript": "Exposant",
|
|
7
|
+
"Subscript": "Indice",
|
|
8
8
|
"Inline_code": "Code",
|
|
9
9
|
"Header_one": "Titre 1",
|
|
10
10
|
"Header_two": "Titre 2",
|
|
@@ -16,22 +16,22 @@
|
|
|
16
16
|
"Quote": "Blockquote",
|
|
17
17
|
"Ordered_list": "Liste ordonnée",
|
|
18
18
|
"Unordered_list": "Liste non ordonnée",
|
|
19
|
-
"Check_list_item": "
|
|
20
|
-
"Insert_image": "
|
|
21
|
-
"Insert_formula": "
|
|
19
|
+
"Check_list_item": "Élément de la liste de vérification",
|
|
20
|
+
"Insert_image": "Insérer une image",
|
|
21
|
+
"Insert_formula": "Insérer formule",
|
|
22
22
|
"Formula": "Formule",
|
|
23
|
-
"Insert_file": "
|
|
23
|
+
"Insert_file": "Insérer un fichier",
|
|
24
24
|
"Code": "Ligne de code",
|
|
25
|
-
"Code_block": "
|
|
26
|
-
"Insert_link": "
|
|
27
|
-
"Insert_table": "
|
|
28
|
-
"Valid_values_for_rows_and_columns": "
|
|
25
|
+
"Code_block": "Bloc de code",
|
|
26
|
+
"Insert_link": "Insérer un lien",
|
|
27
|
+
"Insert_table": "Insérer un tableau",
|
|
28
|
+
"Valid_values_for_rows_and_columns": "Les valeurs valides pour le nombre de lignes et de colonnes sont comprises entre 0 et 50.",
|
|
29
29
|
"Save": "Sauvegarder",
|
|
30
30
|
"More": "Plus",
|
|
31
31
|
"Invalid_url": "L'adresse n'est pas valide.",
|
|
32
32
|
"Link_address": "Adresse du lien",
|
|
33
33
|
"Image_address": "Adresse de l'image",
|
|
34
|
-
"Submit": "
|
|
34
|
+
"Submit": "Soummettre",
|
|
35
35
|
"Cancel": "Annuler",
|
|
36
36
|
"Switch_to_plain_text_editor": "Basculer en éditeur de texte plein",
|
|
37
37
|
"Switch_to_rich_text_editor": "Basculer en éditeur de texte riche",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"Help": "Aide",
|
|
40
40
|
"Column": "Colonne",
|
|
41
41
|
"Row": "Ligne",
|
|
42
|
-
"Delete_table": "
|
|
43
|
-
"Delete_row": "
|
|
44
|
-
"Delete_column": "
|
|
45
|
-
"Insert_row": "
|
|
46
|
-
"Insert_column": "
|
|
42
|
+
"Delete_table": "Supprimer le tableau",
|
|
43
|
+
"Delete_row": "Supprimer la ligne",
|
|
44
|
+
"Delete_column": "Supprimer la colonne",
|
|
45
|
+
"Insert_row": "Insérer une ligne",
|
|
46
|
+
"Insert_column": "Insérer une colonne",
|
|
47
47
|
"Set_align": "Ajuster l'alignement",
|
|
48
48
|
"Left": "Gauche",
|
|
49
49
|
"Center": "Centrer",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"Copy_internal_link": "Le lien interne a été copié dans le presse-papiers.",
|
|
59
59
|
"Internal_link_desc": "Un lien interne est un lien vers un fichier ou un dossier accessible en lecture par un utilisateur.",
|
|
60
60
|
"Share": "Partager",
|
|
61
|
-
"Share_link": "
|
|
61
|
+
"Share_link": "Lien de partage",
|
|
62
62
|
"Generate": "Créer",
|
|
63
63
|
"Add_password_protection": "Ajouter un mot de passe",
|
|
64
64
|
"Password": "Mot de passe",
|
|
@@ -81,33 +81,33 @@
|
|
|
81
81
|
"Insert_network_image": "Insérer une image du réseau",
|
|
82
82
|
"Upload_local_image": "Insérer une image locale",
|
|
83
83
|
"Add_link": "Ajouter un lien",
|
|
84
|
-
"File_history": "
|
|
85
|
-
"History_version": "
|
|
86
|
-
"Back_to_viewer": "
|
|
84
|
+
"File_history": "Historique du fichier",
|
|
85
|
+
"History_version": "Historique des versions",
|
|
86
|
+
"Back_to_viewer": "Retour à l'afficheur",
|
|
87
87
|
"Link_title": "Titre du lien",
|
|
88
88
|
"Local_draft": "Brouillon local",
|
|
89
89
|
"Use_draft": "Utiliser le brouillon",
|
|
90
90
|
"Delete_draft": "Supprimer le brouillon",
|
|
91
91
|
"You_have_an_unsaved_draft_do_you_like_to_use_it": "Vous avez un brouillon qui n'est pas sauvegardé. Voulez-vous l'utiliser ?",
|
|
92
92
|
"Local_draft_saved": "Brouillon local sauvegardé",
|
|
93
|
-
"New_draft": "
|
|
94
|
-
"View_draft": "
|
|
93
|
+
"New_draft": "Nouveau brouillon",
|
|
94
|
+
"View_draft": "Voir le brouillon",
|
|
95
95
|
"Publish": "Publier",
|
|
96
96
|
"This_file_has_a_draft": "Ce fichier possède un brouillon.",
|
|
97
97
|
"Delete": "Supprimer",
|
|
98
98
|
"Reply": "Répondre",
|
|
99
99
|
"Comment": "Commentaire",
|
|
100
100
|
"Comments": "Commentaires",
|
|
101
|
-
"All_comments": "
|
|
102
|
-
"Resolved_comments": "
|
|
103
|
-
"Unresolved_comments": "
|
|
104
|
-
"Total_1_comment": "Total 1
|
|
105
|
-
"Total_count_comments": "Total {{count}}
|
|
101
|
+
"All_comments": "Tous les commentaires",
|
|
102
|
+
"Resolved_comments": "Commentaires traités",
|
|
103
|
+
"Unresolved_comments": "Commentaires non traités",
|
|
104
|
+
"Total_1_comment": "Total 1 commentaire",
|
|
105
|
+
"Total_count_comments": "Total des commentaires {{count}}",
|
|
106
106
|
"Add_a_comment": "Ajouter un commentaire",
|
|
107
107
|
"No_comment_yet": "Aucun commentaire disponible",
|
|
108
108
|
"Mark_as_Resolved": "Marquer com pris en compte",
|
|
109
|
-
"Resubmit": "
|
|
110
|
-
"Resubmitted": "
|
|
109
|
+
"Resubmit": "Resoumettre",
|
|
110
|
+
"Resubmitted": "Soumis à nouveau",
|
|
111
111
|
"Ask_for_review": "Demande d'un avis",
|
|
112
112
|
"Review_already_exists": "Un avis existe déjà.",
|
|
113
113
|
"View_review": "Voir l'avis",
|
|
@@ -117,8 +117,8 @@
|
|
|
117
117
|
"This_file_is_in_review_stage": "Ce fichier est à l'état d'avis.",
|
|
118
118
|
"This_file_has_been_updated": "Ce fichier à été mis à jour.",
|
|
119
119
|
"Refresh": "Rafraichir",
|
|
120
|
-
"Related_files": "
|
|
121
|
-
"Related_file": "
|
|
120
|
+
"Related_files": "Fichiers associés",
|
|
121
|
+
"Related_file": "Fichier associé",
|
|
122
122
|
"No_tags": "Pas de tag",
|
|
123
123
|
"Date": "Date",
|
|
124
124
|
"Participants": "Participants",
|
|
@@ -139,10 +139,10 @@
|
|
|
139
139
|
"Insert_library_image": "Insérer une image d‘une bibliothèque",
|
|
140
140
|
"Size": "Taille",
|
|
141
141
|
"Location": "Emplacement",
|
|
142
|
-
"Last_update": "
|
|
142
|
+
"Last_update": "Dernière mise à jour",
|
|
143
143
|
"Tags": "Tags",
|
|
144
144
|
"Add_participants": "Ajouter des participants",
|
|
145
|
-
"Clear_format": "
|
|
145
|
+
"Clear_format": "Sans formatage",
|
|
146
146
|
"MarkdownLint": {
|
|
147
147
|
"missing_h1": {
|
|
148
148
|
"description": "Il n'y a pas de h1 dans le document.",
|
|
@@ -227,140 +227,142 @@
|
|
|
227
227
|
}
|
|
228
228
|
]
|
|
229
229
|
},
|
|
230
|
-
"The_link_address_is_required": "
|
|
231
|
-
"The_link_title_is_required": "
|
|
232
|
-
"The_link_address_is_invalid": "
|
|
233
|
-
"All_changes_saved": "
|
|
230
|
+
"The_link_address_is_required": "L'adresse du lien est obligatoire.",
|
|
231
|
+
"The_link_title_is_required": "Le titre du lien est obligatoire.",
|
|
232
|
+
"The_link_address_is_invalid": "L'adresse du lien n'est pas valide, veuillez saisir une adresse de connexion correcte.",
|
|
233
|
+
"All_changes_saved": "Tous les changements sont enregistrés",
|
|
234
234
|
"Saving": "Sauvegarde ...",
|
|
235
|
-
"Collaborators": "
|
|
236
|
-
"Online_members": "
|
|
237
|
-
"Me": "
|
|
238
|
-
"Server_is_not_connected_Operation_will_be_sent_to_server_later": "
|
|
239
|
-
"Server_is_disconnected_Reconnecting": "
|
|
240
|
-
"Server_is_reconnected": "
|
|
241
|
-
"Outline": "
|
|
242
|
-
"Headings_you_add_to_the_document_will_appear_here": "
|
|
235
|
+
"Collaborators": "Collaborateurs",
|
|
236
|
+
"Online_members": "Membres en ligne",
|
|
237
|
+
"Me": "moi",
|
|
238
|
+
"Server_is_not_connected_Operation_will_be_sent_to_server_later": "Le serveur n'est pas connecté. L'opération sera envoyée au serveur ultérieurement.",
|
|
239
|
+
"Server_is_disconnected_Reconnecting": "Le serveur est déconnecté. Reconnexion...",
|
|
240
|
+
"Server_is_reconnected": "Le serveur est reconnecté.",
|
|
241
|
+
"Outline": "Contour",
|
|
242
|
+
"Headings_you_add_to_the_document_will_appear_here": "Les titres que vous ajoutez au document apparaissent ici",
|
|
243
243
|
"Open_parent_folder": "Ouvrir dossier parent",
|
|
244
|
-
"Redo": "
|
|
245
|
-
"Undo": "
|
|
246
|
-
"Open_link": "
|
|
247
|
-
"Customize_the_number_of_rows_and_columns": "
|
|
248
|
-
"Rows": "
|
|
244
|
+
"Redo": "refaire",
|
|
245
|
+
"Undo": "annuler",
|
|
246
|
+
"Open_link": "Ouvrir le lien",
|
|
247
|
+
"Customize_the_number_of_rows_and_columns": "Personnaliser le nombre de lignes et de colonnes",
|
|
248
|
+
"Rows": "Lignes",
|
|
249
249
|
"Columns": "Colonnes",
|
|
250
|
-
"Please_enter_title": "
|
|
251
|
-
"Please_enter_text": "
|
|
252
|
-
"Row(s)": "
|
|
253
|
-
"Column(s)": "
|
|
254
|
-
"Insert_below": "
|
|
255
|
-
"Insert_above": "
|
|
256
|
-
"Insert_on_the_right": "
|
|
257
|
-
"Insert_on_the_left": "
|
|
250
|
+
"Please_enter_title": "Veuillez saisir un titre",
|
|
251
|
+
"Please_enter_text": "Veuillez saisir un texte",
|
|
252
|
+
"Row(s)": "ligne(s)",
|
|
253
|
+
"Column(s)": "colonne(s)",
|
|
254
|
+
"Insert_below": "Insérer en-dessous",
|
|
255
|
+
"Insert_above": "Insérer au-dessus",
|
|
256
|
+
"Insert_on_the_right": "Insérer à droite",
|
|
257
|
+
"Insert_on_the_left": "Insérer à gauche",
|
|
258
258
|
"Starred": "Favoris",
|
|
259
|
-
"Unstarred": "
|
|
259
|
+
"Unstarred": "Pas dans les favoris",
|
|
260
260
|
"Star": "Favoris",
|
|
261
261
|
"Unstar": "Supprimer",
|
|
262
|
-
"Auto_wrap": "
|
|
263
|
-
"Add_comment": "
|
|
264
|
-
"Delete_comment": "
|
|
265
|
-
"Delete_reply": "
|
|
266
|
-
"Are_you_sure_to_delete_this_comment": "
|
|
267
|
-
"Are_you_sure_to_delete_this_reply": "
|
|
268
|
-
"Enter_a_comment": "
|
|
269
|
-
"Enter_a_reply": "
|
|
270
|
-
"Reopen_discussion" : "
|
|
262
|
+
"Auto_wrap": "Enveloppement automatique",
|
|
263
|
+
"Add_comment": "Ajouter un commentaire",
|
|
264
|
+
"Delete_comment": "Supprimer le commentaire",
|
|
265
|
+
"Delete_reply": "Supprimer la réponse",
|
|
266
|
+
"Are_you_sure_to_delete_this_comment": "Êtes-vous sûr de vouloir supprimer ce commentaire ?",
|
|
267
|
+
"Are_you_sure_to_delete_this_reply": "Êtes-vous sûr de vouloir supprimer cette réponse ?",
|
|
268
|
+
"Enter_a_comment": "Saisir un commentaire",
|
|
269
|
+
"Enter_a_reply": "Saisir une réponse",
|
|
270
|
+
"Reopen_discussion" : "L'ajout d'une réponse rouvrira la discussion.",
|
|
271
271
|
"Confirm": "Confirmer",
|
|
272
|
-
"View_changes": "
|
|
273
|
-
"Revision": "
|
|
272
|
+
"View_changes": "Afficher les modifications",
|
|
273
|
+
"Revision": "Révision",
|
|
274
274
|
"Error": "Erreur",
|
|
275
|
-
"Start_revise": "
|
|
276
|
-
"Failed_to_execute_operation_on_server": "
|
|
277
|
-
"Start_revise_tip": "
|
|
278
|
-
"Load_doc_content_error": "
|
|
279
|
-
"Sdoc_format_invalid": "
|
|
275
|
+
"Start_revise": "Commencer à réviser",
|
|
276
|
+
"Failed_to_execute_operation_on_server": "Échec de l'exécution de l'opération sur le serveur, l'opération en cours a été annulée.",
|
|
277
|
+
"Start_revise_tip": "Créer un document temporaire et le modifier, le fusionner à nouveau après avoir examiné les modifications.",
|
|
278
|
+
"Load_doc_content_error": "Erreur de chargement du contenu du document",
|
|
279
|
+
"Sdoc_format_invalid": "Le contenu du document n'est pas conforme à la spécification sdoc",
|
|
280
280
|
"Draft": "Brouillon",
|
|
281
|
-
"Unmark_as_draft": "
|
|
282
|
-
"Background_color": "
|
|
283
|
-
"No_color": "
|
|
284
|
-
"Standard_color": "
|
|
285
|
-
"Recently_used": "
|
|
286
|
-
"More_color": "
|
|
287
|
-
"White": "
|
|
288
|
-
"Black": "
|
|
289
|
-
"Blue_grey": "
|
|
290
|
-
"Blue": "
|
|
291
|
-
"Sky_blue": "
|
|
292
|
-
"Green": "
|
|
293
|
-
"Red": "
|
|
281
|
+
"Unmark_as_draft": "Ne pas marquer comme brouillon",
|
|
282
|
+
"Background_color": "Couleur d'arrière-plan",
|
|
283
|
+
"No_color": "Pas de couleur",
|
|
284
|
+
"Standard_color": "Couleur standard",
|
|
285
|
+
"Recently_used": "Récemment utilisée",
|
|
286
|
+
"More_color": "Plus de couleurs",
|
|
287
|
+
"White": "Blanc",
|
|
288
|
+
"Black": "Noir",
|
|
289
|
+
"Blue_grey": "Gris-bleu",
|
|
290
|
+
"Blue": "Bleu",
|
|
291
|
+
"Sky_blue": "Bleu-ciel",
|
|
292
|
+
"Green": "Vert",
|
|
293
|
+
"Red": "Rouge",
|
|
294
294
|
"Orange": "Orange",
|
|
295
|
-
"Yellow": "
|
|
296
|
-
"Purple": "
|
|
297
|
-
"Light_grey_x": "
|
|
298
|
-
"Dark_grey_x": "
|
|
299
|
-
"Light_blue_grey_x": "
|
|
300
|
-
"Light_blue_x": "
|
|
301
|
-
"Light_sky_blue_x": "
|
|
302
|
-
"Light_green_x": "
|
|
303
|
-
"Light_red_x": "
|
|
304
|
-
"Light_orange_x": "
|
|
305
|
-
"Light_yellow_x": "
|
|
306
|
-
"Light_purple_x": "
|
|
307
|
-
"Dark_blue_grey_x": "
|
|
308
|
-
"Dark_blue_x": "
|
|
309
|
-
"Dark_sky_blue_x": "
|
|
310
|
-
"Dark_green_x": "
|
|
311
|
-
"Dark_red_x": "
|
|
312
|
-
"Dark_orange_x": "
|
|
313
|
-
"Dark_yellow_x": "
|
|
314
|
-
"Dark_purple_x": "
|
|
315
|
-
"Standard_dark_red": "
|
|
316
|
-
"Standard_red": "
|
|
317
|
-
"Standard_orange": "
|
|
318
|
-
"Standard_yellow": "
|
|
319
|
-
"Standard_light_green": "
|
|
320
|
-
"Standard_green": "
|
|
321
|
-
"Standard_light_blue": "
|
|
322
|
-
"Standard_blue": "
|
|
323
|
-
"Standard_dark_blue": "
|
|
324
|
-
"Standard_purple": "Standard
|
|
325
|
-
"Highlight_color": "
|
|
326
|
-
"Font_color": "
|
|
295
|
+
"Yellow": "Jaune",
|
|
296
|
+
"Purple": "Pourpre",
|
|
297
|
+
"Light_grey_x": "Gris clair {{value}}",
|
|
298
|
+
"Dark_grey_x": "Gris foncé {{value}}",
|
|
299
|
+
"Light_blue_grey_x": "Gris bleu clair {{value}}",
|
|
300
|
+
"Light_blue_x": "Bleu clair {{value}}",
|
|
301
|
+
"Light_sky_blue_x": "Bleu ciel clair {{value}}",
|
|
302
|
+
"Light_green_x": "Vert clair {{value}}",
|
|
303
|
+
"Light_red_x": "Rouge clair {{value}}",
|
|
304
|
+
"Light_orange_x": "Orange clair {{value}}",
|
|
305
|
+
"Light_yellow_x": "Jaune clair {{value}}",
|
|
306
|
+
"Light_purple_x": "Pourpre clair {{value}}",
|
|
307
|
+
"Dark_blue_grey_x": "Gris bleu foncé {{value}}",
|
|
308
|
+
"Dark_blue_x": "Bleu foncé {{value}}",
|
|
309
|
+
"Dark_sky_blue_x": "Bleu ciel foncé {{value}}",
|
|
310
|
+
"Dark_green_x": "Vert foncé {{value}}",
|
|
311
|
+
"Dark_red_x": "Rouge foncé {{value}}",
|
|
312
|
+
"Dark_orange_x": "Orange foncé {{value}}",
|
|
313
|
+
"Dark_yellow_x": "Jaune foncé {{value}}",
|
|
314
|
+
"Dark_purple_x": "Pourpre foncé {{value}}",
|
|
315
|
+
"Standard_dark_red": "Rouge foncé standard",
|
|
316
|
+
"Standard_red": "Rouge standard",
|
|
317
|
+
"Standard_orange": "Orange standard",
|
|
318
|
+
"Standard_yellow": "Jaune standard",
|
|
319
|
+
"Standard_light_green": "Vert clair standard",
|
|
320
|
+
"Standard_green": "Vert standard",
|
|
321
|
+
"Standard_light_blue": "Bleu clair standard",
|
|
322
|
+
"Standard_blue": "Bleu standard",
|
|
323
|
+
"Standard_dark_blue": "Bleu foncé standard",
|
|
324
|
+
"Standard_purple": "Standard violet",
|
|
325
|
+
"Highlight_color": "Accentuer",
|
|
326
|
+
"Font_color": "Couleur de la police",
|
|
327
327
|
"Default": "Défaut",
|
|
328
|
-
"No_revisions": "
|
|
329
|
-
"1_revision": "1
|
|
330
|
-
"x_revisions": "{{count}}
|
|
331
|
-
"Creator": "
|
|
332
|
-
"Created_time": "
|
|
333
|
-
"Created_at": "
|
|
334
|
-
"Resolved_tip": "
|
|
335
|
-
"Search_language": "
|
|
336
|
-
"Sdoc_error_tip": "
|
|
337
|
-
"Repair": "
|
|
338
|
-
"Font_size": "
|
|
339
|
-
"Increase_font_size": "
|
|
340
|
-
"Reduce_font_size": "
|
|
328
|
+
"No_revisions": "Aucune révision",
|
|
329
|
+
"1_revision": "1 révision",
|
|
330
|
+
"x_revisions": "{{count}} révisions",
|
|
331
|
+
"Creator": "Créateur",
|
|
332
|
+
"Created_time": "Date de création",
|
|
333
|
+
"Created_at": "Créé à ",
|
|
334
|
+
"Resolved_tip": "Marquer comme résolu et masquer la discussion",
|
|
335
|
+
"Search_language": "Recherche de langue",
|
|
336
|
+
"Sdoc_error_tip": "Le document contient des erreurs et ne peut être affiché. Veuillez essayer de le corriger automatiquement en cliquant sur le bouton ci-dessous.",
|
|
337
|
+
"Repair": "Réparation",
|
|
338
|
+
"Font_size": "Taille de la police",
|
|
339
|
+
"Increase_font_size": "Augmenter la taille de la police",
|
|
340
|
+
"Reduce_font_size": "Diminuer la taille de la police",
|
|
341
341
|
"Font": "Police",
|
|
342
|
-
"All_fonts": "
|
|
343
|
-
"Default_font": "
|
|
344
|
-
"Pending_operations_exceed_limit": "
|
|
345
|
-
"Recently_saved": "
|
|
346
|
-
"Text_Link": "
|
|
347
|
-
"Icon_and_text_Link": "
|
|
348
|
-
"Card": "
|
|
349
|
-
"Select_sdoc_document": "
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
-
"
|
|
342
|
+
"All_fonts": "Toutes les polices",
|
|
343
|
+
"Default_font": "Police par défaut",
|
|
344
|
+
"Pending_operations_exceed_limit": "Plusieurs opérations n'ont pas été synchronisées avec le serveur. Veuillez vérifier votre réseau.",
|
|
345
|
+
"Recently_saved": "Récemment sauvegardé",
|
|
346
|
+
"Text_Link": "Lien texte",
|
|
347
|
+
"Icon_and_text_Link": "Icône et texte Lien",
|
|
348
|
+
"Card": "Carte",
|
|
349
|
+
"Select_sdoc_document": "Sélectionner le document sdoc",
|
|
350
|
+
"Select_file": "Select file",
|
|
351
|
+
"Local_file": "Fichier local",
|
|
352
|
+
"Internal_server_exec_operations_error": "Une exception s'est produite sur le serveur, veuillez rafraîchir la page et réessayer.",
|
|
353
|
+
"Failed_to_sync_with_server_operations": "La synchronisation avec le serveur a échoué, veuillez rafraîchir la page.",
|
|
353
354
|
"Style": "Style",
|
|
354
|
-
"Insert": "
|
|
355
|
+
"Insert": "Insérer",
|
|
355
356
|
"Image": "Image",
|
|
356
357
|
"Table": "Tableau",
|
|
357
358
|
"Link": "Lien",
|
|
358
|
-
"Transform_to": "
|
|
359
|
-
"Last_modification": "
|
|
360
|
-
"Next_modification": "
|
|
359
|
+
"Transform_to": "Transformer en",
|
|
360
|
+
"Last_modification": "Dernière modification",
|
|
361
|
+
"Next_modification": "Modification suivante",
|
|
361
362
|
"Changes": "Modifications",
|
|
362
|
-
"No_changes": "
|
|
363
|
+
"No_changes": "Pas de changement",
|
|
363
364
|
"Title": "Titre",
|
|
364
|
-
"Subtitle": "
|
|
365
|
-
"Link_sdoc": "
|
|
365
|
+
"Subtitle": "Sous-titre",
|
|
366
|
+
"Link_sdoc": "Lien sdoc",
|
|
367
|
+
"Link_file": "Link file"
|
|
366
368
|
}
|