@seafile/sdoc-editor 2.0.23 → 2.0.25
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/api/seafile-api.js +4 -1
- package/dist/basic-sdk/extension/commons/insert-element-dialog/index.js +12 -2
- package/dist/basic-sdk/extension/constants/element-type.js +2 -1
- package/dist/basic-sdk/extension/constants/index.js +8 -2
- package/dist/basic-sdk/extension/constants/menus-config.js +5 -0
- package/dist/basic-sdk/extension/plugins/ai/ai-module/index.js +44 -24
- package/dist/basic-sdk/extension/plugins/ai/ai-module/style.css +6 -0
- package/dist/basic-sdk/extension/plugins/index.js +7 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/index.css +414 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/index.js +76 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/record-content.js +209 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/resize-handle/ResizeHandle.js +38 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/resize-handle/index.css +384 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/row-card-header-cell.js +125 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/row-card-header.js +144 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/row-card-item.js +161 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/dialog/add-seatable-row-dialog/seatable-table-record.js +47 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/helpers.js +98 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/index.js +17 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/menu/index.css +3 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/menu/index.js +46 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/menu/seatable-list.js +62 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/model.js +19 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/plugin.js +60 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/render-elem/index.css +124 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/render-elem/index.js +160 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/render-elem/record-header.js +78 -0
- package/dist/basic-sdk/extension/plugins/seatable-row/render-elem/record-item.js +41 -0
- package/dist/basic-sdk/extension/plugins/seatable-tables/formatter/index.js +7 -2
- package/dist/basic-sdk/extension/render/custom-element.js +5 -0
- package/dist/basic-sdk/extension/toolbar/header-toolbar/insert-toolbar/index.js +3 -2
- package/dist/basic-sdk/extension/toolbar/side-toolbar/helpers.js +2 -1
- package/dist/constants/index.js +1 -0
- package/dist/context.js +2 -2
- package/dist/pages/document-plugin-editor.js +2 -1
- package/package.json +1 -1
- package/public/locales/cs/sdoc-editor.json +7 -1
- package/public/locales/de/sdoc-editor.json +66 -60
- package/public/locales/en/sdoc-editor.json +10 -2
- package/public/locales/es/sdoc-editor.json +7 -1
- package/public/locales/es_AR/sdoc-editor.json +7 -1
- package/public/locales/es_MX/sdoc-editor.json +7 -1
- package/public/locales/fr/sdoc-editor.json +240 -234
- package/public/locales/it/sdoc-editor.json +7 -1
- package/public/locales/ru/sdoc-editor.json +8 -2
- package/public/locales/zh_CN/sdoc-editor.json +7 -2
- package/public/media/sdoc-editor-font/iconfont.css +15 -14
- package/public/media/sdoc-editor-font/iconfont.eot +0 -0
- package/public/media/sdoc-editor-font/iconfont.svg +3 -1
- package/public/media/sdoc-editor-font/iconfont.ttf +0 -0
- package/public/media/sdoc-editor-font/iconfont.woff +0 -0
- package/public/media/sdoc-editor-font/iconfont.woff2 +0 -0
- package/public/media/sdoc-editor-font.css +11 -7
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"Quote": "Blockquote",
|
|
17
17
|
"Ordered_list": "Liste ordonnée",
|
|
18
18
|
"Unordered_list": "Liste non ordonnée",
|
|
19
|
-
"Check_list": "
|
|
19
|
+
"Check_list": "Liste case à cocher",
|
|
20
20
|
"Insert_image": "Insérer une image",
|
|
21
21
|
"Insert_formula": "Insérer formule",
|
|
22
22
|
"Formula": "Formule",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"Edit": "Modifier",
|
|
54
54
|
"Copy": "Copier",
|
|
55
55
|
"Copied": "Copié",
|
|
56
|
-
"Cut": "
|
|
56
|
+
"Cut": "Couper",
|
|
57
57
|
"Internal_link": "Lien interne",
|
|
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.",
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
"All_comments": "Tous les commentaires",
|
|
102
102
|
"Resolved_comments": "Commentaires traités",
|
|
103
103
|
"Unresolved_comments": "Commentaires non traités",
|
|
104
|
-
"Total_1_comment": "
|
|
105
|
-
"Total_count_comments": "
|
|
104
|
+
"Total_1_comment": "1 commentaire au total",
|
|
105
|
+
"Total_count_comments": "{{count}} commentaires au total",
|
|
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",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"Refresh": "Rafraichir",
|
|
120
120
|
"Related_files": "Fichiers associés",
|
|
121
121
|
"Related_file": "Fichier associé",
|
|
122
|
-
"No_tags": "
|
|
122
|
+
"No_tags": "Aucun tag",
|
|
123
123
|
"Date": "Date",
|
|
124
124
|
"Participants": "Participants",
|
|
125
125
|
"Meeting_note": "Note de réunion",
|
|
@@ -273,15 +273,15 @@
|
|
|
273
273
|
"Delete_reply": "Supprimer la réponse",
|
|
274
274
|
"Are_you_sure_to_delete_this_comment": "Êtes-vous sûr de vouloir supprimer ce commentaire ?",
|
|
275
275
|
"Are_you_sure_to_delete_this_reply": "Êtes-vous sûr de vouloir supprimer cette réponse ?",
|
|
276
|
-
"Enter_comment_shift_enter_for_new_line_Enter_to_send": "
|
|
277
|
-
"Enter_reply_shift_Enter_for_new_line_Enter_to_send": "
|
|
276
|
+
"Enter_comment_shift_enter_for_new_line_Enter_to_send": "Entrez un commentaire (insérez un retour à la ligne avec MAJ + ENTREE ; envoyez le commentaire avec ENTREE)",
|
|
277
|
+
"Enter_reply_shift_Enter_for_new_line_Enter_to_send": "Entrez une réponse (insérez un retour à la ligne avec MAJ + ENTREE ; envoyez le commentaire avec ENTREE)",
|
|
278
278
|
"Reopen_discussion": "L'ajout d'une réponse rouvrira la discussion.",
|
|
279
279
|
"Confirm": "Confirmer",
|
|
280
280
|
"View_changes": "Afficher les modifications",
|
|
281
281
|
"Revision": "Révision",
|
|
282
282
|
"Error": "Erreur",
|
|
283
283
|
"Start_revise": "Commencer à réviser",
|
|
284
|
-
"Revise": "
|
|
284
|
+
"Revise": "Réviser",
|
|
285
285
|
"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.",
|
|
286
286
|
"Start_revise_tip": "Créer un document temporaire et le modifier, le fusionner à nouveau après avoir examiné les modifications.",
|
|
287
287
|
"Load_doc_content_error": "Erreur de chargement du contenu du document",
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
"Icon_and_text_Link": "Icône et texte Lien",
|
|
357
357
|
"Card": "Carte",
|
|
358
358
|
"Select_sdoc_document": "Sélectionner le document sdoc",
|
|
359
|
-
"Select_file": "
|
|
359
|
+
"Select_file": "Sélectionner un fichier",
|
|
360
360
|
"Local_file": "Fichier local",
|
|
361
361
|
"Internal_server_exec_operations_error": "Une exception s'est produite sur le serveur, veuillez rafraîchir la page et réessayer.",
|
|
362
362
|
"Failed_to_sync_with_server_operations": "La synchronisation avec le serveur a échoué, veuillez rafraîchir la page.",
|
|
@@ -372,246 +372,252 @@
|
|
|
372
372
|
"No_changes": "Pas de changement",
|
|
373
373
|
"Title": "Titre",
|
|
374
374
|
"Subtitle": "Sous-titre",
|
|
375
|
-
"Link_sdoc": "Lien
|
|
376
|
-
"Link_file": "
|
|
377
|
-
"Keep_my_modification": "
|
|
378
|
-
"Keep_other_modification": "
|
|
379
|
-
"Keep_both_modification": "
|
|
380
|
-
"Tip": "
|
|
381
|
-
"Rebase_delete_no_change_revision_tip": "
|
|
382
|
-
"Has_been_replaced_tip": "
|
|
383
|
-
"Has_been_published_tip": "
|
|
384
|
-
"Has_conflict_before_publish_tip": "
|
|
385
|
-
"Merge_tip": "
|
|
386
|
-
"Has_conflict_before_view_changes_tip": "
|
|
387
|
-
"Has_been_removed_tip": "
|
|
388
|
-
"Checking": "
|
|
389
|
-
"Publishing": "
|
|
390
|
-
"Inline": "
|
|
391
|
-
"Block": "
|
|
392
|
-
"Full_screen_mode": "
|
|
393
|
-
"Image_border": "
|
|
394
|
-
"Delete_revision": "
|
|
395
|
-
"Delete_tip": "
|
|
396
|
-
"Revision_deleted": "
|
|
375
|
+
"Link_sdoc": "Lien vers un document SDOC",
|
|
376
|
+
"Link_file": "Lien vers un fichier",
|
|
377
|
+
"Keep_my_modification": "Maintenir ma modification",
|
|
378
|
+
"Keep_other_modification": "Maintenir la modification de l'autre",
|
|
379
|
+
"Keep_both_modification": "Maintenir les deux modifications",
|
|
380
|
+
"Tip": "Astuce",
|
|
381
|
+
"Rebase_delete_no_change_revision_tip": "La révision ne contient aucune modification par rapport à l'original. Souhaitez-vous supprimer la révision ?",
|
|
382
|
+
"Has_been_replaced_tip": "Le contenu du document a été remplacé. Veuillez rafraîchir la page.",
|
|
383
|
+
"Has_been_published_tip": "La révision a été publiée.",
|
|
384
|
+
"Has_conflict_before_publish_tip": "Il y a des conflits dans le document. Résolvez-les avant de publier !",
|
|
385
|
+
"Merge_tip": "Il y a des conflits dans le document. Souhaitze-vous les fusionner !",
|
|
386
|
+
"Has_conflict_before_view_changes_tip": "Il y a des conflits dans le document. Résolvez les conflits avant de voir les modifications !",
|
|
387
|
+
"Has_been_removed_tip": "Le document a été supprimé. Consultez d'autres documents.",
|
|
388
|
+
"Checking": "La vérification est en cours ...",
|
|
389
|
+
"Publishing": "La publication est en cours ...",
|
|
390
|
+
"Inline": "Ligne de code",
|
|
391
|
+
"Block": "Blockquote",
|
|
392
|
+
"Full_screen_mode": "Plein écran",
|
|
393
|
+
"Image_border": "Bordure de l'image",
|
|
394
|
+
"Delete_revision": "Supprimer la révision",
|
|
395
|
+
"Delete_tip": "Êtes-vous sûr de vouloir supprimer {{content}} ?",
|
|
396
|
+
"Revision_deleted": "La révision a été supprimée.",
|
|
397
397
|
"Published": "Publié",
|
|
398
|
-
"Delete_Successfully": "
|
|
398
|
+
"Delete_Successfully": "La suppression a été effectuée.",
|
|
399
399
|
"Delete_failed": "Échec de la suppression",
|
|
400
|
-
"Caption": "
|
|
401
|
-
"No_collaborators_available": "
|
|
402
|
-
"Search_collaborator": "
|
|
403
|
-
"Doc_comments": "
|
|
404
|
-
"Tag_not_found": "
|
|
405
|
-
"Create_a_new_tag": "
|
|
406
|
-
"Search_tags": "
|
|
407
|
-
"No_options_available": "
|
|
408
|
-
"Add_option": "
|
|
409
|
-
"Find_an_option": "
|
|
410
|
-
"Copy_link_of_section": "
|
|
411
|
-
"revision": "
|
|
412
|
-
"xxx_added_a_new_comment": "{{author}}
|
|
413
|
-
"xxx_added_a_reply": "{{author}}
|
|
400
|
+
"Caption": "Légende",
|
|
401
|
+
"No_collaborators_available": "Aucun collaborateur disponbile",
|
|
402
|
+
"Search_collaborator": "Rechercher des collaborateurs",
|
|
403
|
+
"Doc_comments": "Commentaires du document",
|
|
404
|
+
"Tag_not_found": "Le tag n'a pas été trouvé.",
|
|
405
|
+
"Create_a_new_tag": "Ajouter un tag",
|
|
406
|
+
"Search_tags": "Rechercher un tag",
|
|
407
|
+
"No_options_available": "Le tag n'a pas été trouvé.",
|
|
408
|
+
"Add_option": "Ajouter un tag",
|
|
409
|
+
"Find_an_option": "Rechercher un tag",
|
|
410
|
+
"Copy_link_of_section": "Copier le lien de la section",
|
|
411
|
+
"revision": "révision",
|
|
412
|
+
"xxx_added_a_new_comment": "{{author}} a ajouté un commentaire.",
|
|
413
|
+
"xxx_added_a_reply": "{{author}} a ajouté une réponse.",
|
|
414
414
|
"New": "Créer",
|
|
415
|
-
"Table_template": "
|
|
416
|
-
"Jump_to_original_doc": "
|
|
417
|
-
"Freezed": "
|
|
418
|
-
"Callout": "
|
|
419
|
-
"The_current_location_does_not_support_pasting": "
|
|
420
|
-
"Please_enter": "
|
|
421
|
-
"Combine_cell": "
|
|
422
|
-
"Split_cell": "
|
|
423
|
-
"Row_number": "
|
|
424
|
-
"Column_number": "
|
|
425
|
-
"The_maximum_row_number_is_{number}": "
|
|
426
|
-
"Other_modification": "
|
|
427
|
-
"My_modification": "
|
|
428
|
-
"Document_history": "
|
|
429
|
-
"Freeze_document": "
|
|
430
|
-
"Document_frozen": "
|
|
431
|
-
"Unfreeze": "
|
|
432
|
-
"Search_and_replace": "
|
|
415
|
+
"Table_template": "Modèle tableau",
|
|
416
|
+
"Jump_to_original_doc": "Aller au document original",
|
|
417
|
+
"Freezed": "Gelé",
|
|
418
|
+
"Callout": "Légende",
|
|
419
|
+
"The_current_location_does_not_support_pasting": "La localisation actuelle ne permet pas de coller.",
|
|
420
|
+
"Please_enter": "Veuillez entrer",
|
|
421
|
+
"Combine_cell": "Fusionner les cellules",
|
|
422
|
+
"Split_cell": "Annuler la fusion des cellules",
|
|
423
|
+
"Row_number": "Numéro de ligne",
|
|
424
|
+
"Column_number": "Numéro de colonne",
|
|
425
|
+
"The_maximum_row_number_is_{number}": "Le numéro de ligne maximum est {number}.",
|
|
426
|
+
"Other_modification": "Modification de l'autre",
|
|
427
|
+
"My_modification": "Ma modification",
|
|
428
|
+
"Document_history": "Historique",
|
|
429
|
+
"Freeze_document": "Geler le document",
|
|
430
|
+
"Document_frozen": "Le document a été gelé.",
|
|
431
|
+
"Unfreeze": "Degéler",
|
|
432
|
+
"Search_and_replace": "Rechercher et remplacer",
|
|
433
433
|
"Search": "Chercher",
|
|
434
|
-
"Type_search_content": "
|
|
435
|
-
"Replace_as": "
|
|
436
|
-
"Type_replace_content": "
|
|
437
|
-
"Prevs": "
|
|
434
|
+
"Type_search_content": "Entrez le terme de recherche",
|
|
435
|
+
"Replace_as": "Remplacer par",
|
|
436
|
+
"Type_replace_content": "Entrez le nouveau texte",
|
|
437
|
+
"Prevs": "Précédent",
|
|
438
438
|
"Next": "Suivant",
|
|
439
439
|
"Replace": "Remplacer",
|
|
440
|
-
"Replace_all": "
|
|
441
|
-
"Are_you_sure_to_replace_all_number_xxx_in_this_document_with_yyy": "
|
|
442
|
-
"Are_you_sure_to_clear_all_number_xxx_in_this_document": "
|
|
443
|
-
"Search_not_found": "
|
|
444
|
-
"Recent_visited": "
|
|
445
|
-
"The_document_does_not_exist": "
|
|
446
|
-
"Create_a_new_sdoc_file": "
|
|
447
|
-
"New_page": "
|
|
440
|
+
"Replace_all": "Remplacer tout",
|
|
441
|
+
"Are_you_sure_to_replace_all_number_xxx_in_this_document_with_yyy": "Êtes-vous sûr de vouloir remplacer les {{number}} occurrences de '{{originalWord}}' dans ce document par '{{replacedWord}}' ?",
|
|
442
|
+
"Are_you_sure_to_clear_all_number_xxx_in_this_document": "Êtes-vous sûr de vouloir supprimer les {{number}} occurrences de '{{originalWord}}' dans ce document ?",
|
|
443
|
+
"Search_not_found": "Pas trouvé",
|
|
444
|
+
"Recent_visited": "Récemment visité",
|
|
445
|
+
"The_document_does_not_exist": "Le document n'existe pas.",
|
|
446
|
+
"Create_a_new_sdoc_file": "Ajouter un fichier SDOC",
|
|
447
|
+
"New_page": "Nouvelle page",
|
|
448
448
|
"Create": "Créer",
|
|
449
|
-
"Top_align": "
|
|
450
|
-
"Center_align": "
|
|
451
|
-
"Bottom_align": "
|
|
452
|
-
"Move_column_count": "
|
|
453
|
-
"Move_row_count": "
|
|
454
|
-
"Mark_all_as_read": "
|
|
455
|
-
"Alignment_type": "
|
|
449
|
+
"Top_align": "Haut",
|
|
450
|
+
"Center_align": "Milieu",
|
|
451
|
+
"Bottom_align": "Bas",
|
|
452
|
+
"Move_column_count": "Déplacer {{count}} colonne(s)",
|
|
453
|
+
"Move_row_count": "Déplacer {{count}} ligne(s)",
|
|
454
|
+
"Mark_all_as_read": "Marquer comme lu",
|
|
455
|
+
"Alignment_type": "Alignement",
|
|
456
456
|
"Print": "Imprimer",
|
|
457
|
-
"Enter_more_character_start_search": "
|
|
458
|
-
"Create_file_name_sdoc": "
|
|
459
|
-
"Source_document_changed_tip": "
|
|
460
|
-
"Fit_table_to_page_width": "
|
|
461
|
-
"Enter_text_or_press_forward_slash_to_insert_element": "
|
|
462
|
-
"Vertical_align": "
|
|
463
|
-
"Horizontal_align": "
|
|
464
|
-
"SeaTable_column": "SeaTable
|
|
465
|
-
"SeaTable_table": "SeaTable
|
|
466
|
-
"And_x_more_records": "
|
|
467
|
-
"Print_limit_exceeded": "
|
|
468
|
-
"Show_record_numbers": "
|
|
469
|
-
"Alternate_color": "
|
|
470
|
-
"Select_column_display_option_color_tip": "
|
|
457
|
+
"Enter_more_character_start_search": "Entrez plus de caractères pour lancer la recherche",
|
|
458
|
+
"Create_file_name_sdoc": "Ajouter {{file_name_sdoc}}",
|
|
459
|
+
"Source_document_changed_tip": "Des modifications ont été apportées au document original. Souhaitez-vous fusionner ces modifications dans la révision ?",
|
|
460
|
+
"Fit_table_to_page_width": "Ajuster le tableau à la largeur de la page",
|
|
461
|
+
"Enter_text_or_press_forward_slash_to_insert_element": "Entrez du texte ou appuyez sur '/' pour insérer un élément",
|
|
462
|
+
"Vertical_align": "Alignement vertical",
|
|
463
|
+
"Horizontal_align": "Alignement horizontal",
|
|
464
|
+
"SeaTable_column": "Colonne SeaTable",
|
|
465
|
+
"SeaTable_table": "Tableau SeaTable",
|
|
466
|
+
"And_x_more_records": "et {{count}} autres enregistrements",
|
|
467
|
+
"Print_limit_exceeded": "La limite d'impression est dépassée. Seules les 200 premières lignes seront imprimées.",
|
|
468
|
+
"Show_record_numbers": "Afficher les numéros de lignes",
|
|
469
|
+
"Alternate_color": "Couleur alternative",
|
|
470
|
+
"Select_column_display_option_color_tip": "Option de couleur pour les selections uniques et multiples",
|
|
471
471
|
"Header": "En-tête ",
|
|
472
|
-
"Remove_icon": "
|
|
473
|
-
"Hide_columns": "
|
|
474
|
-
"1_hidden_column": "1
|
|
475
|
-
"hidden_columns": "
|
|
476
|
-
"Search_column": "
|
|
477
|
-
"No_columns_available_to_be_hidden": "
|
|
478
|
-
"Hide_all": "
|
|
479
|
-
"Show_all": "
|
|
480
|
-
"Sort": "
|
|
481
|
-
"1 Sort": "1
|
|
482
|
-
"Sorts": "
|
|
483
|
-
"No_sorts": "
|
|
484
|
-
"Add_sort": "
|
|
485
|
-
"No_sort_added": "
|
|
486
|
-
"up": "
|
|
487
|
-
"down": "
|
|
488
|
-
"No_results": "
|
|
489
|
-
"Filter": "
|
|
490
|
-
"1 Filter": "1
|
|
491
|
-
"Filters": "
|
|
492
|
-
"Add_filter": "
|
|
493
|
-
"No_filters": "
|
|
494
|
-
"And": "
|
|
495
|
-
"Or": "
|
|
496
|
-
"Select_option(s)": "
|
|
497
|
-
"Select_an_option": "
|
|
498
|
-
"Search_option": "
|
|
499
|
-
"Add_collaborator": "
|
|
500
|
-
"Add_a_creator": "
|
|
501
|
-
"Add_a_last_modifier": "
|
|
502
|
-
"Invalid_filter": "
|
|
503
|
-
"Department_single_select": "
|
|
504
|
-
"Search_department": "
|
|
505
|
-
"Select_department": "
|
|
506
|
-
"No_departments_available": "
|
|
507
|
-
"Current_user_department": "
|
|
508
|
-
"Current_user_department_and_sub": "
|
|
509
|
-
"Deleted_department": "
|
|
510
|
-
"Data_settings": "
|
|
511
|
-
"Style_settings": "
|
|
512
|
-
"contains": "
|
|
513
|
-
"does_not_contain": "
|
|
514
|
-
"is": "
|
|
515
|
-
"is_not": "
|
|
516
|
-
"equal": "
|
|
517
|
-
"not_equal": "
|
|
518
|
-
"less": "
|
|
519
|
-
"greater": "
|
|
520
|
-
"less_or_equal": "
|
|
521
|
-
"greater_or_equal": "
|
|
522
|
-
"is_empty": "
|
|
523
|
-
"is_not_empty": "
|
|
524
|
-
"is_within": "
|
|
525
|
-
"is_before": "
|
|
526
|
-
"is_after": "
|
|
527
|
-
"is_on_or_before": "
|
|
528
|
-
"is_on_or_after": "
|
|
529
|
-
"has_any_of": "
|
|
530
|
-
"has_all_of": "
|
|
531
|
-
"has_none_of": "
|
|
532
|
-
"is_exactly": "
|
|
533
|
-
"is_current_user_ID": "
|
|
534
|
-
"Current_date": "
|
|
535
|
-
"Specific_date": "
|
|
536
|
-
"x_days_before_current_date": "
|
|
537
|
-
"x_days_after_current_date": "
|
|
538
|
-
"is_any_of": "
|
|
539
|
-
"is_none_of": "
|
|
540
|
-
"include_me": "
|
|
541
|
-
"today": "
|
|
542
|
-
"tomorrow": "
|
|
543
|
-
"yesterday": "
|
|
544
|
-
"one_week_ago": "
|
|
545
|
-
"one_week_from_now": "
|
|
546
|
-
"one_month_ago": "
|
|
547
|
-
"one_month_from_now": "
|
|
548
|
-
"number_of_days_ago": "
|
|
549
|
-
"number_of_days_from_now": "
|
|
550
|
-
"exact_date": "
|
|
551
|
-
"last_week": "
|
|
552
|
-
"last_month": "
|
|
553
|
-
"last_year": "
|
|
554
|
-
"this_week": "
|
|
555
|
-
"this_month": "
|
|
556
|
-
"this_year": "
|
|
557
|
-
"the_next_week": "
|
|
558
|
-
"the_next_month": "
|
|
559
|
-
"the_next_year": "
|
|
560
|
-
"the_past_week": "
|
|
561
|
-
"the_past_month": "
|
|
562
|
-
"the_past_year": "
|
|
563
|
-
"the_next_numbers_of_days": "
|
|
564
|
-
"the_past_numbers_of_days": "
|
|
565
|
-
"Double_click_to_enter_edit_mode_and_adjust_field_width" : "Double
|
|
566
|
-
"Enter_comment_Enter_for_new_line_shift_enter_to_send": "
|
|
472
|
+
"Remove_icon": "Supprimer l'icône",
|
|
473
|
+
"Hide_columns": "Masquer",
|
|
474
|
+
"1_hidden_column": "1 colonne masquée",
|
|
475
|
+
"hidden_columns": "colonnes masquées",
|
|
476
|
+
"Search_column": "Rechercher une colonne",
|
|
477
|
+
"No_columns_available_to_be_hidden": "Aucune colonne ne peut être masquée.",
|
|
478
|
+
"Hide_all": "Masquer tout",
|
|
479
|
+
"Show_all": "Afficher tout",
|
|
480
|
+
"Sort": "Trier",
|
|
481
|
+
"1 Sort": "1 tri",
|
|
482
|
+
"Sorts": "tris",
|
|
483
|
+
"No_sorts": "Aucun tri",
|
|
484
|
+
"Add_sort": "Ajouter un tri",
|
|
485
|
+
"No_sort_added": "Aucun tri ajouté",
|
|
486
|
+
"up": "Croissant",
|
|
487
|
+
"down": "Decroissant",
|
|
488
|
+
"No_results": "Aucun résultat",
|
|
489
|
+
"Filter": "Filtrer",
|
|
490
|
+
"1 Filter": "1 filtre",
|
|
491
|
+
"Filters": "filtres",
|
|
492
|
+
"Add_filter": "Ajouter un filtre",
|
|
493
|
+
"No_filters": "Aucun filtre",
|
|
494
|
+
"And": "et",
|
|
495
|
+
"Or": "ou",
|
|
496
|
+
"Select_option(s)": "Sélectionner une/des option(s)",
|
|
497
|
+
"Select_an_option": "Sélectionner une option",
|
|
498
|
+
"Search_option": "Rechercher une option",
|
|
499
|
+
"Add_collaborator": "Ajouter un collaborateur",
|
|
500
|
+
"Add_a_creator": "Ajouter un créateur",
|
|
501
|
+
"Add_a_last_modifier": "Ajouter un dernier éditeur",
|
|
502
|
+
"Invalid_filter": "Filtre invalide",
|
|
503
|
+
"Department_single_select": "Sélection unique département",
|
|
504
|
+
"Search_department": "Rechercher un departement",
|
|
505
|
+
"Select_department": "Sélectionner un département",
|
|
506
|
+
"No_departments_available": "Aucun département disponible",
|
|
507
|
+
"Current_user_department": "Département de l'utilisateur actuel",
|
|
508
|
+
"Current_user_department_and_sub": "Département et sous-départements de l'utilisateur actuel",
|
|
509
|
+
"Deleted_department": "Département supprimé",
|
|
510
|
+
"Data_settings": "Paramètres de données",
|
|
511
|
+
"Style_settings": "Paramètres de style",
|
|
512
|
+
"contains": "contient",
|
|
513
|
+
"does_not_contain": "ne contient pas",
|
|
514
|
+
"is": "est égale à",
|
|
515
|
+
"is_not": "est différente de",
|
|
516
|
+
"equal": "=",
|
|
517
|
+
"not_equal": "≠",
|
|
518
|
+
"less": "<",
|
|
519
|
+
"greater": ">",
|
|
520
|
+
"less_or_equal": "≤",
|
|
521
|
+
"greater_or_equal": "≥",
|
|
522
|
+
"is_empty": "est vide",
|
|
523
|
+
"is_not_empty": "n'est pas vide",
|
|
524
|
+
"is_within": "est pendant",
|
|
525
|
+
"is_before": "est avant",
|
|
526
|
+
"is_after": "est après",
|
|
527
|
+
"is_on_or_before": "est le ou avant",
|
|
528
|
+
"is_on_or_after": "est le ou après",
|
|
529
|
+
"has_any_of": "contient au moins un",
|
|
530
|
+
"has_all_of": "contient tout",
|
|
531
|
+
"has_none_of": "ne contient aucun",
|
|
532
|
+
"is_exactly": "est exactement",
|
|
533
|
+
"is_current_user_ID": "est l'ID de l'utilisateur actuel",
|
|
534
|
+
"Current_date": "Date actuelle",
|
|
535
|
+
"Specific_date": "Date spécifique",
|
|
536
|
+
"x_days_before_current_date": "Jours avant la date actuelle",
|
|
537
|
+
"x_days_after_current_date": "Jours après la date actuelle",
|
|
538
|
+
"is_any_of": "contient au moins un",
|
|
539
|
+
"is_none_of": "ne contient aucun",
|
|
540
|
+
"include_me": "inclure l'utilisateur actuel",
|
|
541
|
+
"today": "aujourd'hui",
|
|
542
|
+
"tomorrow": "demain",
|
|
543
|
+
"yesterday": "hier",
|
|
544
|
+
"one_week_ago": "il y a une semaine",
|
|
545
|
+
"one_week_from_now": "dans une semaine",
|
|
546
|
+
"one_month_ago": "il y a un mois",
|
|
547
|
+
"one_month_from_now": "dans un mois",
|
|
548
|
+
"number_of_days_ago": "il y a tels jours",
|
|
549
|
+
"number_of_days_from_now": "dans tels jours",
|
|
550
|
+
"exact_date": "date exacte",
|
|
551
|
+
"last_week": "la semaine dernière",
|
|
552
|
+
"last_month": "le mois dernier",
|
|
553
|
+
"last_year": "l'année dernière",
|
|
554
|
+
"this_week": "cette semaine",
|
|
555
|
+
"this_month": "ce mois",
|
|
556
|
+
"this_year": "cette année",
|
|
557
|
+
"the_next_week": "la semaine prochaine",
|
|
558
|
+
"the_next_month": "le mois prochain",
|
|
559
|
+
"the_next_year": "l'année prochaine",
|
|
560
|
+
"the_past_week": "la semaine dernière",
|
|
561
|
+
"the_past_month": "le mois dernier",
|
|
562
|
+
"the_past_year": "l'année dernière",
|
|
563
|
+
"the_next_numbers_of_days": "au cours de tels prochains jours",
|
|
564
|
+
"the_past_numbers_of_days": "au cours de tel derniers jours",
|
|
565
|
+
"Double_click_to_enter_edit_mode_and_adjust_field_width" : "Double-cliquer pour passer en mode édition",
|
|
566
|
+
"Enter_comment_Enter_for_new_line_shift_enter_to_send": "Entrez un commentaire (insérez un retour à la ligne avec ENTREE ; envoyez le commentaire avez MAJ + ENTREE)",
|
|
567
567
|
"Sub_table": "Tableau",
|
|
568
|
-
"Search_action": "
|
|
569
|
-
"Comment_details": "
|
|
570
|
-
"Two_column": "2
|
|
571
|
-
"Three_column": "3
|
|
572
|
-
"Four_column": "4
|
|
573
|
-
"Five_column": "5
|
|
574
|
-
"Full_width_mode": "
|
|
568
|
+
"Search_action": "Rechercher une action",
|
|
569
|
+
"Comment_details": "Détails du commentaire",
|
|
570
|
+
"Two_column": "2 colonnes",
|
|
571
|
+
"Three_column": "3 colonnes",
|
|
572
|
+
"Four_column": "4 colonnes",
|
|
573
|
+
"Five_column": "5 colonnes",
|
|
574
|
+
"Full_width_mode": "Utiliser toute la largeur",
|
|
575
575
|
"Video": "Vidéo",
|
|
576
|
-
"Upload_local_video": "
|
|
577
|
-
"The_current_version_does_not_support_>5MB_video_file": "
|
|
578
|
-
"Token_expired_Please_refresh_the_page": "
|
|
579
|
-
"Link_to_page": "
|
|
580
|
-
"No_page_results": "
|
|
576
|
+
"Upload_local_video": "Importer un vidéo local",
|
|
577
|
+
"The_current_version_does_not_support_>5MB_video_file": "La version actuelle ne supporte pas de fichiers vidéo de plus de 5 Mo.",
|
|
578
|
+
"Token_expired_Please_refresh_the_page": "Le token a expiré. Veuillez rafraîchir la page.",
|
|
579
|
+
"Link_to_page": "Lien vers une page",
|
|
580
|
+
"No_page_results": "Aucun résultat",
|
|
581
581
|
"Page": "Page",
|
|
582
582
|
"Share_1": "Partager",
|
|
583
|
-
"Collect": "
|
|
584
|
-
"Collected": "
|
|
585
|
-
"Link_to_file": "
|
|
586
|
-
"Create_a_new_file": "
|
|
583
|
+
"Collect": "Collecter",
|
|
584
|
+
"Collected": "Collecté",
|
|
585
|
+
"Link_to_file": "Lien vers un fichier",
|
|
586
|
+
"Create_a_new_file": "Ajouter un fichier",
|
|
587
587
|
"Suggestion": "Suggestion",
|
|
588
588
|
"Continuation": "Continuation",
|
|
589
|
-
"More_details": "
|
|
590
|
-
"More_concise": "
|
|
591
|
-
"More_vivid": "
|
|
592
|
-
"Translate": "
|
|
593
|
-
"Adjustment": "
|
|
594
|
-
"Try_again": "
|
|
589
|
+
"More_details": "Plus de détails",
|
|
590
|
+
"More_concise": "Plus concise",
|
|
591
|
+
"More_vivid": "Plus vif",
|
|
592
|
+
"Translate": "Traduire",
|
|
593
|
+
"Adjustment": "Ajustement",
|
|
594
|
+
"Try_again": "Veuillez réessayer.",
|
|
595
595
|
"Deprecation": "Deprecation",
|
|
596
|
-
"Generated_content_x_words": "
|
|
597
|
-
"Ask_AI_anything": "
|
|
598
|
-
"Thinking": "
|
|
599
|
-
"Translation_error_message": "
|
|
600
|
-
"The_translation_content_cannot_be_empty": "
|
|
601
|
-
"Processing_message": "
|
|
602
|
-
"AI_tip_content": "
|
|
596
|
+
"Generated_content_x_words": "Contenu généré {{count}} words",
|
|
597
|
+
"Ask_AI_anything": "Demandez tout à l'IA ...",
|
|
598
|
+
"Thinking": "En cours ...",
|
|
599
|
+
"Translation_error_message": "Erreur de traduction, veuillez réessayer.",
|
|
600
|
+
"The_translation_content_cannot_be_empty": "Le contenu de la traduction ne doit pas être vide.",
|
|
601
|
+
"Processing_message": "Traitement en cours, veuillez patienter.",
|
|
602
|
+
"AI_tip_content": "Rejeter le contenu actuel",
|
|
603
603
|
"Discard": "Abandonner",
|
|
604
|
-
"English": "
|
|
605
|
-
"Chinese": "
|
|
606
|
-
"Ask_AI": "
|
|
607
|
-
"Enter_reply": "
|
|
608
|
-
"Processing_content_cannot_be_empty": "
|
|
609
|
-
"AI_error_message": "
|
|
610
|
-
"Add_video_link": "
|
|
611
|
-
"Link_Seafile_video_file": "Link
|
|
612
|
-
"Select_video_file": "
|
|
613
|
-
"Support_Youtube_Tencent_Bilibili_and_more": "
|
|
614
|
-
"Image_cannot_be_copied_Please_download_the_source_image": "
|
|
615
|
-
"And_select_insert_-_image_to_upload": "
|
|
616
|
-
"Image_copy_error": "
|
|
604
|
+
"English": "Anglais",
|
|
605
|
+
"Chinese": "Chinois",
|
|
606
|
+
"Ask_AI": "Demandez à l'IA",
|
|
607
|
+
"Enter_reply": "Entrez une réponse",
|
|
608
|
+
"Processing_content_cannot_be_empty": "Le contenu de traitement ne doit pas être vide.",
|
|
609
|
+
"AI_error_message": "Erreur de requête, veuillez réessayer.",
|
|
610
|
+
"Add_video_link": "Ajouter un lien vidéo",
|
|
611
|
+
"Link_Seafile_video_file": "Link vers un fichier vidéo Seafile",
|
|
612
|
+
"Select_video_file": "Sélectionner un fichier vidéo",
|
|
613
|
+
"Support_Youtube_Tencent_Bilibili_and_more": "Supporte Youtube, Tencent, Bilibili et autres",
|
|
614
|
+
"Image_cannot_be_copied_Please_download_the_source_image": "L'image ne peut pas être copiée. Télécharger l'image.",
|
|
615
|
+
"And_select_insert_-_image_to_upload": "et sélectionner 「insert」 - 「image」 pour importer.",
|
|
616
|
+
"Image_copy_error": "Erreur copie de l'image",
|
|
617
|
+
"Image_is_uploading": "Image is uploading...",
|
|
618
|
+
"Select_at_least_one_row_record": "Select at least one row record",
|
|
619
|
+
"Selected_row_records_cannot_exceed_10_rows": "Selected row records cannot exceed 10 rows",
|
|
620
|
+
"Select_seatable_rows": "Select seatable rows",
|
|
621
|
+
"Add_rows_record": "Add rows record",
|
|
622
|
+
"Double_click_then_adjust_field_width": "Double click, then adjust field width"
|
|
617
623
|
}
|
|
@@ -613,5 +613,11 @@
|
|
|
613
613
|
"Support_Youtube_Tencent_Bilibili_and_more": "Support Youtube, Tencent, Bilibili and more",
|
|
614
614
|
"Image_cannot_be_copied_Please_download_the_source_image": "Image cannot be copied. Please download the source image,",
|
|
615
615
|
"And_select_insert_-_image_to_upload": "and select 「insert」 - 「image」 to upload.",
|
|
616
|
-
"Image_copy_error": "Image copy error"
|
|
616
|
+
"Image_copy_error": "Image copy error",
|
|
617
|
+
"Image_is_uploading": "Image is uploading...",
|
|
618
|
+
"Select_at_least_one_row_record": "Select at least one row record",
|
|
619
|
+
"Selected_row_records_cannot_exceed_10_rows": "Selected row records cannot exceed 10 rows",
|
|
620
|
+
"Select_seatable_rows": "Select seatable rows",
|
|
621
|
+
"Add_rows_record": "Add rows record",
|
|
622
|
+
"Double_click_then_adjust_field_width": "Double click, then adjust field width"
|
|
617
623
|
}
|
|
@@ -610,8 +610,14 @@
|
|
|
610
610
|
"Add_video_link": "Добавить ссылку на видео",
|
|
611
611
|
"Link_Seafile_video_file": "Ссылка на видео файл Seafile",
|
|
612
612
|
"Select_video_file": "Выбрать видео файл",
|
|
613
|
-
"Support_Youtube_Tencent_Bilibili_and_more": "
|
|
613
|
+
"Support_Youtube_Tencent_Bilibili_and_more": "Поддержка Youtube, Tencent, Bilibili и других",
|
|
614
614
|
"Image_cannot_be_copied_Please_download_the_source_image": "Изображение не может быть скопировано. Скачайте исходное изображение,",
|
|
615
615
|
"And_select_insert_-_image_to_upload": "и выбрать 「вставить」 - 「изображение」 для загрузки.",
|
|
616
|
-
"Image_copy_error": "
|
|
616
|
+
"Image_copy_error": "Ошибка копирования изображения",
|
|
617
|
+
"Image_is_uploading": "Изображение загружается...",
|
|
618
|
+
"Select_at_least_one_row_record": "Выберите хотя бы одну запись",
|
|
619
|
+
"Selected_row_records_cannot_exceed_10_rows": "Выбранные записи строк не могут превышать 10 строк",
|
|
620
|
+
"Select_seatable_rows": "Выберите доступные для размещения строки",
|
|
621
|
+
"Add_rows_record": "Добавить записи строк",
|
|
622
|
+
"Double_click_then_adjust_field_width": "Дважды щелкните, затем отрегулируйте ширину поля"
|
|
617
623
|
}
|