@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.
Files changed (22) hide show
  1. package/dist/basic-sdk/extension/constants/element-type.js +8 -8
  2. package/dist/basic-sdk/extension/constants/menus-config.js +27 -16
  3. package/dist/basic-sdk/extension/plugins/file-link/render-elem.css +4 -0
  4. package/dist/basic-sdk/extension/plugins/file-link/render-elem.js +1 -4
  5. package/dist/basic-sdk/extension/plugins/font/helpers.js +16 -12
  6. package/dist/basic-sdk/extension/plugins/html/rules/text.js +5 -5
  7. package/dist/basic-sdk/extension/plugins/markdown/plugin.js +4 -4
  8. package/dist/basic-sdk/extension/plugins/table/constants/index.js +5 -2
  9. package/dist/basic-sdk/extension/plugins/table/helpers.js +13 -8
  10. package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/cell-bg-color-menu.js +1 -1
  11. package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/cell-text-align-menu.js +3 -3
  12. package/dist/basic-sdk/extension/plugins/table/render/render-cell.js +2 -2
  13. package/dist/basic-sdk/extension/plugins/table/render/render-row.js +7 -9
  14. package/dist/basic-sdk/extension/plugins/table/render/table-header/rows-header/row-header.js +3 -3
  15. package/dist/basic-sdk/extension/plugins/text-style/plugin.js +3 -2
  16. package/dist/basic-sdk/extension/plugins/text-style/render-elem.js +20 -19
  17. package/dist/basic-sdk/utils/diff.js +16 -16
  18. package/package.json +1 -1
  19. package/public/locales/fr/sdoc-editor.json +154 -152
  20. package/public/locales/ru/sdoc-editor.json +50 -48
  21. package/public/locales/zh_CN/sdoc-editor.json +2 -1
  22. 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, 'ADD', ADDED_STYLE);
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, 'DELETE', DELETED_STYLE);
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
- }), 'DELETE', DELETED_STYLE), generatorDiffElement(_objectSpread(_objectSpread({}, element), {}, {
102
+ }), TEXT_STYLE_MAP.DELETE, DELETED_STYLE), generatorDiffElement(_objectSpread(_objectSpread({}, element), {}, {
103
103
  id: "".concat(elementId, "_add")
104
- }), 'ADD', ADDED_STYLE)];
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, 'ADD', ADDED_STYLE));
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, 'DELETE', DELETED_STYLE));
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
- }), 'ADD', ADDED_STYLE));
150
+ }), TEXT_STYLE_MAP.ADD, ADDED_STYLE));
151
151
  newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, oldChildrenElement), {}, {
152
152
  id: element.id + '_delete'
153
- }), 'DELETE', DELETED_STYLE));
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
- }), 'DELETE', DELETED_STYLE));
163
+ }), TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
164
164
  newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, newChildrenElement), {}, {
165
165
  id: newChildrenElement.id + '_add'
166
- }), 'ADD', ADDED_STYLE));
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
- }), 'DELETE', DELETED_STYLE));
181
+ }), TEXT_STYLE_MAP.DELETE, DELETED_STYLE));
182
182
  newChildren.push(generatorDiffTextElement(_objectSpread(_objectSpread({}, newChildrenElement), {}, {
183
183
  id: newChildrenElement.id + '_add'
184
- }), 'ADD', ADDED_STYLE));
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, 'DELETE', DELETED_STYLE);
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, 'ADD', ADDED_STYLE);
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@seafile/sdoc-editor",
3
- "version": "0.1.157",
3
+ "version": "0.1.159",
4
4
  "private": false,
5
5
  "description": "This is a sdoc editor",
6
6
  "main": "dist/index.js",
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "Bold": "Gras",
3
3
  "Italic": "Italique",
4
- "Underline": "Underline",
4
+ "Underline": "Souligné",
5
5
  "Strikethrough": "Barré",
6
- "Superscript": "Superscript",
7
- "Subscript": "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": "Check list item",
20
- "Insert_image": "Insert image",
21
- "Insert_formula": "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": "Insert file",
23
+ "Insert_file": "Insérer un fichier",
24
24
  "Code": "Ligne de code",
25
- "Code_block": "Code block",
26
- "Insert_link": "Insert link",
27
- "Insert_table": "Insert table",
28
- "Valid_values_for_rows_and_columns": "Valid values for the number of rows and columns are 0 to 50",
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": "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": "Delete table",
43
- "Delete_row": "Delete row",
44
- "Delete_column": "Delete column",
45
- "Insert_row": "Insert row",
46
- "Insert_column": "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": "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": "File history",
85
- "History_version": "History versions",
86
- "Back_to_viewer": "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": "New draft",
94
- "View_draft": "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": "All comments",
102
- "Resolved_comments": "Resolved comments",
103
- "Unresolved_comments": "Unresolved comments",
104
- "Total_1_comment": "Total 1 comment",
105
- "Total_count_comments": "Total {{count}} comments",
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": "Resubmit",
110
- "Resubmitted": "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": "Related files",
121
- "Related_file": "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": "Last update",
142
+ "Last_update": "Dernière mise à jour",
143
143
  "Tags": "Tags",
144
144
  "Add_participants": "Ajouter des participants",
145
- "Clear_format": "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": "The link address is required.",
231
- "The_link_title_is_required": "The link title is required.",
232
- "The_link_address_is_invalid": "The link address is invalid, please enter a correct connection address.",
233
- "All_changes_saved": "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": "Collaborators",
236
- "Online_members": "Online members",
237
- "Me": "me",
238
- "Server_is_not_connected_Operation_will_be_sent_to_server_later": "Server is not connected. Operation will be sent to server later.",
239
- "Server_is_disconnected_Reconnecting": "Server is disconnected. Reconnecting...",
240
- "Server_is_reconnected": "Server is reconnected.",
241
- "Outline": "Outline",
242
- "Headings_you_add_to_the_document_will_appear_here": "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": "redo",
245
- "Undo": "undo",
246
- "Open_link": "Open link",
247
- "Customize_the_number_of_rows_and_columns": "Customize the number of rows and columns",
248
- "Rows": "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": "Please enter title",
251
- "Please_enter_text": "Please enter text",
252
- "Row(s)": "row(s)",
253
- "Column(s)": "column(s)",
254
- "Insert_below": "Insert below",
255
- "Insert_above": "Insert above",
256
- "Insert_on_the_right": "Insert on the right",
257
- "Insert_on_the_left": "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": "Unstarred",
259
+ "Unstarred": "Pas dans les favoris",
260
260
  "Star": "Favoris",
261
261
  "Unstar": "Supprimer",
262
- "Auto_wrap": "Auto wrap",
263
- "Add_comment": "Add comment",
264
- "Delete_comment": "Delete comment",
265
- "Delete_reply": "Delete reply",
266
- "Are_you_sure_to_delete_this_comment": "Are you sure to delete this comment?",
267
- "Are_you_sure_to_delete_this_reply": "Are you sure to delete this reply?",
268
- "Enter_a_comment": "Enter a comment",
269
- "Enter_a_reply": "Enter a reply",
270
- "Reopen_discussion" : "Adding a reply will reopen this 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": "View changes",
273
- "Revision": "Revision",
272
+ "View_changes": "Afficher les modifications",
273
+ "Revision": "Révision",
274
274
  "Error": "Erreur",
275
- "Start_revise": "Start revise",
276
- "Failed_to_execute_operation_on_server": "Failed to execute operation on server, the current operation has been withdrawn",
277
- "Start_revise_tip": "Create a temporary document and modify on it, merge it back after reviewing changes",
278
- "Load_doc_content_error": "Load doc content error",
279
- "Sdoc_format_invalid": "The content of the document does not conform to the sdoc specification",
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": "Unmark as draft",
282
- "Background_color": "Background color",
283
- "No_color": "No color",
284
- "Standard_color": "Standard color",
285
- "Recently_used": "Recently used",
286
- "More_color": "More color",
287
- "White": "White",
288
- "Black": "Black",
289
- "Blue_grey": "Blue_grey",
290
- "Blue": "Blue",
291
- "Sky_blue": "Sky_blue",
292
- "Green": "Green",
293
- "Red": "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": "Yellow",
296
- "Purple": "Purple",
297
- "Light_grey_x": "Light grey {{value}}",
298
- "Dark_grey_x": "Dark grey {{value}}",
299
- "Light_blue_grey_x": "Light blue grey {{value}}",
300
- "Light_blue_x": "Light blue {{value}}",
301
- "Light_sky_blue_x": "Light sky blue {{value}}",
302
- "Light_green_x": "Light green {{value}}",
303
- "Light_red_x": "Light red {{value}}",
304
- "Light_orange_x": "Light orange {{value}}",
305
- "Light_yellow_x": "Light yellow {{value}}",
306
- "Light_purple_x": "Light purple {{value}}",
307
- "Dark_blue_grey_x": "Dark blue grey {{value}}",
308
- "Dark_blue_x": "Dark blue {{value}}",
309
- "Dark_sky_blue_x": "Dark sky blue {{value}}",
310
- "Dark_green_x": "Dark green {{value}}",
311
- "Dark_red_x": "Dark red {{value}}",
312
- "Dark_orange_x": "Dark orange {{value}}",
313
- "Dark_yellow_x": "Dark yellow {{value}}",
314
- "Dark_purple_x": "Dark purple {{value}}",
315
- "Standard_dark_red": "Standard dark red",
316
- "Standard_red": "Standard red",
317
- "Standard_orange": "Standard orange",
318
- "Standard_yellow": "Standard yellow",
319
- "Standard_light_green": "Standard light green",
320
- "Standard_green": "Standard green",
321
- "Standard_light_blue": "Standard light blue",
322
- "Standard_blue": "Standard blue",
323
- "Standard_dark_blue": "Standard dark blue",
324
- "Standard_purple": "Standard purple",
325
- "Highlight_color": "Highlight",
326
- "Font_color": "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": "No revisions",
329
- "1_revision": "1 revision",
330
- "x_revisions": "{{count}} revisions",
331
- "Creator": "Creator",
332
- "Created_time": "Created time",
333
- "Created_at": "Created at",
334
- "Resolved_tip": "Mark as resolved and hide discussion",
335
- "Search_language": "Search language",
336
- "Sdoc_error_tip": "The document has errors and cannot be displayed. Please try to fix it automatically by clicking the button below.",
337
- "Repair": "Repair",
338
- "Font_size": "Font size",
339
- "Increase_font_size": "Increase font size",
340
- "Reduce_font_size": "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": "All fonts",
343
- "Default_font": "Default font",
344
- "Pending_operations_exceed_limit": "There are multiple operations not synced to the server. Please check your network.",
345
- "Recently_saved": "Recently saved",
346
- "Text_Link": "Text Link",
347
- "Icon_and_text_Link": "Icon and text Link",
348
- "Card": "Card",
349
- "Select_sdoc_document": "Select sdoc document",
350
- "Local_file": "Local file",
351
- "Internal_server_exec_operations_error": "An exception occurred on the server, please refresh the page and try again",
352
- "Failed_to_sync_with_server_operations": "Synchronization with the server failed, please refresh the page",
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": "Insert",
355
+ "Insert": "Insérer",
355
356
  "Image": "Image",
356
357
  "Table": "Tableau",
357
358
  "Link": "Lien",
358
- "Transform_to": "Transform to",
359
- "Last_modification": "Last modification",
360
- "Next_modification": "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": "No changes",
363
+ "No_changes": "Pas de changement",
363
364
  "Title": "Titre",
364
- "Subtitle": "Subtitle",
365
- "Link_sdoc": "Link sdoc"
365
+ "Subtitle": "Sous-titre",
366
+ "Link_sdoc": "Lien sdoc",
367
+ "Link_file": "Link file"
366
368
  }