@bobfrankston/rmfmail 1.2.274 → 1.2.277
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/.commitmsg +31 -0
- package/bin/build-tinymce.js +27 -0
- package/client/android-bootstrap.bundle.js +169 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +231 -23
- package/client/app.bundle.js.map +4 -4
- package/client/app.js +81 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +75 -1
- package/client/components/invite-card.js +107 -0
- package/client/components/invite-card.js.map +1 -0
- package/client/components/invite-card.ts +119 -0
- package/client/components/message-viewer.js +42 -17
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +42 -16
- package/client/compose/compose.bundle.js +90 -2
- package/client/compose/compose.bundle.js.map +4 -4
- package/client/compose/compose.js +26 -1
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +22 -1
- package/client/compose/editor.js +12 -1
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +17 -2
- package/client/index.html +1 -0
- package/client/lib/rmf-tiny.js +3 -0
- package/client/lib/tinymce/langs/ar-SA.js +440 -0
- package/client/lib/tinymce/langs/ar.js +441 -0
- package/client/lib/tinymce/langs/az.js +440 -0
- package/client/lib/tinymce/langs/be.js +440 -0
- package/client/lib/tinymce/langs/bg-BG.js +440 -0
- package/client/lib/tinymce/langs/bn-BD.js +440 -0
- package/client/lib/tinymce/langs/bs.js +440 -0
- package/client/lib/tinymce/langs/ca.js +440 -0
- package/client/lib/tinymce/langs/cs.js +440 -0
- package/client/lib/tinymce/langs/cy.js +440 -0
- package/client/lib/tinymce/langs/da.js +440 -0
- package/client/lib/tinymce/langs/de.js +440 -0
- package/client/lib/tinymce/langs/el.js +440 -0
- package/client/lib/tinymce/langs/eo.js +440 -0
- package/client/lib/tinymce/langs/es-MX.js +440 -0
- package/client/lib/tinymce/langs/es.js +440 -0
- package/client/lib/tinymce/langs/et.js +440 -0
- package/client/lib/tinymce/langs/eu.js +440 -0
- package/client/lib/tinymce/langs/fa.js +441 -0
- package/client/lib/tinymce/langs/fi.js +440 -0
- package/client/lib/tinymce/langs/fr-FR.js +440 -0
- package/client/lib/tinymce/langs/gl.js +440 -0
- package/client/lib/tinymce/langs/he-IL.js +440 -0
- package/client/lib/tinymce/langs/hr.js +440 -0
- package/client/lib/tinymce/langs/hu-HU.js +440 -0
- package/client/lib/tinymce/langs/hy.js +440 -0
- package/client/lib/tinymce/langs/id.js +440 -0
- package/client/lib/tinymce/langs/index.json +63 -0
- package/client/lib/tinymce/langs/is-IS.js +440 -0
- package/client/lib/tinymce/langs/it.js +440 -0
- package/client/lib/tinymce/langs/ja.js +440 -0
- package/client/lib/tinymce/langs/ka-GE.js +440 -0
- package/client/lib/tinymce/langs/kab.js +440 -0
- package/client/lib/tinymce/langs/kk.js +440 -0
- package/client/lib/tinymce/langs/ko-KR.js +440 -0
- package/client/lib/tinymce/langs/lt.js +440 -0
- package/client/lib/tinymce/langs/lv.js +440 -0
- package/client/lib/tinymce/langs/nb-NO.js +440 -0
- package/client/lib/tinymce/langs/ne.js +440 -0
- package/client/lib/tinymce/langs/nl-BE.js +440 -0
- package/client/lib/tinymce/langs/nl.js +440 -0
- package/client/lib/tinymce/langs/oc.js +440 -0
- package/client/lib/tinymce/langs/pl.js +440 -0
- package/client/lib/tinymce/langs/pt-BR.js +440 -0
- package/client/lib/tinymce/langs/pt-PT.js +440 -0
- package/client/lib/tinymce/langs/ro.js +440 -0
- package/client/lib/tinymce/langs/ru.js +440 -0
- package/client/lib/tinymce/langs/sk.js +440 -0
- package/client/lib/tinymce/langs/sl-SI.js +440 -0
- package/client/lib/tinymce/langs/sr.js +440 -0
- package/client/lib/tinymce/langs/sv-SE.js +440 -0
- package/client/lib/tinymce/langs/ta.js +440 -0
- package/client/lib/tinymce/langs/tg.js +440 -0
- package/client/lib/tinymce/langs/th-TH.js +440 -0
- package/client/lib/tinymce/langs/tr.js +440 -0
- package/client/lib/tinymce/langs/ug.js +440 -0
- package/client/lib/tinymce/langs/uk.js +440 -0
- package/client/lib/tinymce/langs/vi.js +440 -0
- package/client/lib/tinymce/langs/zh-CN.js +440 -0
- package/client/lib/tinymce/langs/zh-HK.js +440 -0
- package/client/lib/tinymce/langs/zh-MO.js +440 -0
- package/client/lib/tinymce/langs/zh-TW.js +440 -0
- package/client/lib/tinymce-langs.js +96 -0
- package/client/lib/tinymce-langs.js.map +1 -0
- package/client/lib/tinymce-langs.ts +99 -0
- package/client/package.json +1 -1
- package/client/styles/components.css +48 -0
- package/docs/editor.md +29 -3
- package/docs/preferences.md +2 -1
- package/npmchanges.md +29 -0
- package/package.json +18 -15
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +2 -2
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store/store.d.ts +5 -0
- package/packages/mailx-store/store.d.ts.map +1 -1
- package/packages/mailx-store/store.js +21 -0
- package/packages/mailx-store/store.js.map +1 -1
- package/packages/mailx-store/store.ts +27 -0
- package/packages/mailx-types/index.d.ts +56 -0
- package/packages/mailx-types/index.d.ts.map +1 -1
- package/packages/mailx-types/index.js +187 -0
- package/packages/mailx-types/index.js.map +1 -1
- package/packages/mailx-types/index.ts +192 -0
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-31304 → node_modules.npmglobalize-stash-48352}/.package-lock.json +0 -0
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
tinymce.addI18n("fr-FR", {
|
|
2
|
+
"#": "#",
|
|
3
|
+
"Accessibility": "Accessibilit\xe9",
|
|
4
|
+
"Accordion": "Accord\xe9on",
|
|
5
|
+
"Accordion body...": "Corps de l'accord\xe9on...",
|
|
6
|
+
"Accordion summary...": "R\xe9sum\xe9 de l'accord\xe9on...",
|
|
7
|
+
"Action": "Action",
|
|
8
|
+
"Activity": "Activit\xe9",
|
|
9
|
+
"Address": "Adresse",
|
|
10
|
+
"Advanced": "Options avanc\xe9es",
|
|
11
|
+
"Align": "Aligner",
|
|
12
|
+
"Align center": "Centrer",
|
|
13
|
+
"Align left": "Aligner \xe0 gauche",
|
|
14
|
+
"Align right": "Aligner \xe0 droite",
|
|
15
|
+
"Alignment": "Alignement",
|
|
16
|
+
"Alignment {0}": "Alignement {0}",
|
|
17
|
+
"All": "Tout",
|
|
18
|
+
"Alternative description": "Description alternative",
|
|
19
|
+
"Alternative source": "Source alternative",
|
|
20
|
+
"Alternative source URL": "URL de la source alternative",
|
|
21
|
+
"Anchor": "Ancre",
|
|
22
|
+
"Anchor...": "Ancre...",
|
|
23
|
+
"Anchors": "Ancres",
|
|
24
|
+
"Animals and Nature": "Animaux & nature",
|
|
25
|
+
"Arrows": "Fl\xe8ches",
|
|
26
|
+
"B": "B",
|
|
27
|
+
"Background color": "Couleur d'arri\xe8re-plan",
|
|
28
|
+
"Background color menu": "Menu de couleur de l'arri\xe8re-plan",
|
|
29
|
+
"Background color {0}": "Couleur d'arri\xe8re-plan {0}",
|
|
30
|
+
"Black": "Noir",
|
|
31
|
+
"Block": "Bloc",
|
|
32
|
+
"Block {0}": "Bloc {0}",
|
|
33
|
+
"Blockquote": "Bloc de citation",
|
|
34
|
+
"Blocks": "Blocs",
|
|
35
|
+
"Blue": "Bleu",
|
|
36
|
+
"Blue channel": "Canal bleu",
|
|
37
|
+
"Body": "Corps",
|
|
38
|
+
"Bold": "Gras",
|
|
39
|
+
"Border": "Bordure",
|
|
40
|
+
"Border color": "Couleur de bordure",
|
|
41
|
+
"Border style": "Style de la bordure",
|
|
42
|
+
"Border width": "\xc9paisseur de la bordure",
|
|
43
|
+
"Bottom": "En bas",
|
|
44
|
+
"Browse files": "Consulter les fichiers",
|
|
45
|
+
"Browse for an image": "Rechercher une image",
|
|
46
|
+
"Browse links": "Consulter les liens",
|
|
47
|
+
"Build with {0}": "Cr\xe9er avec {0}",
|
|
48
|
+
"Bullet list": "Liste \xe0 puces",
|
|
49
|
+
"Cancel": "Annuler",
|
|
50
|
+
"Caption": "L\xe9gende",
|
|
51
|
+
"Cell": "Cellule",
|
|
52
|
+
"Cell padding": "Marge int\xe9rieure des cellules",
|
|
53
|
+
"Cell properties": "Propri\xe9t\xe9s de la cellule",
|
|
54
|
+
"Cell spacing": "Espacement entre les cellules",
|
|
55
|
+
"Cell styles": "Type de cellule",
|
|
56
|
+
"Cell type": "Type de cellule",
|
|
57
|
+
"Center": "Centre",
|
|
58
|
+
"Characters": "Caract\xe8res",
|
|
59
|
+
"Characters (no spaces)": "Caract\xe8res (espaces non compris)",
|
|
60
|
+
"Circle": "Cercle",
|
|
61
|
+
"Class": "Classe",
|
|
62
|
+
"Clear formatting": "Effacer la mise en forme",
|
|
63
|
+
"Close": "Fermer",
|
|
64
|
+
"Code": "Code",
|
|
65
|
+
"Code sample...": "Exemple de code...",
|
|
66
|
+
"Code view": "Affichage du code",
|
|
67
|
+
"Color Picker": "S\xe9lecteur de couleurs",
|
|
68
|
+
"Color swatch": "\xc9chantillon de couleurs",
|
|
69
|
+
"Cols": "Colonnes",
|
|
70
|
+
"Column": "Colonne",
|
|
71
|
+
"Column clipboard actions": "Actions du presse-papiers des colonnes",
|
|
72
|
+
"Column group": "Groupe de colonnes",
|
|
73
|
+
"Column header": "En-t\xeate de colonne",
|
|
74
|
+
"Constrain proportions": "Limiter les proportions",
|
|
75
|
+
"Copy": "Copier",
|
|
76
|
+
"Copy column": "Copier la colonne",
|
|
77
|
+
"Copy row": "Copier la ligne",
|
|
78
|
+
"Could not find the specified string.": "Impossible de trouver la cha\xeene sp\xe9cifi\xe9e.",
|
|
79
|
+
"Could not load emojis": "Impossible de charger les emojis",
|
|
80
|
+
"Count": "Total",
|
|
81
|
+
"Currency": "Devise",
|
|
82
|
+
"Current window": "Fen\xeatre active",
|
|
83
|
+
"Custom color": "Couleur personnalis\xe9e",
|
|
84
|
+
"Custom...": "Personnalis\xe9e...",
|
|
85
|
+
"Cut": "Couper",
|
|
86
|
+
"Cut column": "Couper la colonne",
|
|
87
|
+
"Cut row": "Couper la ligne",
|
|
88
|
+
"Dark Blue": "Bleu fonc\xe9",
|
|
89
|
+
"Dark Gray": "Gris fonc\xe9",
|
|
90
|
+
"Dark Green": "Vert fonc\xe9",
|
|
91
|
+
"Dark Orange": "Orange fonc\xe9",
|
|
92
|
+
"Dark Purple": "Violet fonc\xe9",
|
|
93
|
+
"Dark Red": "Rouge fonc\xe9",
|
|
94
|
+
"Dark Turquoise": "Turquoise fonc\xe9",
|
|
95
|
+
"Dark Yellow": "Jaune fonc\xe9",
|
|
96
|
+
"Dashed": "Tirets",
|
|
97
|
+
"Date/time": "Date/heure",
|
|
98
|
+
"Decrease indent": "R\xe9duire le retrait",
|
|
99
|
+
"Default": "Par d\xe9faut",
|
|
100
|
+
"Delete accordion": "Supprimer l'accord\xe9on",
|
|
101
|
+
"Delete column": "Supprimer la colonne",
|
|
102
|
+
"Delete row": "Supprimer la ligne",
|
|
103
|
+
"Delete table": "Supprimer le tableau",
|
|
104
|
+
"Dimensions": "Dimensions",
|
|
105
|
+
"Disc": "Disque",
|
|
106
|
+
"Div": "Div",
|
|
107
|
+
"Document": "Document",
|
|
108
|
+
"Dotted": "Pointill\xe9",
|
|
109
|
+
"Double": "Deux traits continus",
|
|
110
|
+
"Drop an image here": "D\xe9poser une image ici",
|
|
111
|
+
"Dropped file type is not supported": "Le type de fichier d\xe9pos\xe9 n'est pas pris en charge",
|
|
112
|
+
"Edit": "Modifier",
|
|
113
|
+
"Editor's height: {0} pixels": "Hauteur de l'\xe9diteur\xa0: {0} pixels",
|
|
114
|
+
"Editor's height: {0} pixels, Editor's width: {1} pixels": "Hauteur de l'\xe9diteur\xa0: {0} pixels, largeur de l'\xe9diteur\xa0: {1} pixels",
|
|
115
|
+
"Embed": "Incorporer",
|
|
116
|
+
"Emojis": "\xc9mojis",
|
|
117
|
+
"Emojis...": "\xc9mojis...",
|
|
118
|
+
"Error": "Erreur",
|
|
119
|
+
"Error: Form submit field collision.": "Erreur\xa0: conflit de champs lors de la soumission du formulaire.",
|
|
120
|
+
"Error: No form element found.": "Erreur : aucun \xe9l\xe9ment de formulaire trouv\xe9.",
|
|
121
|
+
"Extended Latin": "Latin \xe9tendu",
|
|
122
|
+
"Failed to initialize plugin: {0}": "\xc9chec d'initialisation de l'extension\xa0: {0}",
|
|
123
|
+
"Failed to load plugin url: {0}": "\xc9chec de chargement de l'URL du plug-in\xa0: {0}",
|
|
124
|
+
"Failed to load plugin: {0} from url {1}": "\xc9chec de chargement du plug-in\xa0: {0} \xe0 partir de l\u2019URL {1}",
|
|
125
|
+
"Failed to upload image: {0}": "\xc9chec d'envoi de l'image\xa0: {0}",
|
|
126
|
+
"File": "Fichier",
|
|
127
|
+
"Find": "Rechercher",
|
|
128
|
+
"Find (if searchreplace plugin activated)": "Rechercher (si l'extension 'searchreplace' est activ\xe9e)",
|
|
129
|
+
"Find and Replace": "Trouver et remplacer",
|
|
130
|
+
"Find and replace...": "Trouver et remplacer...",
|
|
131
|
+
"Find in selection": "Trouver dans la s\xe9lection",
|
|
132
|
+
"Find whole words only": "Mot entier",
|
|
133
|
+
"Flags": "Drapeaux",
|
|
134
|
+
"Focus to contextual toolbar": "Mettre le focus sur la barre d'outils contextuelle",
|
|
135
|
+
"Focus to element path": "Mettre le focus sur le chemin vers l'\xe9l\xe9ment",
|
|
136
|
+
"Focus to menubar": "Mettre le focus sur la barre de menu",
|
|
137
|
+
"Focus to notification": "Cibler la notification",
|
|
138
|
+
"Focus to toolbar": "Mettre le focus sur la barre d'outils",
|
|
139
|
+
"Font": "Police",
|
|
140
|
+
"Font size {0}": "Taille de police\xa0{0}",
|
|
141
|
+
"Font sizes": "Tailles de police",
|
|
142
|
+
"Font {0}": "Police {0}",
|
|
143
|
+
"Fonts": "Polices",
|
|
144
|
+
"Food and Drink": "Nourriture & boissons",
|
|
145
|
+
"Footer": "Pied de page",
|
|
146
|
+
"Format": "Format",
|
|
147
|
+
"Format {0}": "Format\xa0{0}",
|
|
148
|
+
"Formats": "Formats",
|
|
149
|
+
"Fullscreen": "Plein \xe9cran",
|
|
150
|
+
"G": "V",
|
|
151
|
+
"General": "G\xe9n\xe9ral",
|
|
152
|
+
"Gray": "Gris",
|
|
153
|
+
"Green": "Vert",
|
|
154
|
+
"Green channel": "Canal vert",
|
|
155
|
+
"Groove": "Sculpt\xe9",
|
|
156
|
+
"Handy Shortcuts": "Raccourcis utiles",
|
|
157
|
+
"Header": "En-t\xeate",
|
|
158
|
+
"Header cell": "Cellule d'en-t\xeate",
|
|
159
|
+
"Heading 1": "Titre\xa01",
|
|
160
|
+
"Heading 2": "Titre\xa02",
|
|
161
|
+
"Heading 3": "Titre\xa03",
|
|
162
|
+
"Heading 4": "Titre\xa04",
|
|
163
|
+
"Heading 5": "Titre\xa05",
|
|
164
|
+
"Heading 6": "Titre\xa06",
|
|
165
|
+
"Headings": "Titres",
|
|
166
|
+
"Height": "Hauteur",
|
|
167
|
+
"Height:": "Hauteur :",
|
|
168
|
+
"Help": "Aide",
|
|
169
|
+
"Hex color code": "Code couleur hexad\xe9cimal",
|
|
170
|
+
"Hexadecimal only, 000000 to FFFFFF": "Valeurs hexad\xe9cimales uniquement, de 000000 \xe0 FFFFFF",
|
|
171
|
+
"Hidden": "Masqu\xe9",
|
|
172
|
+
"Horizontal align": "Alignement horizontal",
|
|
173
|
+
"Horizontal line": "Ligne horizontale",
|
|
174
|
+
"Horizontal space": "Espace horizontal",
|
|
175
|
+
"ID": "ID",
|
|
176
|
+
"ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'ID doit commencer par une lettre, suivie uniquement par des lettres, num\xe9ros, tirets, points, deux-points et underscores.",
|
|
177
|
+
"Image is decorative": "L'image est d\xe9corative",
|
|
178
|
+
"Image list": "Liste des images",
|
|
179
|
+
"Image title": "Titre d'image",
|
|
180
|
+
"Image...": "Image...",
|
|
181
|
+
"ImageProxy HTTP error: Could not find Image Proxy": "Erreur HTTP d'ImageProxy : Impossible de trouver ImageProxy",
|
|
182
|
+
"ImageProxy HTTP error: Incorrect Image Proxy URL": "Erreur HTTP d'ImageProxy : URL de ImageProxy incorrecte",
|
|
183
|
+
"ImageProxy HTTP error: Rejected request": "Erreur HTTP d'ImageProxy : Requ\xeate rejet\xe9e",
|
|
184
|
+
"ImageProxy HTTP error: Unknown ImageProxy error": "Erreur HTTP d'ImageProxy : Erreur ImageProxy inconnue",
|
|
185
|
+
"Increase indent": "Augmenter le retrait",
|
|
186
|
+
"Inline": "En ligne",
|
|
187
|
+
"Insert": "Ins\xe9rer",
|
|
188
|
+
"Insert Template": "Ins\xe9rer le mod\xe8le",
|
|
189
|
+
"Insert accordion": "Ins\xe9rer un accord\xe9on",
|
|
190
|
+
"Insert column after": "Ins\xe9rer une colonne apr\xe8s",
|
|
191
|
+
"Insert column before": "Ins\xe9rer une colonne avant",
|
|
192
|
+
"Insert date/time": "Ins\xe9rer date/heure",
|
|
193
|
+
"Insert date/time menu": "Menu d'insertion de la date/l'heure",
|
|
194
|
+
"Insert image": "Ins\xe9rer une image",
|
|
195
|
+
"Insert link (if link plugin activated)": "Ins\xe9rer un lien (si l'extension 'link' est activ\xe9e)",
|
|
196
|
+
"Insert row after": "Ins\xe9rer une ligne apr\xe8s",
|
|
197
|
+
"Insert row before": "Ins\xe9rer une ligne avant",
|
|
198
|
+
"Insert table": "Ins\xe9rer un tableau",
|
|
199
|
+
"Insert template...": "Ins\xe9rer un mod\xe8le...",
|
|
200
|
+
"Insert video": "Ins\xe9rer une vid\xe9o",
|
|
201
|
+
"Insert/Edit code sample": "Ins\xe9rer / modifier un bloc de code",
|
|
202
|
+
"Insert/edit image": "Ins\xe9rer/modifier image",
|
|
203
|
+
"Insert/edit link": "Ins\xe9rer/modifier lien",
|
|
204
|
+
"Insert/edit media": "Ins\xe9rer/modifier un m\xe9dia",
|
|
205
|
+
"Insert/edit video": "Ins\xe9rer/modifier une vid\xe9o",
|
|
206
|
+
"Inset": "Incrust\xe9",
|
|
207
|
+
"Invalid hex color code: {0}": "Code couleur hexad\xe9cimal invalide : {0}",
|
|
208
|
+
"Invalid input": "Entr\xe9e invalide",
|
|
209
|
+
"Italic": "Italique",
|
|
210
|
+
"Justify": "Justifier",
|
|
211
|
+
"Keyboard Navigation": "Navigation au clavier",
|
|
212
|
+
"Language": "Langue",
|
|
213
|
+
"Learn more...": "En savoir plus...",
|
|
214
|
+
"Left": "Gauche",
|
|
215
|
+
"Left to right": "De gauche \xe0 droite",
|
|
216
|
+
"Light Blue": "Bleu clair",
|
|
217
|
+
"Light Gray": "Gris clair",
|
|
218
|
+
"Light Green": "Vert clair",
|
|
219
|
+
"Light Purple": "Violet clair",
|
|
220
|
+
"Light Red": "Rouge clair",
|
|
221
|
+
"Light Yellow": "Jaune clair",
|
|
222
|
+
"Line height": "Hauteur de la ligne",
|
|
223
|
+
"Link": "Lien",
|
|
224
|
+
"Link list": "Liste des liens",
|
|
225
|
+
"Link...": "Lien...",
|
|
226
|
+
"List Properties": "Propri\xe9t\xe9s de la liste",
|
|
227
|
+
"List properties...": "Lister les propri\xe9t\xe9s...",
|
|
228
|
+
"Loading emojis...": "Chargement des emojis...",
|
|
229
|
+
"Loading...": "Chargement...",
|
|
230
|
+
"Lower Alpha": "Alphabet en minuscules",
|
|
231
|
+
"Lower Greek": "Alphabet grec en minuscules",
|
|
232
|
+
"Lower Roman": "Chiffre romain inf\xe9rieur",
|
|
233
|
+
"Match case": "Respecter la casse",
|
|
234
|
+
"Mathematical": "Op\xe9rateurs math\xe9matiques",
|
|
235
|
+
"Media poster (Image URL)": "Affiche de m\xe9dia (URL de l'image)",
|
|
236
|
+
"Media...": "M\xe9dia...",
|
|
237
|
+
"Medium Blue": "Bleu moyen",
|
|
238
|
+
"Medium Gray": "Gris moyen",
|
|
239
|
+
"Medium Purple": "Violet moyen",
|
|
240
|
+
"Merge cells": "Fusionner les cellules",
|
|
241
|
+
"Middle": "Au milieu",
|
|
242
|
+
"Midnight Blue": "Bleu de minuit",
|
|
243
|
+
"More...": "Plus...",
|
|
244
|
+
"Name": "Nom",
|
|
245
|
+
"Navy Blue": "Bleu marine",
|
|
246
|
+
"New document": "Nouveau document",
|
|
247
|
+
"New window": "Nouvelle fen\xeatre",
|
|
248
|
+
"Next": "Suivante",
|
|
249
|
+
"No": "Non",
|
|
250
|
+
"No alignment": "Aucun alignement",
|
|
251
|
+
"No color": "Aucune couleur",
|
|
252
|
+
"Nonbreaking space": "Espace ins\xe9cable",
|
|
253
|
+
"None": "Aucun",
|
|
254
|
+
"Numbered list": "Liste num\xe9rot\xe9e",
|
|
255
|
+
"Numbers only, 0 to 255": "Nombres uniquement, de 0 \xe0 255",
|
|
256
|
+
"OR": "OU",
|
|
257
|
+
"Objects": "Objets",
|
|
258
|
+
"Ok": "Ok",
|
|
259
|
+
"Open help dialog": "Ouvrir la bo\xeete de dialogue d'aide",
|
|
260
|
+
"Open link": "Ouvrir le lien",
|
|
261
|
+
"Open link in...": "Ouvrir le lien dans...",
|
|
262
|
+
"Open popup menu for split buttons": "Ouvrir le menu contextuel pour les boutons partag\xe9s",
|
|
263
|
+
"Orange": "Orange",
|
|
264
|
+
"Outset": "Relief",
|
|
265
|
+
"Page break": "Saut de page",
|
|
266
|
+
"Paragraph": "Paragraphe",
|
|
267
|
+
"Paste": "Coller",
|
|
268
|
+
"Paste as text": "Coller comme texte",
|
|
269
|
+
"Paste column after": "Coller la colonne apr\xe8s",
|
|
270
|
+
"Paste column before": "Coller la colonne avant",
|
|
271
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le collage est maintenant en mode texte brut. Les contenus seront coll\xe9s sans retenir les formatages jusqu'\xe0 ce que vous d\xe9sactiviez cette option.",
|
|
272
|
+
"Paste or type a link": "Coller ou taper un lien",
|
|
273
|
+
"Paste row after": "Coller la ligne apr\xe8s",
|
|
274
|
+
"Paste row before": "Coller la ligne avant",
|
|
275
|
+
"Paste your embed code below:": "Collez votre code incorpor\xe9 ci-dessous :",
|
|
276
|
+
"People": "Personnes",
|
|
277
|
+
"Plugins": "Plug-ins",
|
|
278
|
+
"Plugins installed ({0}):": "Extensions install\xe9es ({0})\xa0:",
|
|
279
|
+
"Powered by {0}": "Avec {0}",
|
|
280
|
+
"Pre": "Pr\xe9format\xe9",
|
|
281
|
+
"Preferences": "Pr\xe9f\xe9rences",
|
|
282
|
+
"Preformatted": "Pr\xe9format\xe9",
|
|
283
|
+
"Premium plugins:": "Plug-ins premium\xa0:",
|
|
284
|
+
"Press the Up and Down arrow keys to resize the editor.": "Appuyez sur les touches fl\xe9ch\xe9es haut et bas pour redimensionner l'\xe9diteur.",
|
|
285
|
+
"Press the arrow keys to resize the editor.": "Appuyez sur les touches fl\xe9ch\xe9es pour redimensionner l'\xe9diteur.",
|
|
286
|
+
"Press {0} for help": "Appuyez sur {0} pour obtenir de l'aide",
|
|
287
|
+
"Preview": "Aper\xe7u",
|
|
288
|
+
"Previous": "Pr\xe9c\xe9dente",
|
|
289
|
+
"Print": "Imprimer",
|
|
290
|
+
"Print...": "Imprimer...",
|
|
291
|
+
"Purple": "Violet",
|
|
292
|
+
"Quotations": "Citations",
|
|
293
|
+
"R": "R",
|
|
294
|
+
"Range 0 to 255": "Plage de 0 \xe0 255",
|
|
295
|
+
"Red": "Rouge",
|
|
296
|
+
"Red channel": "Canal rouge",
|
|
297
|
+
"Redo": "Refaire",
|
|
298
|
+
"Remove": "Retir\xe9",
|
|
299
|
+
"Remove color": "Supprimer la couleur",
|
|
300
|
+
"Remove link": "Enlever le lien",
|
|
301
|
+
"Replace": "Remplacer",
|
|
302
|
+
"Replace all": "Remplacer tout",
|
|
303
|
+
"Replace with": "Remplacer par",
|
|
304
|
+
"Resize": "Redimensionner",
|
|
305
|
+
"Restore last draft": "Restaurer le dernier brouillon",
|
|
306
|
+
"Reveal or hide additional toolbar items": "Affichez ou masquez les \xe9l\xe9ments suppl\xe9mentaires de la barre d'outils",
|
|
307
|
+
"Rich Text Area": "Zone de Texte Riche",
|
|
308
|
+
"Rich Text Area. Press ALT-0 for help.": "Zone de Texte Riche. Appuyez sur ALT-0 pour l'aide.",
|
|
309
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone de Texte Riche. Appuyez sur ALT-F9 pour le menu. Appuyez sur ALT-F10 pour la barre d'outils. Appuyez sur ALT-0 pour l'aide",
|
|
310
|
+
"Ridge": "Extrud\xe9",
|
|
311
|
+
"Right": "Droite",
|
|
312
|
+
"Right to left": "De droite \xe0 gauche",
|
|
313
|
+
"Row": "Ligne",
|
|
314
|
+
"Row clipboard actions": "Actions du presse-papiers des lignes",
|
|
315
|
+
"Row group": "Groupe de lignes",
|
|
316
|
+
"Row header": "En-t\xeate de ligne",
|
|
317
|
+
"Row properties": "Propri\xe9t\xe9s de la ligne",
|
|
318
|
+
"Row type": "Type de ligne",
|
|
319
|
+
"Rows": "Lignes",
|
|
320
|
+
"Save": "Enregistrer",
|
|
321
|
+
"Save (if save plugin activated)": "Enregistrer (si l'extension 'save' est activ\xe9e)",
|
|
322
|
+
"Scope": "\xc9tendue",
|
|
323
|
+
"Search": "Rechercher",
|
|
324
|
+
"Select all": "S\xe9lectionner tout",
|
|
325
|
+
"Select the {0} element": "S\xe9lectionner l'\xe9l\xe9ment {0}",
|
|
326
|
+
"Select...": "S\xe9lectionner...",
|
|
327
|
+
"Selection": "S\xe9lection",
|
|
328
|
+
"Shortcut": "Raccourci",
|
|
329
|
+
"Show blocks": "Afficher les blocs",
|
|
330
|
+
"Show caption": "Afficher une l\xe9gende",
|
|
331
|
+
"Show invisible characters": "Afficher les caract\xe8res invisibles",
|
|
332
|
+
"Size": "Taille",
|
|
333
|
+
"Solid": "Trait continu",
|
|
334
|
+
"Source": "Source",
|
|
335
|
+
"Source code": "Code source",
|
|
336
|
+
"Special Character": "Caract\xe8re sp\xe9cial",
|
|
337
|
+
"Special character...": "Caract\xe8re sp\xe9cial...",
|
|
338
|
+
"Split cell": "Diviser la cellule",
|
|
339
|
+
"Square": "Carr\xe9",
|
|
340
|
+
"Start list at number": "Liste de d\xe9part au num\xe9ro",
|
|
341
|
+
"Strikethrough": "Barr\xe9",
|
|
342
|
+
"Style": "Style",
|
|
343
|
+
"Subscript": "Indice",
|
|
344
|
+
"Superscript": "Exposant",
|
|
345
|
+
"Switch to or from fullscreen mode": "Passer en ou quitter le mode plein \xe9cran",
|
|
346
|
+
"Symbols": "Symboles",
|
|
347
|
+
"System Font": "Police syst\xe8me",
|
|
348
|
+
"Table": "Tableau",
|
|
349
|
+
"Table caption": "L\xe9gende de tableau",
|
|
350
|
+
"Table properties": "Propri\xe9t\xe9s du tableau",
|
|
351
|
+
"Table styles": "Style tableau",
|
|
352
|
+
"Template": "Mod\xe8le",
|
|
353
|
+
"Templates": "Mod\xe8les",
|
|
354
|
+
"Text": "Texte",
|
|
355
|
+
"Text color": "Couleur du texte",
|
|
356
|
+
"Text color menu": "Menu de couleur du texte",
|
|
357
|
+
"Text color {0}": "Couleur du texte {0}",
|
|
358
|
+
"Text to display": "Texte \xe0 afficher",
|
|
359
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez saisie semble \xeatre une adresse e-mail. Souhaitez-vous y ajouter le pr\xe9fixe requis mailto:\xa0?",
|
|
360
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "L'URL que vous avez saisie semble \xeatre un lien externe. Souhaitez-vous y ajouter le pr\xe9fixe requis mailto:\xa0?",
|
|
361
|
+
"The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "L'URL que vous avez saisie semble \xeatre un lien externe. Voulez-vous ajouter le pr\xe9fixe https:// requis\xa0?",
|
|
362
|
+
"Title": "Titre",
|
|
363
|
+
"To open the popup, press Shift+Enter": "Pour ouvrir la popup, appuyez sur Maj+Entr\xe9e",
|
|
364
|
+
"Toggle accordion": "Activer l'accord\xe9on",
|
|
365
|
+
"Tools": "Outils",
|
|
366
|
+
"Top": "En haut",
|
|
367
|
+
"Travel and Places": "Voyages et lieux",
|
|
368
|
+
"Turquoise": "Turquoise",
|
|
369
|
+
"Underline": "Soulign\xe9",
|
|
370
|
+
"Undo": "Annuler",
|
|
371
|
+
"Upload": "T\xe9l\xe9charger",
|
|
372
|
+
"Uploading image": "T\xe9l\xe9versement d'une image",
|
|
373
|
+
"Upper Alpha": "Alphabet en majuscules",
|
|
374
|
+
"Upper Roman": "Chiffre romain sup\xe9rieur",
|
|
375
|
+
"Url": "URL",
|
|
376
|
+
"Use arrow keys to navigate.": "Utilisez les touches de fl\xe8ches pour parcourir les options.",
|
|
377
|
+
"User Defined": "D\xe9fini par l'utilisateur",
|
|
378
|
+
"Valid": "Valide",
|
|
379
|
+
"Version": "Version",
|
|
380
|
+
"Vertical align": "Alignement vertical",
|
|
381
|
+
"Vertical space": "Espace vertical",
|
|
382
|
+
"View": "Afficher",
|
|
383
|
+
"Visual aids": "Aides visuelles",
|
|
384
|
+
"Warn": "Avertir",
|
|
385
|
+
"White": "Blanc",
|
|
386
|
+
"Width": "Largeur",
|
|
387
|
+
"Width:": "Largeur :",
|
|
388
|
+
"Word count": "Nombre de mots",
|
|
389
|
+
"Words": "Mots",
|
|
390
|
+
"Words: {0}": "Mots\xa0: {0}",
|
|
391
|
+
"Yellow": "Jaune",
|
|
392
|
+
"Yes": "Oui",
|
|
393
|
+
"You are using {0}": "Vous utilisez {0}",
|
|
394
|
+
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\xe9es, \xeates-vous s\xfbr de vouloir quitter la page\xa0?",
|
|
395
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas l\u2019acc\xe8s direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X/C/V.",
|
|
396
|
+
"alignment": "alignement",
|
|
397
|
+
"austral sign": "Symbole austral",
|
|
398
|
+
"cedi sign": "Symbole cedi",
|
|
399
|
+
"colon sign": "symbole col\xf3n",
|
|
400
|
+
"cruzeiro sign": "Symbole cruzeiro",
|
|
401
|
+
"currency sign": "symbole devise",
|
|
402
|
+
"dollar sign": "symbole dollar",
|
|
403
|
+
"dong sign": "Symbole dong",
|
|
404
|
+
"drachma sign": "Symbole drachme",
|
|
405
|
+
"euro-currency sign": "symbole euro",
|
|
406
|
+
"example": "exemple",
|
|
407
|
+
"formatting": "mise en forme",
|
|
408
|
+
"french franc sign": "symbole franc fran\xe7ais",
|
|
409
|
+
"german penny symbol": "Symbole pfennig",
|
|
410
|
+
"guarani sign": "Symbole guarani",
|
|
411
|
+
"history": "historique",
|
|
412
|
+
"hryvnia sign": "Symbole hryvnia",
|
|
413
|
+
"indentation": "retrait",
|
|
414
|
+
"indian rupee sign": "Symbole roupie indienne",
|
|
415
|
+
"kip sign": "Symbole kip",
|
|
416
|
+
"lira sign": "Symbole lire",
|
|
417
|
+
"livre tournois sign": "Symbole livre tournois",
|
|
418
|
+
"manat sign": "Symbole manat",
|
|
419
|
+
"mill sign": "Symbole milli\xe8me",
|
|
420
|
+
"naira sign": "Symbole naira",
|
|
421
|
+
"new sheqel sign": "Symbole nouveau ch\xe9kel",
|
|
422
|
+
"nordic mark sign": "Symbole du mark nordique",
|
|
423
|
+
"peseta sign": "Symbole peseta",
|
|
424
|
+
"peso sign": "Symbole peso",
|
|
425
|
+
"ruble sign": "Symbole rouble",
|
|
426
|
+
"rupee sign": "Symbole roupie",
|
|
427
|
+
"spesmilo sign": "Symbole spesmilo",
|
|
428
|
+
"styles": "styles",
|
|
429
|
+
"tenge sign": "Symbole tenge",
|
|
430
|
+
"tugrik sign": "Symbole tougrik",
|
|
431
|
+
"turkish lira sign": "Symbole lire turque",
|
|
432
|
+
"won sign": "Symbole won",
|
|
433
|
+
"yen character": "Sinogramme Yen",
|
|
434
|
+
"yen/yuan character variant one": "Sinogramme Yen/Yuan, premi\xe8re variante",
|
|
435
|
+
"yuan character": "Sinogramme Yuan",
|
|
436
|
+
"yuan character, in hong kong and taiwan": "Sinogramme Yuan, Hong Kong et Taiwan",
|
|
437
|
+
"{0} characters": "{0}\xa0caract\xe8res",
|
|
438
|
+
"{0} columns, {1} rows": "\xa0{0}\xa0colonnes,\xa0{1}\xa0lignes",
|
|
439
|
+
"{0} words": "{0} mots"
|
|
440
|
+
});
|