custom_field.php
2.32 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
<?php
// Heading
$_['heading_title'] = 'Champs personnalisés';
// Text
$_['text_success'] = 'Félicitations : Vous avez modifié les <b>Champs personnalisés</b> !!';
$_['text_list'] = 'Liste des Champs personnalisés';
$_['text_add'] = 'Ajouter un Champ personnalisé';
$_['text_edit'] = 'Modifier un Champ personnalisé';
$_['text_choose'] = 'Choisir';
$_['text_select'] = 'Sélection';
$_['text_radio'] = 'Bouton Radio';
$_['text_checkbox'] = 'Case à cocher';
$_['text_input'] = 'Entrée de données';
$_['text_text'] = 'Texte';
$_['text_textarea'] = 'Zone de texte';
$_['text_file'] = 'Fichier';
$_['text_date'] = 'Date';
$_['text_datetime'] = 'Date et heure';
$_['text_time'] = 'Heure';
$_['text_account'] = 'Compte';
$_['text_address'] = 'Adresse';
// Column
$_['column_name'] = 'Nom du champ personnalisé';
$_['column_location'] = 'Emplacement';
$_['column_type'] = 'Type';
$_['column_sort_order'] = 'Classement';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Nom du champ personnalisé :';
$_['entry_location'] = 'Emplacement :';
$_['entry_type'] = 'Type : ';
$_['entry_value'] = 'Valeur :';
$_['entry_custom_value'] = 'Nom de valeur du champ personnalisé :';
$_['entry_customer_group'] = 'Groupe de clients :';
$_['entry_required'] = 'Champ obligatoire';
$_['entry_status'] = 'État';
$_['entry_sort_order'] = 'Classement';
// Help
$_['help_sort_order'] = 'Utiliser le signe moins pour revenir au champ précédent.';
// Error
$_['error_permission'] = 'AVERTISSEMENT : Vous n’êtes pas autorisé à modifier les champs personnalisés !';
$_['error_name'] = 'Le nom du champ personnalisé doit être composé de 1 et 128 caractères !';
$_['error_type'] = 'AVERTISSEMENT : Les valeurs du champ personnalisé sont requis !';
$_['error_custom_value'] = 'La valeur du champ personnalisé doit être composé de 1 et 128 caractères!';
?>