This repository was archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathstrings.js
More file actions
58 lines (54 loc) · 3.42 KB
/
strings.js
File metadata and controls
58 lines (54 loc) · 3.42 KB
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
/*
* Copyright (c) 2012 Adobe Systems Incorporated. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define */
define({
"PRODUCT_NAME": "Edge Web Fonts",
"DIALOG_DONE": "Terminé",
"CANCEL": "Annuler",
"SEARCH_PLACEHOLDER": "Rechercher",
"BROWSE_FONTS_INSTRUCTIONS": "Recherchez et sélectionnez la police Web que vous souhaitez inclure dans votre projet Web.",
"CODEHINT_BROWSE": "Parcourir les polices Web...",
"GENERATE_INCLUDE_TOOLTIP": "Générer le code d’intégration des polices Edge Web Fonts",
"WEBFONTS_OFFLINE": "L’extension Edge Web Fonts est désactivée car le serveur de Web Fonts est inaccessible. Vérifiez votre connexion Internet ou réessayez ultérieurement.",
"INCLUDE_INSTRUCTIONS": "Pour garantir que les polices de votre site se chargent correctement, ajoutez ce script dans la balise <code><head></code> de tous les fichiers HTML faisant référence à ce fichier CSS.",
"HOWTO_INSTRUCTIONS_1": "Edge Web Fonts vous propose une bibliothèque de polices Web constituée par Adobe, Google et des créateurs du monde entier. Ces polices sont fournies par Typekit et peuvent être utilisées gratuitement sur votre site Web.",
"HOWTO_INSTRUCTIONS_2": "Lorsque vous définissez une propriété de famille de polices dans un document CSS, sélectionnez l’option Parcourir les polices Web dans la liste déroulante de définition du code afin d’accéder aux polices Web disponibles gratuitement en ligne.",
"HOWTO_INSTRUCTIONS_3": "Lorsque vous avez terminé, cliquez sur l’icône <div class='instructions-icon'></div> dans l’angle supérieur droit afin de générer le code d’intégration requis.",
"HOWTO_INSTRUCTIONS_4": "Collez ce code d’intégration dans une page HTML afin d’inclure les polices.",
"HOWTO_DIAGRAM_IMAGE": "img/ewf-howto-dialog-fr.png",
"HOWTO_DIAGRAM_IMAGE_HIDPI": "img/ewf-howto-dialog-fr@2x.png",
"TERMS_OF_USE": "<a href='http://adobe.com/go/edgewebfonts_tou_fr'> Conditions d’utilisation d’Edge Web Fonts </a>",
"SAMPLE_TEXT": "Exemple",
// Font classifications
"serif": "Serif",
"sans-serif": "Sans-Serif",
"slab-serif": "Slab-Serif",
"script": "Cursive",
"blackletter": "Gothique",
"monospaced": "Monospaced",
"handmade": "Manuscrite",
"decorative": "Décorative",
"headings": "Titres",
"paragraphs": "Paragraphes"
});