etsy_create.php
3.06 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
59
60
61
62
<?php
// Headings
$_['heading_title'] = 'Créer une nouvelle annonce Etsy';
$_['text_title'] = 'Etsy';
$_['text_openbay'] = 'OpenBay Pro';
// Tabs
$_['tab_additional'] = 'Informations additionelles';
// Text
$_['text_option'] = 'Sélectionnez une option';
$_['text_category_selected']= 'Catégorie choisie';
$_['text_material_add'] = 'Ajouter un matériau';
$_['text_material_remove'] = 'Supprimer un matériau';
$_['text_tag_add'] = 'Ajouter un étiquette';
$_['text_tag_remove'] = 'Supprimer un étiquette';
$_['text_created'] = 'Votre annonce a été créé.';
$_['text_listing_id'] = 'ID annonce';
$_['text_img_upload'] = 'Chargement image';
$_['text_img_upload_done'] = 'Image chargée';
// Entry
$_['entry_title'] = 'Titre du produit :';
$_['entry_description'] = 'Description :';
$_['entry_price'] = 'Prix :';
$_['entry_non_taxable'] = 'Non taxable :';
$_['entry_category'] = 'Catégorie principale :';
$_['entry_sub_category'] = 'Sous-catégorie :';
$_['entry_sub_sub_category']= 'Sous-sous catégorie :';
$_['entry_who_made'] = 'Qui l’a fait ?';
$_['entry_when_made'] = 'Quand cela a-t-il été fait ?';
$_['entry_recipient'] = 'Pour qui est-ce ?';
$_['entry_occasion'] = 'Pour quelle occasion ?';
$_['entry_is_supply'] = 'Est-ce une promotion ?';
$_['entry_state'] = 'État annonce :';
$_['entry_style'] = 'Style étiquette 1 :';
$_['entry_style_2'] = 'Style étiquette 2 :';
$_['entry_processing_min'] = 'Temps de traitement minimum :';
$_['entry_processing_max'] = 'Temps de traitement maximum :';
$_['entry_materials'] = 'Matériaux :';
$_['entry_tags'] = 'Étiquettes :';
$_['entry_shipping'] = 'Profil de livraison :';
$_['entry_shop'] = 'Section de la boutique';
$_['entry_is_custom'] = 'Peut-il être personnalisé ?';
$_['entry_image'] = 'Image principale :';
$_['entry_image_other'] = 'Autre images :';
// Errors
$_['error_no_shipping'] = 'Vous n’avez installé des profils d’expédition !';
$_['error_no_shop_secton'] = 'Vous n’avez pas défini des sections de boutique !';
$_['error_no_img_url'] = 'Aucune image sélectionnée pour le chargement';
$_['error_no_listing_id'] = 'Aucune ID d’annonce fournie !';
$_['error_title_length'] = 'Le titre est trop long !';
$_['error_title_missing'] = 'Le titre est manquant !';
$_['error_desc_missing'] = 'La description est manquante !';
$_['error_price_missing'] = 'Le prix est manquant !';
$_['error_category'] = 'Catégorie non sélectionné';
$_['error_style_1_tag'] = 'Le style de l’étiquette 1 n’est pas correct.';
$_['error_style_2_tag'] = 'Le style de l’étiquette 2 n’est pas correct.';
$_['error_materials'] = 'Vous pouvez ajouter au plus 13 matériaux.';
$_['error_tags'] = 'Vous pouvez ajouter au plus 13 étiquettes.';
?>