Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dia_fr.txt « resources « webapp « main « src - github.com/jgraph/drawio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c0c29a238f7e9cd67d14f415ba211926812c0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
# *DO NOT DIRECTLY EDIT THIS FILE, IT IS AUTOMATICALLY GENERATED AND IT IS BASED ON:*
# https://docs.google.com/spreadsheet/ccc?key=0AmQEO36liL4FdDJLWVNMaVV2UmRKSnpXU09MYkdGbEE
about=À propos de
aboutDrawio=À propos de draw.io
accessDenied=Accès refusé
action=Action
actualSize=Taille réelle
add=Ajouter
addAccount=Ajouter un compte
addedFile=Ajouté(e) {1}
addImages=Ajouter des images
addImageUrl=Ajouter l'URL d'une image
addLayer=Ajouter une couche
addProperty=Ajouter une propriété
address=Adresse
addToExistingDrawing=Ajouter au diagramme existant
addWaypoint=Ajouter un repère
adjustTo=Ajuster à
advanced=Avancé
align=Aligner
alignment=Alignement
allChangesLost=Toutes les modifications seront perdues !
allPages=Toutes les pages
allProjects=Tous les projets
allSpaces=Tous les espaces
allTags=Toutes les étiquettes
anchor=Ancre
android=Android
angle=Angle
arc=Arc
areYouSure=Êtes-vous sûr(e) ?
ensureDataSaved=Veuillez enregistrer vos modifications avant de fermer.
allChangesSaved=Toutes les modifications ont été enregistrées
allChangesSavedInDrive=Toutes les modifications ont été enregistrées dans Drive
allowPopups=Autoriser les pop-ups pour ne pas voir cette boite de dialogue.
allowRelativeUrl=Autoriser une URL relative
alreadyConnected=Nœuds déjà connectés
apply=Appliquer
archiMate21=ArchiMate 2.1
arrange=Organiser
arrow=Flèche
arrows=Flèches
asNew=En tant que nouveau
atlas=Atlas
author=Auteur
authorizationRequired=Autorisation requise
authorizeThisAppIn=Autoriser l'application dans {1}:
authorize=Autoriser
authorizing=Autorisation en cours
automatic=Automatique
autosave=Enregistrement auto
autosize=Taille automatique
attachments=Pièces jointes
aws=AWS
aws3d=AWS 3D
azure=Azure
back=Retour
background=Arrière-plan
backgroundColor=Couleur d'arrière-plan
backgroundImage=Image d'arrière-plan
basic=Basique
beta=beta
blankDrawing=Diagramme vierge
blankDiagram=Diagramme vierge
block=Bloc
blockquote=Bloc de citation
blog=Blogue
bold=Gras
bootstrap=Bootstrap
border=Border
borderColor=Couleur de la bordure
borderWidth=Largeur de la bordure
bottom=En bas
bottomAlign=Aligner en bas
bottomLeft=Aligner en bas à gauche
bottomRight=Aligner en bas à droite
bpmn=BPMN
bringForward=Bring Forward
browser=Navigateur
bulletedList=Liste à puces
business=Entreprise
busy=Opération en cours
cabinets=Placards
cancel=Annuler
center=Centrer
cannotLoad=Erreur lors du chargement. Merci de réessayer plus tard.
cannotLogin=Erreur lors de la connexion. Merci de réessayer plus tard.
cannotOpenFile=Impossible d'ouvrir le fichier
change=Modifier
changeOrientation=Modifier l’orientation
changeUser=Modifier l'utilisateur
changeStorage=Change storage
changesNotSaved=Les modifcations n'ont pas été enregistrées
classDiagram=Class Diagram
userJoined={1} a rejoint
userLeft={1} a quitté
chatWindowTitle=Chat
chooseAnOption=Choisir une option
chromeApp=Application Chrome
collaborativeEditingNotice=Note importante pour l'édition collaborative
compare=Comparer
compressed=Compressé
commitMessage=Envoyer message
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
configLinkConfirm=Cliquer OK pour configurer et redémarrer draw.io
container=Container
csv=CSV
dark=Sombre
diagramXmlDesc=Fichier XML
diagramHtmlDesc=Fichier HTML
diagramPngDesc=Image bitmap éditable
diagramSvgDesc=Image vectorielle éditable
didYouMeanToExportToPdf=Vouliez vous exporter en PDF ?
draftFound=Un brouillon pour '{1}' a été trouvé. Pour poursuivre, souhaitez-vous l'afficher dans l'éditeur ou l'ignorer ?
draftRevisionMismatch=There is a different version of this diagram on a shared draft of this page. Please edit the diagram from the draft to ensure you are working with the latest version.
selectDraft=Select a draft to continue editing:
dragAndDropNotSupported=Le glisser-déposer n'est pas supporté pour les images. Voulez-vous importer à la place?
dropboxCharsNotAllowed=Les caractères suivants ne sont pas autorisés : \ / : ? * " |
check=Vérifier
checksum=Checksum
circle=Cercle
cisco=Cisco
classic=Classique
clearDefaultStyle=Effacer la mise en forme par défaut
clearWaypoints=Effacer les repères
clipart=Clipart
close=Fermer
closingFile=Fermeture du fichier
realtimeCollaboration=Real-Time Collaboration
collaborator=Collaborateur
collaborators=Collaborateurs
collapse=Réduire
collapseExpand=Réduire-Agrandir
collapse-expand=Cliquer pour réduire/agrandir\nShift+clic pour déplacer les voisins\nAlt+clic pour conserver la taille du groupe
collapsible=Réductible
comic=Comic
comment=Commentaire
commentsNotes=Commentaires/Notes
compress=Compress
configuration=Configuration
connect=Connecter
connecting=Connexion en cours
connectWithDrive=Connecter avec Google Drive
connection=Connexion
connectionArrows=Flèches de connexion
connectionPoints=Points de connexion
constrainProportions=Restreindre les proportions
containsValidationErrors=Contient des erreurs de validation
copiedToClipboard=Copié au presse-papier
copy=Copier
copyConnect=Copier à la connexion
copyCreated=Une copie du fichier a été créée.
copyData=Copy Data
copyOf=Copie de {1}
copyOfDrawing=Copie d'un dessin
copySize=Copie de la taille
copyStyle=Copie du style
create=Créer
createNewDiagram=Créer un nouveau diagramme
createRevision=Créer une révision
createShape=Créer une forme
crop=Rogner
curved=Courbé
custom=Personnalisé
current=Courant
currentPage=Page courante
cut=Couper
dashed=Pointillé
decideLater=Décider plus tard
default=Par défaut
delete=Supprimer
deleteColumn=Supprimer la colonne
deleteLibrary401=Permissions insuffisantes pour supprimer cette librairie
deleteLibrary404=La librairie sélectionnée n'a pas éte trouvée
deleteLibrary500=Erreur lors de la supression de la librairie
deleteLibraryConfirm=Vous êtes sur le point de supprimer cette librairie. Êtes-vous sûr(e) de vouloir poursuivre ?
deleteRow=Supprimer la ligne
description=Description
device=Périphérique
diagram=Diagramme
diagramContent=Contenu du diagramme
diagramLocked=Le diagramme a éte verrouillé pour éviter des pertes de données.
diagramLockedBySince=Le diagramme est verrouillé par {1} depuis {2}
diagramName=Nom du diagramme
diagramIsPublic=Le diagramme est public
diagramIsNotPublic=Le diagramme n'est pas public
diamond=Losange
diamondThin=Losange fin
didYouKnow=Le saviez-vous...
direction=Orientation
discard=Annuler
discardChangesAndReconnect=Annuler les modifications et se reconnecter
googleDriveMissingClickHere=Google Drive introuvable ? Cliquez ici !
discardChanges=Annuler les changements
disconnected=Déconnecté
distribute=Distribuer
done=Termine
doNotShowAgain=Do not show again
dotted=Pointillé
doubleClickOrientation=Double-cliquer pour modifier l’orientation
doubleClickTooltip=Double-cliquer pour insérer du texte
doubleClickChangeProperty=Double-cliquer pour changer le nom de la propriété
download=Télécharger
downloadDesktop=Obtenir pour bureau
downloadAs=Télécharger en tant que
clickHereToSave=Cliquer ici pour sauvegarder
dpi=Points par pouce (DPI)
draftDiscarded=Brouillon abandonné
draftSaved=Brouillon enregistré
dragElementsHere=Glisser des éléments ici
dragImagesHere=Glisser des images ou des URLs ici
dragUrlsHere=Déposer des URLs ici
draw.io=draw.io
drawing=Diagramme{1}
drawingEmpty=Le diagramme est vide
drawingTooLarge=Le diagramme est trop grand
drawioForWork=Draw.io pour GSuite
dropbox=Dropbox
duplicate=Dupliquer
duplicateIt=Dupliquer {1}
divider=Séparateur
dx=Dx
dy=Dy
east=Est
edit=Modifier
editData=Modifier les paramètres
editDiagram=Modifier le diagramme
editGeometry=Modifier la géométrie
editImage=Modifier l'image
editImageUrl=Modifier l'URL de l'image
editLink=Modifier le lien
editShape=Modifier la forme
editStyle=Modifier le style
editText=Modifier le texte
editTooltip=Modifier l'info-bulle
glass=Verre
googleImages=Google Images
imageSearch=Recherche d'image
eip=EIP
embed=Intégrer
embedFonts=Embed Fonts
embedImages=Intégrer les images
mainEmbedNotice=Coller cet élément dans la page
electrical=Électricité
ellipse=Ellipse
embedNotice=Coller cet élément à la fin de la page
enterGroup=Entrer un groupe
enterName=Entrer un nom
enterPropertyName=Entrer le nom de la propriété
enterValue=Saisir une valeur
entityRelation=Relation entre les éléments
entityRelationshipDiagram=Diagramme entité-relation
error=Erreur
errorDeletingFile=Erreur lors de la suppression du fichier
errorLoadingFile=Erreur lors du chargement du fichier
errorRenamingFile=Erreur lors du renommage du fichier
errorRenamingFileNotFound=Erreur lors du renommage du fichier. Le fichier est introuvable.
errorRenamingFileForbidden=Erreur lors du renommage du fichier. Droits d'accès insuffisants.
errorSavingDraft=Erreur lors de la sauvegarde du brouillon
errorSavingFile=Erreur lors de la sauvegarde du fichier
errorSavingFileUnknown=Erreur d'autorisation avec les serveurs de Google. Veuillez rafraîchir la page et réessayer.
errorSavingFileForbidden=Erreur lors de l'enregistrement du fichier. Droits d'accès insuffisants.
errorSavingFileNameConflict=Le diagramme n'a pas pu être enregistré. La page actuellement ouverte contient déjà un fichier nommé '{1}'.
errorSavingFileNotFound=Erreur lors de l'enregistrement du fichier. Le fichier est introuvable.
errorSavingFileReadOnlyMode=Le diagramme n'a pas pu être enregistré, car en mode lecture-seule.
errorSavingFileSessionTimeout=Votre session a été fermée. Veuillez <a target='_blank' href='{1}'>{2}</a> et revenir à cet onglet pour tenter d'enregistrer à nouveau.
errorSendingFeedback=Erreur lors de l'envoi du commentaire.
errorUpdatingPreview=Erreur lors de la mise à jour de l'aperçu.
exit=Quitter
exitGroup=Quitter le groupe
expand=Agrandir
export=Exporter
exporting=Exportation
exportAs=Exporter en tant que
exportOptionsDisabled=Possibilités d'export désactivées
exportOptionsDisabledDetails=Le propriétaire a désactivé les possibilités de téléchargement, d'impression ou de copie pour les commentateurs et observateurs sur ce fichier.
externalChanges=Changements externes
extras=Suppléments
facebook=Facebook
failedToSaveTryReconnect=La sauvegarde a échoué, tentative de reconnexion
featureRequest=Demande de fonctionnalité
feedback=Commentaire
feedbackSent=Commentaire envoyé.
floorplans=Plans de sol
file=Fichier
fileChangedOverwriteDialog=Fichier modifié ; écraser ces changements ?
fileChangedSyncDialog=Fichier modifié.
fileChangedSync=Fichier modifié ; cliquer ici pour le synchroniser.
overwrite=Ecraser
synchronize=Synchroniser
filename=Nom de fichier
fileExists=Le fichier existe déjà
fileMovedToTrash=Le fichier a été déplacé dans la corbeille
fileNearlyFullSeeFaq=Fichier presque plein, veuillez consulter la FAQ
fileNotFound=Fichier non trouvé
repositoryNotFound=Répertoire non trouvé
fileNotFoundOrDenied=Le fichier est introuvable. Le fichier n'existe pas ou vous n'avez pas le droit d'accès.
fileNotLoaded=Fichier non chargé
fileNotSaved=Fichier non sauvegardé
fileOpenLocation=Comment voulez-vous ouvrir ce(s) fichier(s)?
filetypeHtml=.html causes file to save as HTML with redirect to cloud URL
filetypePng=.png causes file to save as PNG with embedded data
filetypeSvg=.svg causes file to save as SVG with embedded data
fileWillBeSavedInAppFolder={1} sera enregistré dans le dossier de l'application.
fill=Remplir
fillColor=Couleur de remplissage
filterCards=Filter Cards
find=Chercher
fit=Ajuster
fitContainer=Redimensionner le conteneur
fitIntoContainer=Ajuster au conteneur
fitPage=Ajuster à la page
fitPageWidth=Ajuster à la largeur de la page
fitTo=Ajuster à
fitToSheetsAcross=selon les feuilles
fitToBy=selon
fitToSheetsDown=feuille(s) en bas
fitTwoPages=Deux pages
fitWindow=Ajuster à la fenêtre
flip=Retourner
flipH=Retourner horizontalement
flipV=Retourner verticalement
flowchart=Diagramme de flux
folder=Dossier
font=Police
fontColor=Couleur de la police
fontFamily=Police
fontSize=Taille de la police
forbidden=Vous n'avez pas le droit d'accéder à ce fichier
format=Format
formatPanel=Panneau de mise en forme
formatted=Mis en forme
formattedText=Texte mis en forme
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatSvgEmbedded=SVG (avec XML)
formatVsdx=VSDX
formatVssx=VSSX
formatXmlPlain=XML (Texte normal)
formatXml=XML
forum=Forum d'aide
freehand=Freehand
fromTemplate=Depuis un modèle
fromTemplateUrl=A partir d'une URL de modèle
fromText=A partir d'un texte
fromUrl=A partir d'une URL
fromThisPage=A partir de cette page
fullscreen=Plein écran
gap=Espace
gcp=GCP
general=Général
getNotionChromeExtension=Get the Notion Chrome Extension
github=GitHub
gitlab=GitLab
gliffy=Gliffy
global=Global
googleDocs=Google Docs
googleDrive=Google Drive
googleGadget=Google Gadget
googlePlus=Google+
googleSharingNotAvailable=Le partage ne peut se faire que par Google Drive. Cliquer ci-dessous pour partager via le menu 'plus d'actions':
googleSlides=Google Slides
googleSites=Google Sites
googleSheets=Google Sheets
gradient=Gradient
gradientColor=Couleur
grid=Grille
gridColor=Grille de couleurs
gridSize=Taille de la grille
group=Grouper
guides=Guides
hateApp=Je déteste draw.io
heading=En-tête
height=Hauteur
help=Aide
helpTranslate=Aidez-nous à traduire cette application
hide=Masquer
hideIt=Masquer {1}
hidden=Masqué
home=Accueil
horizontal=Horizontal
horizontalFlow=Flux horizontal
horizontalTree=Arbre horizontal
howTranslate=Etes-vous satisfait(e) de la traduction dans votre langue ?
html=HTML
htmlText=Texte HTML
id=ID
iframe=IFrame
ignore=Ignorer
image=Image
imageUrl=URL de l'image
images=Images
imagePreviewError=Cette image n'a pas pu être chargée pour l'aperçu. Veuillez vérifier l'URL.
imageTooBig=Image trop grande
imgur=Imgur
import=Importer
importFrom=Importer à partir de
includeCopyOfMyDiagram=Inclure une copie de mon diagramme
increaseIndent=Augmenter l'indentation
decreaseIndent=Diminuer l'indentation
insert=Insérer
insertColumnBefore=Insérer une colonne à gauche
insertColumnAfter=Insérer une colonne à droite
insertEllipse=Insérer une ellipse
insertImage=Insérer une image
insertHorizontalRule=Insérer une règle horizontale
insertLink=Insérer un lien
insertPage=Insérer une page
insertRectangle=Insérer un rectangle
insertRhombus=Insérer un losange
insertRowBefore=Insérer une ligne avant
insertRowAfter=Insérer une ligne après
insertText=Insérer du texte
inserting=Insertion
installApp=Installer l'app
invalidFilename=Le nom des diagrammes ne doit pas contenir les caractères suivants : \ / | : ; { } < > & + ? = "
invalidLicenseSeeThisPage=Votre licence n'est pas valide, veuillez vous rendre sur la page suivante <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
invalidInput=Saisie incorrecte
invalidName=Nom incorrect
invalidOrMissingFile=Fichier invalide ou manquant
invalidPublicUrl=URL publique incorrecte
isometric=Isométrique
ios=iOS
italic=Italique
kennedy=Kennedy
keyboardShortcuts=Raccourcis clavier
labels=Labels
layers=Couches
landscape=Paysage
language=Langue
leanMapping=Configuration de l'inclinaison
lastChange=Dernière modification il y a {1}
lessThanAMinute=moins d'une minute
licensingError=Erreur de licence
licenseHasExpired=La license pour {1} a expiré le {2}. Cliquez ici.
licenseRequired=Ce contenu requiert une licence draw.io
licenseWillExpire=La license pour {1} expirera le {2}. Cliquez ici.
lineJumps=Sauts de ligne
linkAccountRequired=Si le diagramme n'est pas public, un compte Google est requis pour voir le lien.
linkText=Texte du lien
list=Liste
minute=minute
minutes=minutes
hours=heures
days=jours
months=mois
years=années
restartForChangeRequired=Les modifications seront effectives après un rechargement de la page.
laneColor=Couleur de rangée
lastModified=Dernière modification
layout=Modèle
left=Gauche
leftAlign=Aligner à gauche
leftToRight=De gauche à droite
libraryTooltip=Glissez-déposez les formes ici ou cliquez sur + pour insérer. Double-cliquez pour modifier.
lightbox=Table lumineuse
line=Ligne
lineend=Fin de la ligne
lineheight=Hauteur de ligne
linestart=Début de la ligne
linewidth=Largeur de la ligne
link=Lien
links=Liens
loading=Chargement
lockUnlock=Bloquer/Débloquer
loggedOut=Se déconnecter
logIn=Se connecter
loveIt=J'aime {1}
lucidchart=Lucidchart
maps=Cartes
mathematicalTypesetting=Paramètres d'entrée mathématique
makeCopy=Faire une copie
manual=Manuel
merge=Fusion
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=Au centre
minimal=Mini
misc=Divers
mockups=Maquettes
modificationDate=Date de modification
modifiedBy=Modifié par
more=Plus
moreResults=Plus de résultats
moreShapes=Plus d'icones
move=Deplacer
moveToFolder=Deplacer vers le répertoire
moving=En cours de déplacement
moveSelectionTo=Déplacer la sélection vers {1}
name=Nom
navigation=Navigation
network=Réseau
networking=Réseautage
new=Nouveau
newLibrary=Nouvelle librairie
nextPage=Page suivante
no=Non
noPickFolder=Non, choisir un dossier
noAttachments=Aucune pièce jointe n'a éte trouvée
noColor=Pas de couleur
noFiles=Pas de fichiers
noFileSelected=Aucun fichier sélectionné
noLibraries=Aucune librairie trouvée
noMoreResults=Pas d'autres résultats trouvés
none=Aucun
noOtherViewers=Pas d'autres spectateurs
noPlugins=Pas de plug-ins
noPreview=Pas d'aperçu
noResponse=Pas de réponse du serveur
noResultsFor=Pas de résultats pour '{1}'
noRevisions=Pas de révisions
noSearchResults=Aucun résultat de recherche trouvé
noPageContentOrNotSaved=Aucune ancre n'a été trouvée sur cette page ou aucune ancre n'a été enregistrée pour le moment
normal=Normal
north=Nord
notADiagramFile=N'est pas un fichier de diagramme
notALibraryFile=N'est pas un fichier de librairie
notAvailable=N'est pas disponible
notAUtf8File=N'est pas un fichier UTF-8
notConnected=Non connecté
note=Remarque
notion=Notion
notSatisfiedWithImport=Pas satisfait de l'import ?
notUsingService=Pas en train d'utiliser {1}?
numberedList=Liste numérotée
offline=Hors ligne
ok=OK
oneDrive=OneDrive
online=En ligne
opacity=Opacité
open=Ouvrir
openArrow=Ouvrir la flèche
openExistingDiagram=Ouvrir un diagramme existant
openFile=Ouvrir le fichier
openFrom=Ouvrir depuis
openLibrary=Ouvrir une librairie
openLibraryFrom=Ouvrir une librairie depuis
openLink=Ouvrir le lien
openInNewWindow=Ouvrir dans une nouvelle fenêtre
openInThisWindow=Ouvrir dans cette fenêtre
openIt=Ouvrir {1}
openRecent=Ouvrir récent
openSupported=Les formats supportés sont les fichiers sauvegardés depuis ce logiciel (.xml), .vsdx et .gliffy
options=Options
organic=Organique
orgChart=Org Chart
orthogonal=Orthogonale
otherViewer=autre lecteur
otherViewers=autres lecteurs
outline=Contour
oval=Ovale
page=Page
pageContent=Contenu de la page
pageNotFound=Page non trouvée
pageWithNumber=Page-{1}
pages=Pages
pageView=Aperçu de la page
pageSetup=Paramètres de la page
pageScale=Échelle de la page
pan=Panoramique
panTooltip=Espace+Glisser pour déplacer
paperSize=Taille du papier
pattern=Modèle
parallels=Parallèle
paste=Coller
pasteData=Coller les données
pasteHere=Coller ici
pasteSize=Coller la dimension
pasteStyle=Coller le style
perimeter=Périmètre
permissionAnyone=Tout le monde peut apporter des modifications
permissionAuthor=Moi seul peux apporter des modifications
pickFolder=Choisir un dossier
pickLibraryDialogTitle=Sélectionner une librairie
publicDiagramUrl=URL publique du diagramme
placeholders=Eléments de remplissage
plantUml=PlantUML
plugins=Modules complémentaires
pluginUrl=URL du module complémentaire
pluginWarning=La page demande le chargement de(s) module(s) suivant(s):\n \n {1}\n \n Voulez-vous le(s) charger maintenant?\n \n REMARQUE : N'autorisez l'exécution des modules complémentaires que si vous êtes totalement conscient de l'impact que cette action peut avoir sur la sécurité.\n
plusTooltip=Glisser/Déposer pour lier, cliquer pour cloner et lier, Shift+clic pour cloner
portrait=Portrait
position=Position
posterPrint=Données de l’impression
preferences=Préférences
preview=Aperçu
previousPage=Page précédente
print=Imprimer
printAllPages=Imprimer toutes les pages
procEng=Ing. Proc.
project=Projet
priority=Priorité
properties=Propriétés
publish=Publier
quickStart=Vidéo de démarrage rapide
rack=Racks
radial=Radial
radialTree=Arbre radial
readOnly=Lecture seule
reconnecting=Reconnexion
recentlyUpdated=Récemment mis(e) à jour
recentlyViewed=Récemment visionné(e)
rectangle=Rectangle
redirectToNewApp=Ce fichier a été créé ou modifié dans une version plus récente de cette application. Vous allez être redirigé(e) maintenant.
realtimeTimeout=Il semble que des modifications hors ligne ont été effectuées. Nous sommes désolés, ces modifications ne peuvent être enregistrées.
redo=Refaire
refresh=Rafraichir
regularExpression=Expression régulière
relative=Relatif
relativeUrlNotAllowed=URL relative non autorisée
rememberMe=Se souvenir de moi
rememberThisSetting=Se rappeler de ce paramètre
removeFormat=Effacer la mise en forme
removeFromGroup=Retirer du groupe
removeIt=Retirer {1}
removeWaypoint=Effacer le repère
rename=Renommer
renamed=Renommé
renameIt=Renommer {1}
renaming=Renommage
replace=Remplacer
replaceIt={1} existe déjà. Voulez-vous le remplacer?
replaceExistingDrawing=Remplacer le diagramme existant
required=obligatoire
reset=Réinitialiser
resetView=Réinitialiser la vue
resize=Redimensionner
resizeLargeImages=Souhaitez-vous redimensionner les grandes images pour rendre l'application plus rapide?
retina=Rétine
responsive=Adapte
restore=Récupérer
restoring=Récupération
retryingIn=Nouvelle tentative dans {1} seconde(s)
retryingLoad=Le chargement a échoué. Nouvel essai...
retryingLogin=L'identification a échoué. Nouvel essai...
reverse=Inverser
revision=Changement
revisionHistory=Historique des changement
rhombus=Rhombus
right=Droite
rightAlign=Aligner à droite
rightToLeft=Droite à Gauche
rotate=Pivoter
rotateTooltip=Cliquer et glisser pour pivoter, cliquer pour pivoter de 90 degrés
rotation=Rotation
rounded=Arrondi
save=Enregistrer
saveAndExit=Enregistrer et quitter
saveAs=Enregistrer sous
saveAsXmlFile=Enregistrer sous un fichier XML?
saved=Enregistré
saveDiagramFirst=S'il-vous-plait sauvegardez le diagramme en premier
saveDiagramsTo=Enregistrer sous
saveLibrary403=Permissions insuffisantes pour modifier cette librairie
saveLibrary500=Une erreur est survenue lors de la sauvegarde de la librairie
saveLibraryReadOnly=Impossible de sauvegarder la librairie tant que le mode lecture seul est actif
saving=Enregistrement
scratchpad=Bloc-notes
scrollbars=Barres de défilement
search=Chercher
searchShapes=Chercher des formes
selectAll=Tout sélectionner
selectionOnly=Sélection uniquement
selectCard=Sélectionner une carte
selectEdges=Sélectionner les bordures
selectFile=Sélectionner le fichier
selectFolder=Sélectionner le dossier
selectFont=Sélectionner une police
selectNone=Tout désélectionner
selectTemplate=Choisir un modèle
selectVertices=Sélectionner des sommets
sendBackward=Send Backward
sendMessage=Envoyer
sendYourFeedback=Envoyer votre commentaire
serviceUnavailableOrBlocked=Le service est indisponible ou bloqué
sessionExpired=Votre session a expiré. Merci de rafraichir la page.
sessionTimeoutOnSave=Votre session a expiré et vous avez été déconnecté de Google Drive. Cliquer sur OK pour vous identifier et enregistrer votre travail.
setAsDefaultStyle=Définir comme style par défaut
shadow=Ombre
shape=Forme
shapes=Formes
share=Partager
shareCursor=Share Mouse Cursor
shareLink=Lien pour l'édition partagée
sharingAvailable=Sharing available for Google Drive and OneDrive files.
sharp=Dur
show=Montrer
showRemoteCursors=Show Remote Mouse Cursors
showStartScreen=Montrer écran de démarrage
sidebarTooltip=Cliquer pour agrandir. Glisser et déposer les formes sur le diagramme. Maj+clic pour changer la sélection. Alt+clic pour insérer et connecter.
signs=Signes
signOut=Se déconnecter
simple=Simple
simpleArrow=Flèche simple
simpleViewer=Affichage simple
size=Taille
sketch=Sketch
snapToGrid=Snap to Grid
solid=Uni
sourceSpacing=Espacement de la source
south=Sud
software=Logiciel
space=Espace
spacing=Espacement
specialLink=Lien Spécial
standard=Standard
startDrawing=Commencer le dessin
stopDrawing=Terminer le dessin
starting=Démarrage
straight=Droit
strikethrough=Barré
strokeColor=Couleur de la ligne
style=Style
subscript=Texte miniaturisé
summary=Sommaire
superscript=Texte agrandi
support=Support
swimlaneDiagram=Swimlane Diagram
sysml=SysML
tags=Tags
table=Tableau
tables=Tables
takeOver=Take Over
targetSpacing=Espacement de la cible
template=Modèle
templates=Modèles
text=Texte
textAlignment=Justifier le texte
textOpacity=Opacité du texte
theme=Thème
timeout=Délai dépassé
title=Titre
to=à
toBack=Placer en dessous
toFront=Placer au-dessus
tooLargeUseDownload=Trop lourd, à télécharger.
toolbar=Barre d'outils
tooltips=Bulle d'information
top=En haut
topAlign=Aligner en haut
topLeft=Aligner en haut à gauche
topRight=Aligner en haut à droite
transparent=Transparent
transparentBackground=Arrière-plan transparent
trello=Trello
tryAgain=Réessayer
tryOpeningViaThisPage=Essayer d'ouvrir via cette page
turn=Pivoter à 90°
type=Type
twitter=Twitter
uml=UML
underline=Souligner
undo=Annuler
ungroup=Dissocier
unmerge=Unmerge
unsavedChanges=Modifications non enregistrées
unsavedChangesClickHereToSave=Modifications non enregistrées. Cliquez ici pour enregistrer.
untitled=Sans nom
untitledDiagram=Diagramme sans nom
untitledLayer=Couche non nommée
untitledLibrary=Librairie sans nom
unknownError=Erreur inconnue
updateFile=Mettre à jour {1}
updatingDocument=Mise à jour du document. Veuillez patienter...
updatingPreview=Mise à jour de l'aperçu. Veuillez patienter...
updatingSelection=Mise à jour de la sélection. Veuillez patienter...
upload=Télécharger
url=URL
useOffline=Utiliser hors-ligne
useRootFolder=Use root folder?
userManual=Manuel d'utilisation
vertical=Vertical
verticalFlow=Flux vertical
verticalTree=Arbre vertical
view=Vue
viewerSettings=Paramètres de visu
viewUrl=Lien vers l'aperçu: {1}
voiceAssistant=Assistant vocal (beta)
warning=Avertissement
waypoints=Repères
west=Ouest
width=Largeur
wiki=Wiki
wordWrap=Retour à la ligne
writingDirection=Sens de l'écriture
yes=Oui
yourEmailAddress=Votre adresse email
zoom=Zoom
zoomIn=Agrandir
zoomOut=Réduire
basic=Essentiel
businessprocess=Processus Métier
charts=Graphiques
engineering=Ingénierie
flowcharts=Organigrammes
gmdl=Conception du matériau
mindmaps=Cartes cognitives
mockups=Maquettes
networkdiagrams=Diagrammes réseau
nothingIsSelected=Pas de sélection
other=Autre
softwaredesign=Modélisation logicielle
venndiagrams=Diagrammes de Venn
webEmailOrOther=Site, email ou toute autre adresse internet
webLink=Hyperlien
wireframes=Maquettes conceptuelles
property=Propriétés
value=Valeur
showMore=Show More
showLess=Show Less
myDiagrams=My Diagrams
allDiagrams=All Diagrams
recentlyUsed=Recently used
listView=Vue liste
gridView=Vue table
resultsFor=Résultats pour '{1}'
oneDriveCharsNotAllowed=The following characters are not allowed: ~ " # %  * : < > ? / \ { | }
oneDriveInvalidDeviceName=The specified device name is invalid
officeNotLoggedOD=You are not logged in to OneDrive. Please open draw.io task pane and login first.
officeSelectSingleDiag=Please select a single draw.io diagram only without other contents.
officeSelectDiag=Choisir un diagramme draw.io
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
noDiagrams=Aucun diagramme trouvé
authFailed=Authentication failed
officeFailedAuthMsg=Unable to successfully authenticate user or authorize application.
convertingDiagramFailed=Echec à la conversion de diagramme
officeCopyImgErrMsg=Due to some limitations in the host application, the image could not be inserted. Please manually copy the image then paste it to the document.
insertingImageFailed=Echec à l'insertion d'image
officeCopyImgInst=Instructions: Right-click the image below. Select "Copy image" from the context menu. Then, in the document, right-click and select "Paste" from the context menu.
folderEmpty=Dossier vide
recent=Récent
sharedWithMe=Shared With Me
sharepointSites=Sharepoint Sites
errorFetchingFolder=Error fetching folder items
errorAuthOD=Error authenticating to OneDrive
officeMainHeader=Adds draw.io diagrams to your document.
officeStepsHeader=This add-in performs the following steps:
officeStep1=Connects to Microsoft OneDrive, Google Drive or your device.
officeStep2=Select a draw.io diagram.
officeStep3=Insert the diagram into the document.
officeAuthPopupInfo=Please complete the authentication in the pop-up window.
officeSelDiag=Select draw.io Diagram:
files=Fichiers
shared=Partagés
sharepoint=Sharepoint
officeManualUpdateInst=Instructions: Copy draw.io diagram from the document. Then, in the box below, right-click and select "Paste" from the context menu.
officeClickToEdit=Click icon to start editing:
pasteDiagram=Paste draw.io diagram here
connectOD=Connect to OneDrive
selectChildren=Sélectionner les enfants
selectSiblings=Sélectionner les co-latéraux
selectParent=Sélectionner le parent
selectDescendants=Sélectionner les descendants
lastSaved=Last saved {1} ago
resolve=Resolve
reopen=Re-open
showResolved=Show Resolved
reply=Reply
objectNotFound=Object not found
reOpened=Re-opened
markedAsResolved=Marked as resolved
noCommentsFound=No comments found
comments=Comments
timeAgo={1} ago
confluenceCloud=Confluence Cloud
libraries=Libraries
confAnchor=Confluence Page Anchor
confTimeout=The connection has timed out
confSrvTakeTooLong=The server at {1} is taking too long to respond.
confCannotInsertNew=Cannot insert draw.io diagram to a new Confluence page
confSaveTry=Please save the page and try again.
confCannotGetID=Unable to determine page ID
confContactAdmin=Please contact your Confluence administrator.
readErr=Read Error
editingErr=Editing Error
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
confEditedExt=Diagram/Page edited externally
diagNotFound=Diagram Not Found
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please check the page.
retBack=Return back
confDiagNotPublished=The diagram does not belong to a published page
createdByDraw=Created by draw.io
filenameShort=Filename too short
invalidChars=Invalid characters
alreadyExst={1} already exists
draftReadErr=Draft Read Error
diagCantLoad=Diagram cannot be loaded
draftWriteErr=Draft Write Error
draftCantCreate=Draft could not be created
confDuplName=Duplicate diagram name detected. Please pick another name.
confSessionExpired=Looks like your session expired. Log in again to keep working.
login=Login
drawPrev=draw.io preview
drawDiag=draw.io diagram
invalidCallFnNotFound=Invalid Call: {1} not found
invalidCallErrOccured=Invalid Call: An error occurred, {1}
anonymous=Anonymous
confGotoPage=Go to containing page
showComments=Show Comments
confError=Error: {1}
gliffyImport=Gliffy Import
gliffyImportInst1=Click the "Start Import" button to import all Gliffy diagrams to draw.io.
gliffyImportInst2=Please note that the import procedure will take some time and the browser window must remain open until the import is completed.
startImport=Start Import
drawConfig=draw.io Configuration
customLib=Custom Libraries
customTemp=Custom Templates
pageIdsExp=Page IDs Export
drawReindex=draw.io re-indexing (beta)
working=Working
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
createConfSp=Create Config Space
unexpErrRefresh=Unexpected error, please refresh the page and try again.
configJSONInst=Write draw.io JSON configuration in the editor below then click save. If you need help, please refer to
thisPage=Cette page
curCustLib=Current Custom Libraries
libName=Library Name
action=Action
drawConfID=draw.io Config ID
addLibInst=Click the "Add Library" button to upload a new library.
addLib=Add Library
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
customTempInst2=For more details, please refer to
tempsPage=Templates page
pageIdsExpInst1=Select export target, then click the "Start Export" button to export all pages IDs.
pageIdsExpInst2=Please note that the export procedure will take some time and the browser window must remain open until the export is completed.
startExp=Start Export
refreshDrawIndex=Refresh draw.io Diagrams Index
reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index.
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
startIndexing=Start Indexing
confAPageFoundFetch=Page "{1}" found. Fetching
confAAllDiagDone=All {1} diagrams processed. Process finished.
confAStartedProcessing=Started processing page "{1}"
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
confAUpdatePageFailed=Updating page "{1}" failed.
confANoDiagFoundInPage=No {1} diagrams found in page "{2}".
confAFetchPageFailed=Fetching the page failed.
confANoDiagFound=No {1} diagrams found. Process finished.
confASearchFailed=Searching for {1} diagrams failed. Please try again later.
confAGliffyDiagFound={2} diagram "{1}" found. Importing
confAGliffyDiagImported={2} diagram "{1}" imported successfully.
confASavingImpGliffyFailed=Saving imported {2} diagram "{1}" failed.
confAImportedFromByDraw=Imported from "{1}" by draw.io
confAImportGliffyFailed=Importing {2} diagram "{1}" failed.
confAFetchGliffyFailed=Fetching {2} diagram "{1}" failed.
confACheckBrokenDiagLnk=Checking for broken diagrams links.
confADelDiagLinkOf=Deleting diagram link of "{1}"
confADupLnk=(duplicate link)
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
confADiagFoundIndex=Diagram "{1}" found. Indexing
confADiagIndexSucc=Diagram "{1}" indexed successfully.
confAIndexDiagFailed=Indexing diagram "{1}" failed.
confASkipDiagOtherPage=Skipped "{1}" as it belongs to another page!
confADiagUptoDate=Diagram "{1}" is up to date.
confACheckPagesWDraw=Checking pages having draw.io diagrams.
confAErrOccured=An error occurred!
savedSucc=Saved successfully
confASaveFailedErr=Saving Failed (Unexpected Error)
character=Character
confAConfPageDesc=This page contains draw.io configuration file (configuration.json) as attachment
confALibPageDesc=This page contains draw.io custom libraries as attachments
confATempPageDesc=This page contains draw.io custom templates as attachments
working=Working
confAConfSpaceDesc=This space is used to store draw.io configuration files and custom libraries/templates
confANoCustLib=No Custom Libraries
delFailed=Delete failed!
showID=Show ID
confAIncorrectLibFileType=Incorrect file type. Libraries should be XML files.
uploading=Uploading
confALibExist=This library already exists
confAUploadSucc=Uploaded successfully
confAUploadFailErr=Upload Failed (Unexpected Error)
hiResPreview=High Res Preview
officeNotLoggedGD=You are not logged in to Google Drive. Please open draw.io task pane and login first.
officePopupInfo=Please complete the process in the pop-up window.
pickODFile=Pick OneDrive File
createODFile=Create OneDrive File
pickGDriveFile=Pick Google Drive File
createGDriveFile=Create Google Drive File
pickDeviceFile=Pick Device File
vsdNoConfig="vsdurl" is not configured
ruler=Ruler
units=Unités
points=Points
inches=Pouces
millimeters=Millimètres
confEditDraftDelOrExt=This diagram is in a draft page, is deleted from the page, or is edited externally. It will be saved as a new attachment version and may not be reflected in the page.
confDiagEditedExt=Diagram is edited in another session. It will be saved as a new attachment version but the page will show other session's modifications.
macroNotFound=Macro Not Found
confAInvalidPageIdsFormat=Incorrect Page IDs file format
confACollectingCurPages=Collecting current pages
confABuildingPagesMap=Building pages mapping
confAProcessDrawDiag=Started processing imported draw.io diagrams
confAProcessDrawDiagDone=Finished processing imported draw.io diagrams
confAProcessImpPages=Started processing imported pages
confAErrPrcsDiagInPage=Error processing draw.io diagrams in page "{1}"
confAPrcsDiagInPage=Processing draw.io diagrams in page "{1}"
confAImpDiagram=Importing diagram "{1}"
confAImpDiagramFailed=Importing diagram "{1}" failed. Cannot find its new page ID. Maybe it points to a page that is not imported.
confAImpDiagramError=Error importing diagram "{1}". Cannot fetch or save the diagram. Cannot fix this diagram links.
confAUpdateDgrmCCFailed=Updating link to diagram "{1}" failed.
confImpDiagramSuccess=Updating diagram "{1}" done successfully.
confANoLnksInDrgm=No links to update in: {1}
confAUpdateLnkToPg=Updated link to page: "{1}" in diagram: "{2}"
confAUpdateLBLnkToPg=Updated lightbox link to page: "{1}" in diagram: "{2}"
confAUpdateLnkBase=Updated base URL from: "{1}" to: "{2}" in diagram: "{3}"
confAPageIdsImpDone=Page IDs Import finished
confAPrcsMacrosInPage=Processing draw.io macros in page "{1}"
confAErrFetchPage=Error fetching page "{1}"
confAFixingMacro=Fixing macro of diagram "{1}"
confAErrReadingExpFile=Error reading export file
confAPrcsDiagInPageDone=Processing draw.io diagrams in page "{1}" finished
confAFixingMacroSkipped=Fixing macro of diagram "{1}" failed. Cannot find its new page ID. Maybe it points to a page that is not imported.
pageIdsExpTrg=Export target
confALucidDiagImgImported={2} diagram "{1}" image extracted successfully
confASavingLucidDiagImgFailed=Extracting {2} diagram "{1}" image failed
confGetInfoFailed=Fetching file info from {1} failed.
confCheckCacheFailed=Cannot get cached file info.
confReadFileErr=Cannot read "{1}" file from {2}.
confSaveCacheFailed=Unexpected error. Cannot save cached file
orgChartType=Org Chart Type
linear=Linear
hanger2=Hanger 2
hanger4=Hanger 4
fishbone1=Fishbone 1
fishbone2=Fishbone 2
1ColumnLeft=Single Column Left
1ColumnRight=Single Column Right
smart=Smart
parentChildSpacing=Parent Child Spacing
siblingSpacing=Espace entre colatéraux
confNoPermErr=Sorry, you don't have enough permissions to view this embedded diagram from page {1}
copyAsImage=Copy as Image
lucidImport=Lucidchart Import
lucidImportInst1=Click the "Start Import" button to import all Lucidchart diagrams.
installFirst=Please install {1} first
drawioChromeExt=draw.io Chrome Extension
loginFirstThen=Please login to {1} first, then {2}
errFetchDocList=Error: Couldn't fetch documents list
builtinPlugins=Built-in Plugins
extPlugins=External Plugins
backupFound=Backup file found
chromeOnly=This feature only works in Google Chrome
msgDeleted=This message has been deleted
confAErrFetchDrawList=Error fetching diagrams list. Some diagrams are skipped.
confAErrCheckDrawDiag=Cannot check diagram {1}
confAErrFetchPageList=Error fetching pages list
confADiagImportIncom={1} diagram "{2}" is imported partially and may have missing shapes
invalidSel=Invalid selection
diagNameEmptyErr=Diagram name cannot be empty
openDiagram=Open Diagram
newDiagram=New diagram
editable=Editable
confAReimportStarted=Re-import {1} diagrams started...
spaceFilter=Filter by spaces
curViewState=Current Viewer State
pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found
attachment=Attachment
curDiagram=Current Diagram
recentDiags=Recent Diagrams
csvImport=CSV Import
chooseFile=Choose a file...
choose=Choose
gdriveFname=Google Drive filename
widthOfViewer=Width of the viewer (px)
heightOfViewer=Height of the viewer (px)
autoSetViewerSize=Automatically set the size of the viewer
thumbnail=Thumbnail
prevInDraw=Preview in draw.io
onedriveFname=OneDrive filename
diagFname=Diagram filename
diagUrl=Diagram URL
showDiag=Show Diagram
diagPreview=Diagram Preview
csvFileUrl=CSV File URL
generate=Generate
selectDiag2Insert=Please select a diagram to insert it.
errShowingDiag=Unexpected error. Cannot show diagram
noRecentDiags=No recent diagrams found
fetchingRecentFailed=Failed to fetch recent diagrams
useSrch2FindDiags=Use the search box to find draw.io diagrams
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
searchFailed=Searching failed. Please try again later.
plsTypeStr=Please type a search string.
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
cantReadUpload=Cannot read the uploaded diagram
select=Select
errCantGetIdType=Unexpected Error: Cannot get content id or type.
errGAuthWinBlocked=Error: Google Authentication window blocked
authDrawAccess=Authorize draw.io to access {1}
connTimeout=The connection has timed out
errAuthSrvc=Error authenticating to {1}
plsSelectFile=Please select a file
mustBgtZ={1} must be greater than zero
cantLoadPrev=Cannot load file preview.
errAccessFile=Error: Access Denied. You do not have permission to access "{1}".
noPrevAvail=No preview is available.
personalAccNotSup=Personal accounts are not supported.
errSavingTryLater=Error occurred during saving, please try again later.
plsEnterFld=Please enter {1}
invalidDiagUrl=Invalid Diagram URL
unsupportedVsdx=Unsupported vsdx file
unsupportedImg=Unsupported image file
unsupportedFormat=Unsupported file format
plsSelectSingleFile=Please select a single file only
attCorrupt=Attachment file "{1}" is corrupted
loadAttFailed=Failed to load attachment "{1}"
embedDrawDiag=Embed draw.io Diagram
addDiagram=Add Diagram
embedDiagram=Embed Diagram
editOwningPg=Edit owning page
deepIndexing=Deep Indexing (Index diagrams that aren't used in any page also)
confADeepIndexStarted=Deep Indexing Started
confADeepIndexDone=Deep Indexing Done
officeNoDiagramsSelected=No diagrams found in the selection
officeNoDiagramsInDoc=No diagrams found in the document
officeNotSupported=This feature is not supported in this host application
someImagesFailed={1} out of {2} failed due to the following errors
importingNoUsedDiagrams=Importing {1} Diagrams not used in pages
importingDrafts=Importing {1} Diagrams in drafts
processingDrafts=Processing drafts
updatingDrafts=Updating drafts
updateDrafts=Update drafts
notifications=Notifications
drawioImp=draw.io Import
confALibsImp=Importing draw.io Libraries
confALibsImpFailed=Importing {1} library failed
contributors=Contributors
drawDiagrams=draw.io Diagrams
errFileNotFoundOrNoPer=Error: Access Denied. File not found or you do not have permission to access "{1}" on {2}.
confACheckPagesWEmbed=Checking pages having embedded draw.io diagrams.
confADelBrokenEmbedDiagLnk=Removing broken embedded diagram links
replaceWith=Replace with
replaceAll=Replace All
confASkipDiagModified=Skipped "{1}" as it was modified after initial import
replFind=Replace/Find
matchesRepl={1} matches replaced
draftErrDataLoss=An error occurred while reading the draft file. The diagram cannot be edited now to prevent any possible data loss. Please try again later or contact support.
ibm=IBM
linkToDiagramHint=Add a link to this diagram. The diagram can only be edited from the page that owns it.
linkToDiagram=Link to Diagram
changedBy=Changed By
lastModifiedOn=Last modified on
searchResults=Search Results
showAllTemps=Show all templates
notionToken=Notion Token
selectDB=Select Database
noDBs=No Databases
diagramEdited={1} diagram "{2}" edited
confDraftPermissionErr=Draft cannot be written. Do you have attachment write/read permission on this page?
confDraftTooBigErr=Draft size is too large. Pease check "Attachment Maximum Size" of "Attachment Settings" in Confluence Configuration?
owner=Owner
repository=Repository
branch=Branch
meters=Meters
teamsNoEditingMsg=Editor functionality is only available in Desktop environment (in MS Teams App or a web browser)
contactOwner=Contact Owner
viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use the desktop client or a web browser.
website=Website
check4Updates=Check for updates
attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only.
spellCheck=Spell checker
noChange=No Change
lblToSvg=Convert labels to SVG
txtSettings=Text Settings
LinksLost=Links will be lost
arcSize=Arc Size
editConnectionPoints=Edit Connection Points
notInOffline=Not supported while offline
notInDesktop=Not supported in Desktop App
confConfigSpaceArchived=draw.io Configuration space (DRAWIOCONFIG) is archived. Please restore it first.
confACleanOldVerStarted=Cleaning old diagram draft versions started
confACleanOldVerDone=Cleaning old diagram draft versions finished
confACleaningFile=Cleaning diagram draft "{1}" old versions
confAFileCleaned=Cleaning diagram draft "{1}" done
confAFileCleanFailed=Cleaning diagram draft "{1}" failed
confACleanOnly=Clean Diagram Drafts Only
brush=Brush
openDevTools=Open Developer Tools
autoBkp=Automatic Backup
confAIgnoreCollectErr=Ignore collecting current pages errors