Advanced Custom Fields - Version 3.4.2

Version Description

  • [Fixed] Fix API functions for 'user_$ID' post ID parameter
  • [Added] Color Picker Field: Default Value
  • [Added] Add custom save action for all saves - http://support.advancedcustomfields.com/discussion/2954/hook-on-save-options
  • [Updated] Update Dutch translations
  • [Updated] Update get_field_object function to allow for field_key / field_name + option to load_value
Download this release

Release Info

Developer elliotcondon
Plugin Icon 128x128 Advanced Custom Fields
Version 3.4.2
Comparing to
See all releases

Code changes from version 3.4.1 to 3.4.2

acf.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
- Version: 3.4.1
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
@@ -47,7 +47,7 @@ class Acf
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
- $this->version = '3.4.1';
51
  $this->upgrade_version = '3.4.1'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
  Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
+ Version: 3.4.2
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
+ $this->version = '3.4.2';
51
  $this->upgrade_version = '3.4.1'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
core/api.php CHANGED
@@ -117,6 +117,11 @@ function get_field($field_name, $post_id = false)
117
  {
118
  $field_key = get_post_meta($post_id, '_' . $field_name, true);
119
  }
 
 
 
 
 
120
  else
121
  {
122
  $field_key = get_option('_' . $post_id . '_' . $field_name);
@@ -136,6 +141,11 @@ function get_field($field_name, $post_id = false)
136
  {
137
  $value = get_post_meta($post_id, $field_name, true);
138
  }
 
 
 
 
 
139
  else
140
  {
141
  $value = get_option($post_id . '_' . $field_name);
@@ -713,6 +723,11 @@ function update_field($field_key, $value, $post_id = false)
713
  {
714
  $field_key = get_post_meta($post_id, '_' . $field_key, true);
715
  }
 
 
 
 
 
716
  else
717
  {
718
  $field_key = get_option('_' . $post_id . '_' . $field_key);
@@ -822,8 +837,17 @@ Array
822
 
823
  *-------------------------------------------------------------------------------------*/
824
 
825
- function get_field_object($field_name,$post_id = false)
826
  {
 
 
 
 
 
 
 
 
 
827
  global $post, $acf;
828
 
829
  if(!$post_id)
@@ -839,40 +863,42 @@ function get_field_object($field_name,$post_id = false)
839
  }
840
 
841
 
842
- // return cache
843
- $cache = wp_cache_get('acf_get_field_object_' . $post_id . '_' . $field_name);
844
- if($cache)
845
- {
846
- return $cache;
847
- }
848
-
849
-
850
- // get value
851
- $field_key = "";
852
- if( is_numeric($post_id) )
853
  {
854
- $field_key = get_post_meta($post_id, '_' . $field_name, true);
 
 
 
 
 
 
 
 
 
 
 
 
 
855
  }
856
- else
 
 
 
 
 
 
 
857
  {
858
- $field_key = get_option('_' . $post_id . '_' . $field_name);
859
  }
860
-
861
 
862
- // default return vaue
863
- $field = false;
864
 
865
- if($field_key != "")
866
- {
867
- // we can load the field properly!
868
- $field = $acf->get_acf_field($field_key);
869
- $field['value'] = $acf->get_value_for_api($post_id, $field);
870
- }
871
-
872
-
873
- // update cache
874
- wp_cache_set('acf_get_field_object_' . $post_id . '_' . $field_name, $field);
875
-
876
  return $field;
877
 
878
  }
117
  {
118
  $field_key = get_post_meta($post_id, '_' . $field_name, true);
119
  }
120
+ elseif( strpos($post_id, 'user_') !== false )
121
+ {
122
+ $temp_post_id = str_replace('user_', '', $post_id);
123
+ $field_key = get_user_meta($temp_post_id, '_' . $field_name, true);
124
+ }
125
  else
126
  {
127
  $field_key = get_option('_' . $post_id . '_' . $field_name);
141
  {
142
  $value = get_post_meta($post_id, $field_name, true);
143
  }
144
+ elseif( strpos($post_id, 'user_') !== false )
145
+ {
146
+ $temp_post_id = str_replace('user_', '', $post_id);
147
+ $value = get_post_meta($temp_post_id, $field_name, true);
148
+ }
149
  else
150
  {
151
  $value = get_option($post_id . '_' . $field_name);
723
  {
724
  $field_key = get_post_meta($post_id, '_' . $field_key, true);
725
  }
726
+ elseif( strpos($post_id, 'user_') !== false )
727
+ {
728
+ $temp_post_id = str_replace('user_', '', $post_id);
729
+ $field_key = get_user_meta($temp_post_id, '_' . $field_key, true);
730
+ }
731
  else
732
  {
733
  $field_key = get_option('_' . $post_id . '_' . $field_key);
837
 
838
  *-------------------------------------------------------------------------------------*/
839
 
840
+ function get_field_object($field_key, $post_id = false, $options = array())
841
  {
842
+ // defaults for options
843
+ $defaults = array(
844
+ 'load_value' => true,
845
+ );
846
+
847
+ $options = array_merge($defaults, $options);
848
+
849
+
850
+ // vars
851
  global $post, $acf;
852
 
853
  if(!$post_id)
863
  }
864
 
865
 
866
+ // is $field_name a name? pre 3.4.0
867
+ if( strpos($field_key, "field_") === false )
 
 
 
 
 
 
 
 
 
868
  {
869
+ // get field key
870
+ if( is_numeric($post_id) )
871
+ {
872
+ $field_key = get_post_meta($post_id, '_' . $field_key, true);
873
+ }
874
+ elseif( strpos($post_id, 'user_') !== false )
875
+ {
876
+ $temp_post_id = str_replace('user_', '', $post_id);
877
+ $field_key = get_user_meta($temp_post_id, '_' . $field_key, true);
878
+ }
879
+ else
880
+ {
881
+ $field_key = get_option('_' . $post_id . '_' . $field_key);
882
+ }
883
  }
884
+
885
+
886
+ // get field
887
+ $field = $acf->get_acf_field($field_key);
888
+
889
+
890
+ // backup if no field was found, save as a text field
891
+ if( !$field )
892
  {
893
+ return false;
894
  }
 
895
 
 
 
896
 
897
+ if( $options['load_value'] )
898
+ {
899
+ $field['value'] = $acf->get_value_for_api($post_id, $field);
900
+ }
901
+
 
 
 
 
 
 
902
  return $field;
903
 
904
  }
core/controllers/upgrade.php CHANGED
@@ -762,7 +762,7 @@ class acf_upgrade
762
  {
763
  foreach( $option_rows as $k => &$row)
764
  {
765
- preg_match('/user_([0-9])_(.*)/', $row['option_name'], $matches);
766
 
767
 
768
  // if no matches, this is not an acf value, ignore it
762
  {
763
  foreach( $option_rows as $k => &$row)
764
  {
765
+ preg_match('/user_([0-9]+)_(.*)/', $row['option_name'], $matches);
766
 
767
 
768
  // if no matches, this is not an acf value, ignore it
core/fields/color_picker.php CHANGED
@@ -60,15 +60,52 @@ class acf_Color_picker extends acf_Field
60
 
61
  function create_field($field)
62
  {
63
- // defaults
64
- //if($field['value'] == "") $field['value'] = '#ffffff';
65
-
66
  // html
67
  echo '<input type="text" value="' . $field['value'] . '" class="acf_color_picker" name="' . $field['name'] . '" id="' . $field['name'] . '" />';
68
 
69
  }
70
 
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  }
73
 
74
  ?>
60
 
61
  function create_field($field)
62
  {
 
 
 
63
  // html
64
  echo '<input type="text" value="' . $field['value'] . '" class="acf_color_picker" name="' . $field['name'] . '" id="' . $field['name'] . '" />';
65
 
66
  }
67
 
68
 
69
+ /*--------------------------------------------------------------------------------------
70
+ *
71
+ * create_options
72
+ *
73
+ * @author Elliot Condon
74
+ * @since 2.0.6
75
+ * @updated 2.2.0
76
+ *
77
+ *-------------------------------------------------------------------------------------*/
78
+
79
+ function create_options($key, $field)
80
+ {
81
+ // vars
82
+ $defaults = array(
83
+ 'default_value' => '',
84
+ );
85
+
86
+ $field = array_merge($defaults, $field);
87
+
88
+
89
+ ?>
90
+ <tr class="field_option field_option_<?php echo $this->name; ?>">
91
+ <td class="label">
92
+ <label><?php _e("Default Value",'acf'); ?></label>
93
+ <p class="description"><?php _e("eg: #ffffff",'acf'); ?></p>
94
+ </td>
95
+ <td>
96
+ <?php
97
+ $this->parent->create_field(array(
98
+ 'type' => 'text',
99
+ 'name' => 'fields['.$key.'][default_value]',
100
+ 'value' => $field['default_value'],
101
+ ));
102
+ ?>
103
+ </td>
104
+ </tr>
105
+ <?php
106
+ }
107
+
108
+
109
  }
110
 
111
  ?>
core/fields/flexible_content.php CHANGED
@@ -686,14 +686,7 @@ class acf_Flexible_content extends acf_Field
686
 
687
 
688
  // get total rows
689
- if( is_numeric($post_id) )
690
- {
691
- $layout_order = get_post_meta($post_id, $field['name'], true);
692
- }
693
- else
694
- {
695
- $layout_order = get_option( $post_id . '_' . $field['name'] );
696
- }
697
 
698
 
699
  if( !empty( $layout_order) )
@@ -754,14 +747,7 @@ class acf_Flexible_content extends acf_Field
754
 
755
 
756
  // get total rows
757
- if( is_numeric($post_id) )
758
- {
759
- $layout_order = get_post_meta($post_id, $field['name'], true);
760
- }
761
- else
762
- {
763
- $layout_order = get_option( $post_id . '_' . $field['name'] );
764
- }
765
 
766
 
767
  if($layout_order)
686
 
687
 
688
  // get total rows
689
+ $layout_order = parent::get_value($post_id, $field);
 
 
 
 
 
 
 
690
 
691
 
692
  if( !empty( $layout_order) )
747
 
748
 
749
  // get total rows
750
+ $layout_order = parent::get_value($post_id, $field);
 
 
 
 
 
 
 
751
 
752
 
753
  if($layout_order)
core/fields/repeater.php CHANGED
@@ -671,14 +671,7 @@ class acf_Repeater extends acf_Field
671
 
672
 
673
  // get total rows
674
- if( is_numeric($post_id) )
675
- {
676
- $total = (int) get_post_meta($post_id, $field['name'], true);
677
- }
678
- else
679
- {
680
- $total = (int) get_option( $post_id . '_' . $field['name'] );
681
- }
682
 
683
 
684
  if($total > 0)
@@ -721,14 +714,8 @@ class acf_Repeater extends acf_Field
721
 
722
 
723
  // get total rows
724
- if( is_numeric($post_id) )
725
- {
726
- $total = (int) get_post_meta($post_id, $field['name'], true);
727
- }
728
- else
729
- {
730
- $total = (int) get_option( $post_id . '_' . $field['name'] );
731
- }
732
 
733
  if($total > 0)
734
  {
671
 
672
 
673
  // get total rows
674
+ $total = (int) parent::get_value($post_id, $field);
 
 
 
 
 
 
 
675
 
676
 
677
  if($total > 0)
714
 
715
 
716
  // get total rows
717
+ $total = (int) parent::get_value($post_id, $field);
718
+
 
 
 
 
 
 
719
 
720
  if($total > 0)
721
  {
css/input.css CHANGED
@@ -200,7 +200,7 @@
200
 
201
  .acf-image-uploader img {
202
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
203
- max-width:100%;
204
  height: auto;
205
  display: block;
206
  }
200
 
201
  .acf-image-uploader img {
202
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
203
+ width:100%;
204
  height: auto;
205
  display: block;
206
  }
lang/acf-fr_FR.mo CHANGED
Binary file
lang/acf-fr_FR.po CHANGED
@@ -1,228 +1,240 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
5
- "POT-Creation-Date: 2012-08-11 08:33:20+00:00\n"
6
- "PO-Revision-Date: 2012-09-06 22:53+0100\n"
7
  "Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
  "X-Textdomain-Support: yes\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
 
19
  # @ acf
20
- #: acf.php:281 core/views/meta_box_options.php:94
 
21
  msgid "Custom Fields"
22
  msgstr "ACF"
23
 
24
  # @ acf
25
- #: acf.php:302
26
  msgid "Field&nbsp;Groups"
27
  msgstr "Groupes de champs"
28
 
29
  # @ acf
30
- #: acf.php:303 core/controllers/field_groups.php:283
31
- #: core/controllers/upgrade.php:70
 
32
  msgid "Advanced Custom Fields"
33
  msgstr "Advanced Custom Fields"
34
 
35
  # @ acf
36
- #: acf.php:304 core/fields/flexible_content.php:325
 
37
  msgid "Add New"
38
  msgstr "Ajouter"
39
 
40
  # @ acf
41
- #: acf.php:305
42
  msgid "Add New Field Group"
43
  msgstr "Nouveau groupe de champs"
44
 
45
  # @ acf
46
- #: acf.php:306
47
  msgid "Edit Field Group"
48
  msgstr "Modifier le groupe de champs"
49
 
50
  # @ acf
51
- #: acf.php:307
52
  msgid "New Field Group"
53
  msgstr "Nouveau groupe de champs"
54
 
55
  # @ default
56
- #: acf.php:308
57
  msgid "View Field Group"
58
  msgstr "Voir le champ groupe"
59
 
60
  # @ default
61
- #: acf.php:309
62
  msgid "Search Field Groups"
63
  msgstr "Rechercher un champ groupe"
64
 
65
  # @ default
66
- #: acf.php:310
67
  msgid "No Field Groups found"
68
  msgstr "Aucun champ groupe trouvé"
69
 
70
  # @ default
71
- #: acf.php:311
72
  msgid "No Field Groups found in Trash"
73
  msgstr "Aucun champ groupe trouvé dans la corbeille"
74
 
75
  # @ default
76
- #: acf.php:346 acf.php:349
 
77
  msgid "Field group updated."
78
  msgstr "Groupe de champs mis à jour"
79
 
80
  # @ acf
81
- #: acf.php:347
82
  msgid "Custom field updated."
83
  msgstr "Champ mis à jour"
84
 
85
  # @ acf
86
- #: acf.php:348
87
  msgid "Custom field deleted."
88
  msgstr "Champ supprimé"
89
 
90
- #. translators: %s: date and time of the revision
91
- #: acf.php:351
92
  msgid "Field group restored to revision from %s"
93
  msgstr "Groupe de champs restauré à la révision %s"
94
 
95
  # @ default
96
- #: acf.php:352
97
  msgid "Field group published."
98
  msgstr "Groupe de champ publié"
99
 
100
  # @ default
101
- #: acf.php:353
102
  msgid "Field group saved."
103
  msgstr "Groupe de champ enregistré"
104
 
105
  # @ default
106
- #: acf.php:354
107
  msgid "Field group submitted."
108
  msgstr "Groupe de champ enregistré"
109
 
110
- #: acf.php:355
111
  msgid "Field group scheduled for."
112
  msgstr "Groupe de champs programmé pour."
113
 
114
- #: acf.php:356
115
  msgid "Field group draft updated."
116
  msgstr "Brouillon du groupe de champs mis à jour "
117
 
118
- #: acf.php:375 core/fields/gallery.php:66 core/fields/gallery.php:229
 
 
119
  msgid "Title"
120
  msgstr "Titre"
121
 
122
  # @ acf
123
- #: acf.php:597
124
  msgid "Error: Field Type does not exist!"
125
- msgstr "Erreur : Ce type de champ n'existe pas !"
126
 
127
- #: acf.php:1599
128
  msgid "Thumbnail"
129
  msgstr "Miniature"
130
 
131
- #: acf.php:1600
132
  msgid "Medium"
133
  msgstr "Moyen"
134
 
135
- #: acf.php:1601
136
  msgid "Large"
137
  msgstr "Grande"
138
 
139
- #: acf.php:1602 core/fields/wysiwyg.php:85
 
140
  msgid "Full"
141
  msgstr "Taille originale"
142
 
143
  # @ acf
144
- #: core/actions/export.php:19
145
  msgid "No ACF groups selected"
146
  msgstr "Aucun groupe de champs sélectionné"
147
 
148
  # @ acf
149
- #: core/controllers/field_group.php:148 core/controllers/field_groups.php:190
 
 
150
  msgid "Fields"
151
  msgstr "Champs"
152
 
153
  # @ acf
154
- #: core/controllers/field_group.php:149
155
  msgid "Location"
156
  msgstr "Assigner ce groupe de champs"
157
 
158
- #: core/controllers/field_group.php:149
159
- msgid "Add Fields to Edit Screens"
160
- msgstr "Ajouter les champs à l'écran d'édition"
161
-
162
  # @ acf
163
- #: core/controllers/field_group.php:150 core/controllers/field_group.php:400
164
- #: core/controllers/options_page.php:62 core/controllers/options_page.php:74
165
- #: core/views/meta_box_location.php:143
 
 
166
  msgid "Options"
167
  msgstr "Options"
168
 
169
- #: core/controllers/field_group.php:150
170
- msgid "Customise the edit page"
171
- msgstr "Personnaliser l'écran d'édition"
172
-
173
- #: core/controllers/field_group.php:328
174
  msgid "Parent Page"
175
  msgstr "Page parente"
176
 
177
- #: core/controllers/field_group.php:329
178
  msgid "Child Page"
179
  msgstr "Page enfant"
180
 
181
  # @ acf
182
- #: core/controllers/field_group.php:337
183
  msgid "Default Template"
184
  msgstr "Modèle de base"
185
 
186
- #: core/controllers/field_group.php:424 core/controllers/field_group.php:445
187
- #: core/controllers/field_group.php:452 core/fields/page_link.php:76
188
- #: core/fields/post_object.php:222 core/fields/post_object.php:250
189
- #: core/fields/relationship.php:320 core/fields/relationship.php:349
 
 
 
 
190
  msgid "All"
191
  msgstr "Tous"
192
 
193
- #: core/controllers/field_groups.php:243 core/views/meta_box_options.php:50
 
194
  msgid "Normal"
195
  msgstr "Normal"
196
 
197
- #: core/controllers/field_groups.php:244 core/views/meta_box_options.php:51
 
198
  msgid "Side"
199
  msgstr "Sur le côté"
200
 
201
- #: core/controllers/field_groups.php:254 core/views/meta_box_options.php:70
 
202
  msgid "Standard Metabox"
203
- msgstr "Encadré d'un bloc"
204
 
205
- #: core/controllers/field_groups.php:255 core/views/meta_box_options.php:71
 
206
  msgid "No Metabox"
207
  msgstr "Sans encadrement"
208
 
209
  # @ acf
210
- #: core/controllers/field_groups.php:285
211
  msgid "Changelog"
212
  msgstr "Notes de version"
213
 
214
  # @ acf
215
- #: core/controllers/field_groups.php:286
216
  msgid "See what's new in"
217
  msgstr "Voir les nouveautés de la version"
218
 
219
  # @ acf
220
- #: core/controllers/field_groups.php:288
221
  msgid "Resources"
222
  msgstr "Ressources"
223
 
224
  # @ acf
225
- #: core/controllers/field_groups.php:289
226
  msgid ""
227
  "Read documentation, learn the functions and find some tips &amp; tricks for "
228
  "your next web project."
@@ -231,241 +243,255 @@ msgstr ""
231
  "astuces pour votre prochain projet."
232
 
233
  # @ acf
234
- #: core/controllers/field_groups.php:290
235
  msgid "Visit the ACF website"
236
  msgstr "Visiter le site ACF"
237
 
238
  # @ acf
239
- #: core/controllers/field_groups.php:295
240
  msgid "Created by"
241
  msgstr "Créé par"
242
 
243
  # @ acf
244
- #: core/controllers/field_groups.php:298
245
  msgid "Vote"
246
  msgstr "Votez"
247
 
248
  # @ acf
249
- #: core/controllers/field_groups.php:299
250
  msgid "Follow"
251
  msgstr "twitter"
252
 
253
  # @ acf
254
- #: core/controllers/input.php:449
255
  msgid "Validation Failed. One or more fields below are required."
256
  msgstr "Validation échouée. Un ou plusieurs champs sont requis."
257
 
258
  # @ acf
259
- #: core/controllers/input.php:450
260
  msgid "Add File to Field"
261
  msgstr "+ Ajouter"
262
 
263
  # @ acf
264
- #: core/controllers/input.php:451
265
  msgid "Edit File"
266
  msgstr "Modifier le fichier"
267
 
268
  # @ acf
269
- #: core/controllers/input.php:452
270
  msgid "Add Image to Field"
271
  msgstr "Ajouter une image"
272
 
273
  # @ acf
274
- #: core/controllers/input.php:453 core/controllers/input.php:456
 
275
  msgid "Edit Image"
276
- msgstr "Modifier l'image"
277
 
278
- #: core/controllers/input.php:454
279
  msgid "Maximum values reached ( {max} values )"
280
  msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
281
 
282
  # @ acf
283
- #: core/controllers/input.php:455
284
  msgid "Add Image to Gallery"
285
  msgstr "Insérer une image dans la galerie"
286
 
287
- #: core/controllers/input.php:546
288
  msgid "Attachment updated"
289
  msgstr "Fichier mis à jour"
290
 
291
  # @ acf
292
- #: core/controllers/options_page.php:140
293
  msgid "Options Updated"
294
  msgstr "Options mises à jour"
295
 
296
  # @ default
297
- #: core/controllers/options_page.php:249
298
  msgid "No Custom Field Group found for the options page"
299
- msgstr "Aucun groupe de champs n'est assigné à la page Options"
300
 
301
  # @ acf
302
- #: core/controllers/options_page.php:249
303
  msgid "Create a Custom Field Group"
304
  msgstr "Créer un nouveau groupe de champs"
305
 
306
  # @ acf
307
- #: core/controllers/options_page.php:260
308
  msgid "Publish"
309
  msgstr "Publier"
310
 
311
  # @ acf
312
- #: core/controllers/options_page.php:263
313
  msgid "Save Options"
314
  msgstr "Enregistrer les options"
315
 
316
  # @ wp3i
317
- #: core/controllers/settings.php:49
318
  msgid "Settings"
319
  msgstr "Paramètres"
320
 
321
  # @ acf
322
- #: core/controllers/settings.php:111
323
  msgid "Repeater field deactivated"
324
- msgstr "L'add-on 'Champ répétable' a été désactivée"
325
 
326
  # @ acf
327
- #: core/controllers/settings.php:115
328
  msgid "Options page deactivated"
329
- msgstr "L'add-on 'Page d'options' a été désactivée"
330
 
331
  # @ acf
332
- #: core/controllers/settings.php:119
333
  msgid "Flexible Content field deactivated"
334
- msgstr "L'add-on 'Contenu flexible' a été désactivée"
335
 
336
- #: core/controllers/settings.php:123
337
  msgid "Gallery field deactivated"
338
  msgstr "Champ 'galerie' désactivé"
339
 
340
  # @ acf
341
- #: core/controllers/settings.php:147
342
  msgid "Repeater field activated"
343
- msgstr "L'add-on 'Champ répétable' a été activée"
344
 
345
  # @ acf
346
- #: core/controllers/settings.php:151
347
  msgid "Options page activated"
348
- msgstr "L'add-on 'Page d'options' a été activée"
349
 
350
  # @ acf
351
- #: core/controllers/settings.php:155
352
  msgid "Flexible Content field activated"
353
- msgstr "L'add-on 'Contenu flexible' a été activée"
354
 
355
- #: core/controllers/settings.php:159
356
  msgid "Gallery field activated"
357
  msgstr "Champ 'Galerie' activé"
358
 
359
- #: core/controllers/settings.php:164
360
  msgid "License key unrecognised"
361
  msgstr "Clé de licence non reconnue"
362
 
363
  # @ acf
364
- #: core/controllers/settings.php:216
365
  msgid "Activate Add-ons."
366
  msgstr "Activation des add-ons"
367
 
368
  # @ acf
369
- #: core/controllers/settings.php:217
370
  msgid ""
371
  "Add-ons can be unlocked by purchasing a license key. Each key can be used on "
372
  "multiple sites."
373
  msgstr ""
374
- "Les add-ons peuvent d'être déverrouillés via l'achat d'une clé de licence. "
375
  "Chaque clé peut être utilisée sur plusieurs sites."
376
 
377
  # @ acf
378
- #: core/controllers/settings.php:218
379
  msgid "Find Add-ons"
380
  msgstr "Trouvez des add-ons"
381
 
382
  # @ acf
383
- #: core/controllers/settings.php:225 core/fields/flexible_content.php:380
384
- #: core/fields/flexible_content.php:456 core/fields/repeater.php:288
385
- #: core/fields/repeater.php:364 core/views/meta_box_fields.php:63
386
- #: core/views/meta_box_fields.php:136
 
 
 
387
  msgid "Field Type"
388
  msgstr "Type de champ"
389
 
390
  # @ acf
391
- #: core/controllers/settings.php:226
392
  msgid "Status"
393
  msgstr "Status"
394
 
395
  # @ acf
396
- #: core/controllers/settings.php:227
397
  msgid "Activation Code"
398
- msgstr "Code d'activation"
399
 
400
  # @ acf
401
- #: core/controllers/settings.php:232
402
  msgid "Repeater Field"
403
  msgstr "Champs répéteur"
404
 
405
  # @ acf
406
- #: core/controllers/settings.php:233 core/controllers/settings.php:252
407
- #: core/controllers/settings.php:271 core/controllers/settings.php:290
 
 
408
  msgid "Active"
409
  msgstr "Actif"
410
 
411
  # @ acf
412
- #: core/controllers/settings.php:233 core/controllers/settings.php:252
413
- #: core/controllers/settings.php:271 core/controllers/settings.php:290
 
 
414
  msgid "Inactive"
415
  msgstr "Inactif"
416
 
417
  # @ acf
418
- #: core/controllers/settings.php:239 core/controllers/settings.php:258
419
- #: core/controllers/settings.php:277 core/controllers/settings.php:296
 
 
420
  msgid "Deactivate"
421
  msgstr "Désactiver"
422
 
423
  # @ acf
424
- #: core/controllers/settings.php:245 core/controllers/settings.php:264
425
- #: core/controllers/settings.php:283 core/controllers/settings.php:302
 
 
426
  msgid "Activate"
427
  msgstr "Activer"
428
 
429
  # @ acf
430
- #: core/controllers/settings.php:251
431
  msgid "Flexible Content Field"
432
  msgstr "Champs au contenu flexible "
433
 
434
  # @ acf
435
- #: core/controllers/settings.php:270
436
  msgid "Gallery Field"
437
  msgstr "Champ galerie"
438
 
439
  # @ acf
440
- #: core/controllers/settings.php:289 core/views/meta_box_location.php:74
 
441
  msgid "Options Page"
442
- msgstr "Page d'options"
443
 
444
  # @ acf
445
- #: core/controllers/settings.php:314
446
  msgid "Export Field Groups to XML"
447
  msgstr "Exportez des groupes de champs en XML"
448
 
449
  # @ acf
450
- #: core/controllers/settings.php:315
451
  msgid ""
452
  "ACF will create a .xml export file which is compatible with the native WP "
453
  "import plugin."
454
  msgstr ""
455
- "ACF générera un fichier d'export .xml compatible avec le plugin d'import "
456
  "natif de WordPress."
457
 
458
  # @ acf
459
- #: core/controllers/settings.php:316 core/controllers/settings.php:354
 
460
  msgid "Instructions"
461
  msgstr "Instructions"
462
 
463
  # @ acf
464
- #: core/controllers/settings.php:318
465
  msgid "Import Field Groups"
466
  msgstr "Importez des groupes de champs"
467
 
468
- #: core/controllers/settings.php:319
469
  msgid ""
470
  "Imported field groups <b>will</b> appear in the list of editable field "
471
  "groups. This is useful for migrating fields groups between Wp websites."
@@ -473,69 +499,72 @@ msgstr ""
473
  "Les groupes de champs importés <b>apparaitront</b> dans ACF. Utile pour "
474
  "migrer les groupes de champs entre plusieurs site Wordpress."
475
 
476
- #: core/controllers/settings.php:321
477
  msgid "Select field group(s) from the list and click \"Export XML\""
478
  msgstr ""
479
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
480
  "XML\""
481
 
482
- #: core/controllers/settings.php:322
483
  msgid "Save the .xml file when prompted"
484
  msgstr "Enregistrer le .xml"
485
 
486
- #: core/controllers/settings.php:323
487
  msgid "Navigate to Tools &raquo; Import and select WordPress"
488
  msgstr "Allez dans \"Outils &raquo; Importer\" et sélectionnez WordPress"
489
 
490
  # @ acf
491
- #: core/controllers/settings.php:324
492
  msgid "Install WP import plugin if prompted"
493
- msgstr "Installez le plugin d'import WordPress si demandé"
494
 
495
  # @ acf
496
- #: core/controllers/settings.php:325
497
  msgid "Upload and import your exported .xml file"
498
  msgstr "Importez votre fichier .xml "
499
 
500
  # @ acf
501
- #: core/controllers/settings.php:326
502
  msgid "Select your user and ignore Import Attachments"
503
- msgstr "Sélectionnez votre utilisateur et ignorez l'import des pièces jointes"
504
 
505
  # @ acf
506
- #: core/controllers/settings.php:327
507
  msgid "That's it! Happy WordPressing"
508
- msgstr "C'est tout ! WordPressez bien"
509
 
510
  # @ acf
511
- #: core/controllers/settings.php:345
512
  msgid "Export XML"
513
  msgstr "Export XML"
514
 
515
  # @ acf
516
- #: core/controllers/settings.php:352
517
  msgid "Export Field Groups to PHP"
518
  msgstr "Exportez des groupes de champs en PHP"
519
 
520
  # @ acf
521
- #: core/controllers/settings.php:353
522
  msgid "ACF will create the PHP code to include in your theme."
523
  msgstr "ACF générera le code PHP à inclure dans votre thème"
524
 
525
  # @ acf
526
- #: core/controllers/settings.php:356 core/controllers/settings.php:473
 
527
  msgid "Register Field Groups"
528
  msgstr "Inscrivez des groupes de champs via PHP"
529
 
530
- #: core/controllers/settings.php:357 core/controllers/settings.php:474
 
531
  msgid ""
532
  "Registered field groups <b>will not</b> appear in the list of editable field "
533
  "groups. This is useful for including fields in themes."
534
  msgstr ""
535
- "Les groupes de champs enregistrés <b>n'apparaitront pas</b> dans ACF. Cette "
536
  "manipulation sert à insérer les champs en PHP directement dans le thème."
537
 
538
- #: core/controllers/settings.php:358 core/controllers/settings.php:475
 
539
  msgid ""
540
  "Please note that if you export and register field groups within the same WP, "
541
  "you will see duplicate fields on your edit screens. To fix this, please move "
@@ -543,43 +572,46 @@ msgid ""
543
  "functions.php file."
544
  msgstr ""
545
  "Si vous exportez ET inscrivez les groupes dans la même installation WP, vous "
546
- "verrez les champs en double dans votre page d'édition. Pour éviter cela, "
547
  "supprimer le groupe depuis ACF ou retirez le code PHP de functions.php."
548
 
549
- #: core/controllers/settings.php:360
550
  msgid "Select field group(s) from the list and click \"Create PHP\""
551
  msgstr ""
552
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Générer PHP"
553
  "\""
554
 
555
  # @ acf
556
- #: core/controllers/settings.php:361 core/controllers/settings.php:477
 
557
  msgid "Copy the PHP code generated"
558
  msgstr "Copiez le code PHP généré"
559
 
560
  # @ acf
561
- #: core/controllers/settings.php:362 core/controllers/settings.php:478
 
562
  msgid "Paste into your functions.php file"
563
  msgstr "Collez le code dans votre fichier functions.php"
564
 
565
  # @ acf
566
- #: core/controllers/settings.php:363 core/controllers/settings.php:479
 
567
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
568
  msgstr ""
569
  "Pour activer un add-on, éditez le code dans les toutes premières lignes."
570
 
571
  # @ acf
572
- #: core/controllers/settings.php:382
573
  msgid "Create PHP"
574
  msgstr "Générer PHP"
575
 
576
  # @ acf
577
- #: core/controllers/settings.php:468
578
  msgid "Back to settings"
579
  msgstr "Retour vers les réglages"
580
 
581
  # @ acf
582
- #: core/controllers/settings.php:503
583
  msgid ""
584
  "/**\n"
585
  " * Activate Add-ons\n"
@@ -595,18 +627,18 @@ msgid ""
595
  msgstr ""
596
  "/**\n"
597
  " * Activez les add-ons\n"
598
- " * A cet endroit vous pouvez saisir vos codes d'activation pour "
599
- "déverrouiller les add-ons que vou ssouhaitez utiliser dans votre thème. \n"
600
  " * Puisque tous les codes d'activation sont des licences multi-sites, vous "
601
- "êtes autorisé à inclure votre clé dans des thèmes premium. \n"
602
- " * Utilisez la prtie de code commentée pour mettre à jour la base de données "
603
- "avec vos codes d'activation. \n"
604
  " * Vous pouvez placer ce code dans une déclaration IF vraie uniquement lors "
605
  "de l'activation du thème.\n"
606
  " */"
607
 
608
  # @ acf
609
- #: core/controllers/settings.php:518
610
  msgid ""
611
  "/**\n"
612
  " * Register field groups\n"
@@ -620,7 +652,7 @@ msgstr ""
620
  "/**\n"
621
  " * Enregistrez des groupes de champs\n"
622
  " * La fonction register_field_group accepte 1 tableau qui contient les "
623
- "données nécessaire à l'enregistrement d'un groupe de champs\n"
624
  " * Vous pouvez modifier ce tableau selon vos besoins. Cela peut toutefois "
625
  "provoquer des erreurs dans les cas où le tableau ne serait plus compatible "
626
  "avec ACF\n"
@@ -628,673 +660,830 @@ msgstr ""
628
  " */"
629
 
630
  # @ acf
631
- #: core/controllers/settings.php:557
632
  msgid "No field groups were selected"
633
- msgstr "Aucun groupe de champs n'a été sélectionné"
634
 
635
  # @ acf
636
- #: core/controllers/settings.php:589
637
  msgid "Advanced Custom Fields Settings"
638
  msgstr "Réglages Advanced Custom Fields"
639
 
640
  # @ wp3i
641
- #: core/controllers/upgrade.php:51
642
  msgid "Upgrade"
643
  msgstr "Mettre à jour"
644
 
645
- #: core/controllers/upgrade.php:70
646
  msgid "requires a database upgrade"
647
  msgstr "nécessite une mise à jour de la base de données"
648
 
649
- #: core/controllers/upgrade.php:70
650
  msgid "why?"
651
  msgstr "Pourquoi ?"
652
 
653
- #: core/controllers/upgrade.php:70
654
  msgid "Please"
655
- msgstr "S'il vous plait"
656
 
657
- #: core/controllers/upgrade.php:70
658
  msgid "backup your database"
659
  msgstr "Sauvegarder la base de données"
660
 
661
- #: core/controllers/upgrade.php:70
662
  msgid "then click"
663
  msgstr "puis cliquer"
664
 
665
  # @ wp3i
666
- #: core/controllers/upgrade.php:70
667
  msgid "Upgrade Database"
668
  msgstr "Mettre à jour la base de données"
669
 
670
- #: core/controllers/upgrade.php:598
671
  msgid "Modifying field group options 'show on page'"
672
  msgstr "Modification du groupe de champs 'montrer sur la page'"
673
 
674
- #: core/controllers/upgrade.php:651
675
  msgid "Modifying field option 'taxonomy'"
676
  msgstr "Modifier le champ 'taxinomie'"
677
 
 
 
 
 
 
 
678
  # @ acf
679
- #: core/fields/checkbox.php:21
680
  msgid "Checkbox"
681
  msgstr "Case à cocher"
682
 
683
  # @ acf
684
- #: core/fields/checkbox.php:55 core/fields/radio.php:45
685
- #: core/fields/select.php:50
 
686
  msgid "No choices to choose from"
687
- msgstr "Aucun choix n'est disponible"
688
 
689
  # @ acf
690
- #: core/fields/checkbox.php:113 core/fields/radio.php:114
691
- #: core/fields/select.php:164
 
692
  msgid "Choices"
693
  msgstr "Choix"
694
 
695
- #: core/fields/checkbox.php:114 core/fields/radio.php:115
696
- #: core/fields/select.php:165
 
697
  msgid "Enter your choices one per line"
698
  msgstr "Indiquez une valeur par ligne"
699
 
700
  # @ acf
701
- #: core/fields/checkbox.php:116 core/fields/radio.php:117
702
- #: core/fields/select.php:167
 
703
  msgid "Red"
704
  msgstr "Rouge"
705
 
706
- #: core/fields/checkbox.php:117 core/fields/radio.php:118
707
- #: core/fields/select.php:168
 
708
  msgid "Blue"
709
  msgstr "Bleu"
710
 
711
- #: core/fields/checkbox.php:119 core/fields/radio.php:120
712
- #: core/fields/select.php:170
 
713
  msgid "red : Red"
714
  msgstr "rouge : Rouge"
715
 
716
- #: core/fields/checkbox.php:120 core/fields/radio.php:121
717
- #: core/fields/select.php:171
 
718
  msgid "blue : Blue"
719
  msgstr "bleu : Bleu"
720
 
721
  # @ acf
722
- #: core/fields/color_picker.php:21
723
  msgid "Color Picker"
724
  msgstr "Sélectionneur de couleur"
725
 
726
  # @ acf
727
- #: core/fields/date_picker/date_picker.php:21
728
- msgid "Date Picker"
729
- msgstr "Date"
730
-
731
- # @ acf
732
- #: core/fields/date_picker/date_picker.php:82
733
- msgid "Date format"
734
- msgstr "Format de date"
735
-
736
- # @ acf
737
- #: core/fields/date_picker/date_picker.php:83
738
- msgid "eg. dd/mm/yy. read more about"
739
- msgstr "ex : dd/mm/yy. En savoir plus"
740
-
741
- # @ acf
742
- #: core/fields/file.php:20
743
  msgid "File"
744
  msgstr "Fichier"
745
 
746
- #: core/fields/file.php:48
747
  msgid "File Updated."
748
  msgstr "Fichier mis à jour."
749
 
750
  # @ acf
751
- #: core/fields/file.php:89 core/fields/flexible_content.php:407
752
- #: core/fields/gallery.php:251 core/fields/gallery.php:281
753
- #: core/fields/image.php:187 core/fields/repeater.php:314
754
- #: core/views/meta_box_fields.php:87
 
 
 
755
  msgid "Edit"
756
  msgstr "Modifier"
757
 
758
  # @ acf
759
- #: core/fields/file.php:90 core/fields/gallery.php:250
760
- #: core/fields/gallery.php:280 core/fields/image.php:186
 
 
761
  msgid "Remove"
762
  msgstr "Retirer"
763
 
764
  # @ acf
765
- #: core/fields/file.php:195
766
  msgid "No File Selected"
767
  msgstr "Aucun fichier sélectionné"
768
 
769
  # @ acf
770
- #: core/fields/file.php:195
771
  msgid "Add File"
772
  msgstr "Ajouter un fichier"
773
 
774
  # @ acf
775
- #: core/fields/file.php:224 core/fields/image.php:223
 
776
  msgid "Return Value"
777
  msgstr "Retourne une valeur"
778
 
779
  # @ acf
780
- #: core/fields/file.php:234
781
  msgid "File URL"
782
  msgstr "URL du fichier"
783
 
784
- #: core/fields/file.php:235
785
  msgid "Attachment ID"
786
  msgstr "ID du fichier"
787
 
788
- #: core/fields/file.php:268 core/fields/image.php:291
 
789
  msgid "Media attachment updated."
790
  msgstr "Fichier mis à jour"
791
 
792
  # @ acf
793
- #: core/fields/file.php:393
794
  msgid "No files selected"
795
  msgstr "Aucun fichier sélectionné"
796
 
797
  # @ acf
798
- #: core/fields/file.php:488
799
  msgid "Add Selected Files"
800
  msgstr "Ajouter les fichiers sélectionnés"
801
 
802
  # @ acf
803
- #: core/fields/file.php:518
804
  msgid "Select File"
805
  msgstr "Sélectionner un fichier"
806
 
807
  # @ acf
808
- #: core/fields/file.php:521
809
  msgid "Update File"
810
  msgstr "Mettre à jour le fichier"
811
 
812
  # @ acf
813
- #: core/fields/flexible_content.php:21
814
  msgid "Flexible Content"
815
  msgstr "Contenu flexible"
816
 
817
  # @ acf
818
- #: core/fields/flexible_content.php:38 core/fields/flexible_content.php:286
 
819
  msgid "+ Add Row"
820
  msgstr "+ Ajouter"
821
 
822
  # @ acf
823
- #: core/fields/flexible_content.php:313 core/fields/repeater.php:261
824
- #: core/views/meta_box_fields.php:25
 
825
  msgid "New Field"
826
  msgstr "Nouveau champ"
827
 
828
  # @ acf
829
- #: core/fields/flexible_content.php:322 core/fields/radio.php:144
830
- #: core/fields/repeater.php:440
 
831
  msgid "Layout"
832
  msgstr "Disposition"
833
 
834
  # @ acf
835
- #: core/fields/flexible_content.php:324
836
  msgid "Reorder Layout"
837
  msgstr "Réordonner la disposition"
838
 
839
  # @ acf
840
- #: core/fields/flexible_content.php:324
841
  msgid "Reorder"
842
  msgstr "Réordonner"
843
 
844
  # @ acf
845
- #: core/fields/flexible_content.php:325
846
  msgid "Add New Layout"
847
  msgstr "Nouvelle disposition"
848
 
849
  # @ acf
850
- #: core/fields/flexible_content.php:326
851
  msgid "Delete Layout"
852
  msgstr "Supprimer disposition"
853
 
854
  # @ acf
855
- #: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
856
- #: core/fields/repeater.php:317 core/views/meta_box_fields.php:90
 
 
857
  msgid "Delete"
858
  msgstr "Supprimer"
859
 
860
  # @ acf
861
- #: core/fields/flexible_content.php:336
862
  msgid "Label"
863
  msgstr "Label"
864
 
865
  # @ acf
866
- #: core/fields/flexible_content.php:346
867
  msgid "Name"
868
  msgstr "Nom"
869
 
870
  # @ acf
871
- #: core/fields/flexible_content.php:356
872
  msgid "Display"
873
  msgstr "Affichage"
874
 
875
- #: core/fields/flexible_content.php:363
876
  msgid "Table"
877
  msgstr "En colonnes"
878
 
879
- #: core/fields/flexible_content.php:364 core/fields/repeater.php:451
 
880
  msgid "Row"
881
  msgstr "Les uns sous les autres"
882
 
883
  # @ acf
884
- #: core/fields/flexible_content.php:377 core/fields/repeater.php:285
885
- #: core/views/meta_box_fields.php:60
 
886
  msgid "Field Order"
887
  msgstr "Position du champ"
888
 
889
  # @ acf
890
- #: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
891
- #: core/fields/repeater.php:286 core/fields/repeater.php:333
892
- #: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:105
 
 
 
893
  msgid "Field Label"
894
  msgstr "Titre du champ"
895
 
896
  # @ acf
897
- #: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
898
- #: core/fields/repeater.php:287 core/fields/repeater.php:349
899
- #: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:121
 
 
 
900
  msgid "Field Name"
901
  msgstr "Nom du champ"
902
 
903
  # @ acf
904
- #: core/fields/flexible_content.php:388 core/fields/repeater.php:296
 
905
  msgid ""
906
  "No fields. Click the \"+ Add Sub Field button\" to create your first field."
907
  msgstr "Aucun champ. Cliquez sur \"+ Ajouter\" pour créer un premier champ."
908
 
909
  # @ acf
910
- #: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
911
- #: core/fields/repeater.php:311 core/fields/repeater.php:314
912
- #: core/views/meta_box_fields.php:84 core/views/meta_box_fields.php:87
 
 
 
913
  msgid "Edit this Field"
914
  msgstr "Modifier ce champ"
915
 
916
  # @ acf
917
- #: core/fields/flexible_content.php:408 core/fields/repeater.php:315
918
- #: core/views/meta_box_fields.php:88
 
919
  msgid "Read documentation for this field"
920
  msgstr "Lire la documentation de ce champ"
921
 
922
  # @ acf
923
- #: core/fields/flexible_content.php:408 core/fields/repeater.php:315
924
- #: core/views/meta_box_fields.php:88
 
925
  msgid "Docs"
926
  msgstr "Documentation"
927
 
928
  # @ acf
929
- #: core/fields/flexible_content.php:409 core/fields/repeater.php:316
930
- #: core/views/meta_box_fields.php:89
 
931
  msgid "Duplicate this Field"
932
  msgstr "Dupliquer ce champ"
933
 
934
- #: core/fields/flexible_content.php:409 core/fields/repeater.php:316
935
- #: core/views/meta_box_fields.php:89
 
936
  msgid "Duplicate"
937
  msgstr "Dupliquer"
938
 
939
  # @ acf
940
- #: core/fields/flexible_content.php:410 core/fields/repeater.php:317
941
- #: core/views/meta_box_fields.php:90
 
942
  msgid "Delete this Field"
943
  msgstr "Supprimer ce champ"
944
 
945
  # @ acf
946
- #: core/fields/flexible_content.php:426 core/fields/repeater.php:334
947
- #: core/views/meta_box_fields.php:106
 
948
  msgid "This is the name which will appear on the EDIT page"
949
- msgstr "Ce nom apparaîtra sur la page d'édition"
950
 
951
  # @ acf
952
- #: core/fields/flexible_content.php:442 core/fields/repeater.php:350
953
- #: core/views/meta_box_fields.php:122
 
954
  msgid "Single word, no spaces. Underscores and dashes allowed"
955
  msgstr "Un seul mot sans espace.<br />Les '_' et '-' sont autorisés"
956
 
957
  # @ acf
958
- #: core/fields/flexible_content.php:476 core/fields/repeater.php:384
 
959
  msgid "Save Field"
960
  msgstr "Enregistrer le champ"
961
 
962
  # @ acf
963
- #: core/fields/flexible_content.php:481 core/fields/repeater.php:389
964
- #: core/views/meta_box_fields.php:188
 
965
  msgid "Close Field"
966
  msgstr "Fermer le champ"
967
 
968
  # @ acf
969
- #: core/fields/flexible_content.php:481 core/fields/repeater.php:389
 
970
  msgid "Close Sub Field"
971
  msgstr "Fermer le sous-champs"
972
 
973
- #: core/fields/flexible_content.php:495 core/fields/repeater.php:404
974
- #: core/views/meta_box_fields.php:201
 
975
  msgid "Drag and drop to reorder"
976
  msgstr "Faites glisser pour réorganiser"
977
 
978
  # @ acf
979
- #: core/fields/flexible_content.php:496 core/fields/repeater.php:405
 
980
  msgid "+ Add Sub Field"
981
  msgstr "+ Ajouter"
982
 
983
  # @ acf
984
- #: core/fields/flexible_content.php:503 core/fields/repeater.php:459
 
985
  msgid "Button Label"
986
  msgstr "Libellé du bouton"
987
 
988
- #: core/fields/gallery.php:25
989
  msgid "Gallery"
990
  msgstr "Galerie"
991
 
992
- #: core/fields/gallery.php:70 core/fields/gallery.php:233
 
993
  msgid "Alternate Text"
994
  msgstr "Texte alternatif"
995
 
996
  # @ acf
997
- #: core/fields/gallery.php:74 core/fields/gallery.php:237
 
998
  msgid "Caption"
999
  msgstr "Légende"
1000
 
1001
  # @ acf
1002
- #: core/fields/gallery.php:78 core/fields/gallery.php:241
 
1003
  msgid "Description"
1004
  msgstr "Description"
1005
 
1006
  # @ acf
1007
- #: core/fields/gallery.php:117 core/fields/image.php:243
 
1008
  msgid "Preview Size"
1009
  msgstr "Taille de prévisualisation"
1010
 
1011
- #: core/fields/gallery.php:118
1012
  msgid "Thumbnail is advised"
1013
  msgstr "Une miniature est conseillée"
1014
 
1015
- #: core/fields/gallery.php:179
1016
  msgid "Image Updated"
1017
  msgstr "Image mise à jour"
1018
 
1019
  # @ acf
1020
- #: core/fields/gallery.php:262 core/fields/gallery.php:642
1021
- #: core/fields/image.php:193
 
1022
  msgid "Add Image"
1023
  msgstr "Ajouter une image"
1024
 
1025
- #: core/fields/gallery.php:263
1026
  msgid "Grid"
1027
  msgstr "Grille"
1028
 
1029
- #: core/fields/gallery.php:264
1030
  msgid "List"
1031
  msgstr "Liste"
1032
 
1033
  # @ acf
1034
- #: core/fields/gallery.php:266 core/fields/image.php:428
 
1035
  msgid "No images selected"
1036
  msgstr "Aucune image sélectionnée"
1037
 
1038
  # @ acf
1039
- #: core/fields/gallery.php:266
1040
  msgid "1 image selected"
1041
  msgstr "1 image sélectionnée"
1042
 
1043
  # @ acf
1044
- #: core/fields/gallery.php:266
1045
  msgid "{count} images selected"
1046
  msgstr "{count} images sélectionnées"
1047
 
1048
- #: core/fields/gallery.php:585
 
 
 
 
 
1049
  msgid "Image already exists in gallery"
1050
- msgstr "L'image existe déjà dans la galerie"
1051
 
1052
  # @ acf
1053
- #: core/fields/gallery.php:591
1054
  msgid "Image Added"
1055
  msgstr "Image ajoutée"
1056
 
1057
  # @ acf
1058
- #: core/fields/gallery.php:645 core/fields/image.php:556
 
1059
  msgid "Update Image"
1060
- msgstr "Mettre à jour l'image"
1061
 
1062
  # @ acf
1063
- #: core/fields/image.php:21
1064
  msgid "Image"
1065
  msgstr "Image"
1066
 
1067
- #: core/fields/image.php:49
1068
  msgid "Image Updated."
1069
  msgstr "Image mise à jour."
1070
 
1071
  # @ acf
1072
- #: core/fields/image.php:193
1073
  msgid "No image selected"
1074
  msgstr "Aucune image sélectionnée"
1075
 
1076
  # @ acf
1077
- #: core/fields/image.php:233
1078
  msgid "Image Object"
1079
  msgstr "Objet 'image'"
1080
 
1081
  # @ acf
1082
- #: core/fields/image.php:234
1083
  msgid "Image URL"
1084
- msgstr "URL de l'image"
1085
 
1086
  # @ acf
1087
- #: core/fields/image.php:235
1088
  msgid "Image ID"
1089
- msgstr "ID de l'image"
1090
 
1091
  # @ acf
1092
- #: core/fields/image.php:524
1093
  msgid "Add selected Images"
1094
  msgstr "Ajouter les images sélectionnées"
1095
 
1096
- # @ acf
1097
- #: core/fields/image.php:553
1098
  msgid "Select Image"
1099
- msgstr "Sélectionner une image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
 
1101
  # @ acf
1102
- #: core/fields/page_link.php:21
1103
  msgid "Page Link"
1104
  msgstr "Lien vers page ou article"
1105
 
1106
  # @ acf
1107
- #: core/fields/page_link.php:70 core/fields/post_object.php:216
1108
- #: core/fields/relationship.php:314 core/views/meta_box_location.php:48
 
 
1109
  msgid "Post Type"
1110
- msgstr "Type d'article"
1111
 
1112
  # @ acf
1113
- #: core/fields/page_link.php:98 core/fields/post_object.php:267
1114
- #: core/fields/select.php:194
 
1115
  msgid "Allow Null?"
1116
  msgstr "Autoriser vide ?"
1117
 
1118
- #: core/fields/page_link.php:107 core/fields/page_link.php:126
1119
- #: core/fields/post_object.php:276 core/fields/post_object.php:295
1120
- #: core/fields/select.php:203 core/fields/select.php:222
1121
- #: core/fields/wysiwyg.php:104 core/views/meta_box_fields.php:170
 
 
 
 
 
1122
  msgid "Yes"
1123
  msgstr "Oui"
1124
 
1125
- #: core/fields/page_link.php:108 core/fields/page_link.php:127
1126
- #: core/fields/post_object.php:277 core/fields/post_object.php:296
1127
- #: core/fields/select.php:204 core/fields/select.php:223
1128
- #: core/fields/wysiwyg.php:105 core/views/meta_box_fields.php:171
 
 
 
 
 
1129
  msgid "No"
1130
  msgstr "Non"
1131
 
1132
  # @ acf
1133
- #: core/fields/page_link.php:117 core/fields/post_object.php:286
1134
- #: core/fields/select.php:213
 
1135
  msgid "Select multiple values?"
1136
  msgstr "Plusieurs valeurs possibles ?"
1137
 
1138
  # @ acf
1139
- #: core/fields/post_object.php:21
1140
  msgid "Post Object"
1141
  msgstr "Objet 'article'"
1142
 
1143
  # @ acf
1144
- #: core/fields/post_object.php:244 core/fields/relationship.php:343
 
1145
  msgid "Filter from Taxonomy"
1146
  msgstr "Filtrer par taxonomie"
1147
 
1148
  # @ acf
1149
- #: core/fields/radio.php:21
1150
  msgid "Radio Button"
1151
  msgstr "Bouton radio"
1152
 
1153
- # @ acf
1154
- #: core/fields/radio.php:130 core/fields/select.php:180
1155
- #: core/fields/text.php:61 core/fields/textarea.php:62
1156
- msgid "Default Value"
1157
- msgstr "Valeur par défaut"
1158
-
1159
- #: core/fields/radio.php:154
1160
  msgid "Vertical"
1161
  msgstr "Vertical"
1162
 
1163
- #: core/fields/radio.php:155
1164
  msgid "Horizontal"
1165
  msgstr "Horizontal"
1166
 
1167
  # @ acf
1168
- #: core/fields/relationship.php:21
1169
  msgid "Relationship"
1170
  msgstr "Relation"
1171
 
1172
- #: core/fields/relationship.php:236
1173
  msgid "Search"
1174
  msgstr "Rechercher"
1175
 
1176
  # @ acf
1177
- #: core/fields/relationship.php:366
1178
  msgid "Maximum posts"
1179
- msgstr "Nombre max d'articles"
1180
 
1181
  # @ acf
1182
- #: core/fields/repeater.php:21
1183
  msgid "Repeater"
1184
  msgstr "Répéteur"
1185
 
1186
  # @ acf
1187
- #: core/fields/repeater.php:66 core/fields/repeater.php:248
 
1188
  msgid "Add Row"
1189
  msgstr "+ Ajouter un rang"
1190
 
1191
  # @ acf
1192
- #: core/fields/repeater.php:277
1193
  msgid "Repeater Fields"
1194
  msgstr "Champs répéteurs"
1195
 
1196
  # @ acf
1197
- #: core/fields/repeater.php:412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1198
  msgid "Minimum Rows"
1199
- msgstr "Nombre minimum d'ajouts"
1200
 
1201
  # @ acf
1202
- #: core/fields/repeater.php:426
1203
  msgid "Maximum Rows"
1204
- msgstr "Nombre maximum d'ajouts"
1205
 
1206
- #: core/fields/repeater.php:450
1207
  msgid "Table (default)"
1208
  msgstr "En colonnes (par défaut)"
1209
 
1210
  # @ acf
1211
- #: core/fields/select.php:21
1212
  msgid "Select"
1213
  msgstr "Sélectionner"
1214
 
1215
  # @ acf
1216
- #: core/fields/text.php:21
1217
  msgid "Text"
1218
  msgstr "Texte"
1219
 
1220
  # @ acf
1221
- #: core/fields/text.php:75 core/fields/textarea.php:76
 
1222
  msgid "Formatting"
1223
  msgstr "Formatage "
1224
 
1225
  # @ acf
1226
- #: core/fields/text.php:76
1227
  msgid "Define how to render html tags"
1228
  msgstr "Définition du rendu des balises html"
1229
 
1230
- #: core/fields/text.php:85 core/fields/textarea.php:86
 
1231
  msgid "None"
1232
  msgstr "Aucun"
1233
 
1234
- #: core/fields/text.php:86 core/fields/textarea.php:88
 
1235
  msgid "HTML"
1236
  msgstr "HTML"
1237
 
1238
  # @ acf
1239
- #: core/fields/textarea.php:21
1240
  msgid "Text Area"
1241
  msgstr "Zone de texte"
1242
 
1243
  # @ acf
1244
- #: core/fields/textarea.php:77
1245
  msgid "Define how to render html tags / new lines"
1246
  msgstr "Définition du rendu des balises html et des nouvelles lignes"
1247
 
1248
- #: core/fields/textarea.php:87
1249
  msgid "auto &lt;br /&gt;"
1250
  msgstr "auto &lt;br /&gt;"
1251
 
1252
  # @ acf
1253
- #: core/fields/true_false.php:21
1254
  msgid "True / False"
1255
  msgstr "Vrai / Faux"
1256
 
1257
  # @ acf
1258
- #: core/fields/true_false.php:68
1259
  msgid "Message"
1260
  msgstr "Message"
1261
 
1262
  # @ acf
1263
- #: core/fields/true_false.php:69
1264
  msgid "eg. Show extra content"
1265
  msgstr "ex : Montrer du contenu supplémentaire"
1266
 
1267
  # @ acf
1268
- #: core/fields/wysiwyg.php:21
1269
  msgid "Wysiwyg Editor"
1270
  msgstr "Editeur WYSIWYG"
1271
 
1272
  # @ acf
1273
- #: core/fields/wysiwyg.php:75
1274
  msgid "Toolbar"
1275
- msgstr "Barre d'outils"
1276
 
1277
- #: core/fields/wysiwyg.php:86 core/views/meta_box_location.php:47
 
1278
  msgid "Basic"
1279
  msgstr "Basique"
1280
 
1281
  # @ acf
1282
- #: core/fields/wysiwyg.php:94
1283
  msgid "Show Media Upload Buttons?"
1284
- msgstr "Afficher les boutons d'ajout de médias ?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1285
 
1286
  # @ acf
1287
- #: core/views/meta_box_fields.php:26
1288
  msgid "new_field"
1289
  msgstr "nouveau_champ"
1290
 
1291
  # @ acf
1292
- #: core/views/meta_box_fields.php:47
1293
  msgid "Move to trash. Are you sure?"
1294
  msgstr "Mettre à la corbeille. Etes-vous sûr ?"
1295
 
1296
  # @ acf
1297
- #: core/views/meta_box_fields.php:73
 
 
 
 
 
1298
  msgid ""
1299
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1300
  "first field."
@@ -1303,207 +1492,222 @@ msgstr ""
1303
  "votre premier champ."
1304
 
1305
  # @ acf
1306
- #: core/views/meta_box_fields.php:149
1307
- msgid "Field Instructions"
1308
- msgstr "Instructions pour ce champ"
1309
-
1310
- # @ acf
1311
- #: core/views/meta_box_fields.php:150
1312
  msgid "Instructions for authors. Shown when submitting data"
1313
  msgstr ""
1314
  "Instructions pour les auteurs. Affichées lors de la soumission de données."
1315
 
1316
  # @ acf
1317
- #: core/views/meta_box_fields.php:162
1318
  msgid "Required?"
1319
  msgstr "Requis ?"
1320
 
1321
  # @ acf
1322
- #: core/views/meta_box_fields.php:202
1323
  msgid "+ Add Field"
1324
  msgstr "+ Ajouter"
1325
 
1326
  # @ acf
1327
- #: core/views/meta_box_location.php:35
1328
  msgid "Rules"
1329
  msgstr "Règles"
1330
 
1331
  # @ acf
1332
- #: core/views/meta_box_location.php:36
1333
  msgid ""
1334
  "Create a set of rules to determine which edit screens will use these "
1335
  "advanced custom fields"
1336
  msgstr ""
1337
- "Créez une série de règles pour déterminer sur quelles pages d'édition ce "
1338
  "groupe de champs sera utilisé"
1339
 
1340
- #: core/views/meta_box_location.php:49
1341
  msgid "Logged in User Type"
1342
- msgstr "Rôle de l'utilisateur"
1343
 
1344
- #: core/views/meta_box_location.php:51
1345
  msgid "Page Specific"
1346
  msgstr "Pages"
1347
 
1348
  # @ acf
1349
- #: core/views/meta_box_location.php:52
1350
  msgid "Page"
1351
  msgstr "Page"
1352
 
1353
  # @ acf
1354
- #: core/views/meta_box_location.php:53
1355
  msgid "Page Type"
1356
  msgstr "Type de page"
1357
 
1358
  # @ acf
1359
- #: core/views/meta_box_location.php:54
1360
  msgid "Page Parent"
1361
  msgstr "Page parente"
1362
 
1363
- #: core/views/meta_box_location.php:55
1364
  msgid "Page Template"
1365
  msgstr "Modèle de page"
1366
 
1367
  # @ acf
1368
- #: core/views/meta_box_location.php:57
1369
  msgid "Post Specific"
1370
  msgstr "Articles (posts)"
1371
 
1372
  # @ acf
1373
- #: core/views/meta_box_location.php:58
1374
  msgid "Post"
1375
  msgstr "Article"
1376
 
1377
- #: core/views/meta_box_location.php:59
1378
  msgid "Post Category"
1379
- msgstr "Type d'articles"
1380
 
1381
  # @ acf
1382
- #: core/views/meta_box_location.php:60
1383
  msgid "Post Format"
1384
- msgstr "Format d'article"
1385
 
1386
  # @ acf
1387
- #: core/views/meta_box_location.php:61
1388
  msgid "Post Taxonomy"
1389
  msgstr "Taxonimie"
1390
 
1391
- #: core/views/meta_box_location.php:63
1392
  msgid "Other"
1393
  msgstr "Autres"
1394
 
1395
- #: core/views/meta_box_location.php:64
1396
  msgid "Taxonomy (Add / Edit)"
1397
  msgstr "Taxinomie (Ajouter / Modifier)"
1398
 
1399
- #: core/views/meta_box_location.php:65
1400
  msgid "User (Add / Edit)"
1401
  msgstr "Utilisateur (Ajouter / Modifier)"
1402
 
1403
- #: core/views/meta_box_location.php:66
1404
  msgid "Media (Edit)"
1405
  msgstr "Média (Modifier)"
1406
 
1407
- #: core/views/meta_box_location.php:96
1408
  msgid "is equal to"
1409
  msgstr "est égal à"
1410
 
1411
- #: core/views/meta_box_location.php:97
1412
  msgid "is not equal to"
1413
- msgstr "n'est pas égal à"
1414
 
1415
  # @ acf
1416
- #: core/views/meta_box_location.php:121
1417
  msgid "match"
1418
  msgstr "Ce groupe de champs apparaitra si :"
1419
 
1420
- #: core/views/meta_box_location.php:127
1421
  msgid "all"
1422
  msgstr "toutes les règles sont respectées"
1423
 
1424
- #: core/views/meta_box_location.php:128
1425
  msgid "any"
1426
  msgstr "au moins une règle est respectée"
1427
 
1428
  # @ acf
1429
- #: core/views/meta_box_location.php:131
1430
  msgid "of the above"
1431
  msgstr " "
1432
 
1433
- #: core/views/meta_box_location.php:144
1434
  msgid "Unlock options add-on with an activation code"
1435
- msgstr "Déverrouiller l'add-on 'Options' avec un code d'activation"
1436
 
1437
  # @ acf
1438
- #: core/views/meta_box_options.php:23
1439
  msgid "Order No."
1440
- msgstr "Numéro d'ordre"
1441
 
1442
  # @ acf
1443
- #: core/views/meta_box_options.php:24
1444
- msgid "Field groups are created in order <br />from lowest to highest."
1445
- msgstr "Le groupe avec le numéro le plus bas s'affiche en premier."
 
 
1446
 
1447
  # @ acf
1448
- #: core/views/meta_box_options.php:40
1449
  msgid "Position"
1450
  msgstr "Position"
1451
 
 
 
 
 
 
 
 
 
 
 
 
 
1452
  # @ acf
1453
- #: core/views/meta_box_options.php:60
1454
  msgid "Style"
1455
  msgstr "Style"
1456
 
1457
- #: core/views/meta_box_options.php:80
1458
  msgid "Hide on screen"
1459
  msgstr "Ne pas afficher"
1460
 
1461
  # @ acf
1462
- #: core/views/meta_box_options.php:81
1463
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1464
  msgstr ""
1465
  "<b>Décochez</b> les champs que vous souhaitez <b>masquer</b> sur la page "
1466
- "d'édition"
1467
 
1468
  # @ acf
1469
- #: core/views/meta_box_options.php:82
1470
  msgid ""
1471
  "If multiple field groups appear on an edit screen, the first field group's "
1472
  "options will be used. (the one with the lowest order number)"
1473
  msgstr ""
1474
- "Si plusieurs groupes ACF sont présents sur une page d'édition, le groupe "
1475
  "portant le numéro le plus bas sera affiché en premier."
1476
 
1477
- #: core/views/meta_box_options.php:92
1478
  msgid "Content Editor"
1479
- msgstr "La zone d'édition principale"
1480
 
1481
- #: core/views/meta_box_options.php:93
1482
  msgid "Excerpt"
1483
  msgstr "Le résumé (excerpt)"
1484
 
1485
- #: core/views/meta_box_options.php:95
1486
  msgid "Discussion"
1487
  msgstr "Discussion"
1488
 
1489
- #: core/views/meta_box_options.php:96
1490
  msgid "Comments"
1491
  msgstr "Les commentaires"
1492
 
1493
- #: core/views/meta_box_options.php:97
1494
  msgid "Slug"
1495
  msgstr "Identifiant (slug)"
1496
 
1497
- #: core/views/meta_box_options.php:98
1498
  msgid "Author"
1499
  msgstr "Auteur"
1500
 
1501
  # @ acf
1502
- #: core/views/meta_box_options.php:99
1503
  msgid "Format"
1504
  msgstr "Format"
1505
 
1506
  # @ acf
1507
- #: core/views/meta_box_options.php:100
1508
  msgid "Featured Image"
1509
  msgstr "Image à la Une"
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Advanced Custom Field - version 3.4.1\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-10 11:32+0100\n"
6
+ "PO-Revision-Date: 2012-09-10 14:40+0100\n"
7
  "Last-Translator: Maxime BERNARD-JACQUET <maxime@smoothie-creative.com>\n"
8
+ "Language-Team: RVOLA <hello@rvola.com>\n"
9
+ "Language: French\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-Basepath: .\n"
19
 
20
  # @ acf
21
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:287
22
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:116
23
  msgid "Custom Fields"
24
  msgstr "ACF"
25
 
26
  # @ acf
27
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:308
28
  msgid "Field&nbsp;Groups"
29
  msgstr "Groupes de champs"
30
 
31
  # @ acf
32
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:309
33
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:234
34
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
35
  msgid "Advanced Custom Fields"
36
  msgstr "Advanced Custom Fields"
37
 
38
  # @ acf
39
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:310
40
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:325
41
  msgid "Add New"
42
  msgstr "Ajouter"
43
 
44
  # @ acf
45
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:311
46
  msgid "Add New Field Group"
47
  msgstr "Nouveau groupe de champs"
48
 
49
  # @ acf
50
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:312
51
  msgid "Edit Field Group"
52
  msgstr "Modifier le groupe de champs"
53
 
54
  # @ acf
55
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:313
56
  msgid "New Field Group"
57
  msgstr "Nouveau groupe de champs"
58
 
59
  # @ default
60
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:314
61
  msgid "View Field Group"
62
  msgstr "Voir le champ groupe"
63
 
64
  # @ default
65
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:315
66
  msgid "Search Field Groups"
67
  msgstr "Rechercher un champ groupe"
68
 
69
  # @ default
70
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:316
71
  msgid "No Field Groups found"
72
  msgstr "Aucun champ groupe trouvé"
73
 
74
  # @ default
75
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:317
76
  msgid "No Field Groups found in Trash"
77
  msgstr "Aucun champ groupe trouvé dans la corbeille"
78
 
79
  # @ default
80
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:352
81
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:355
82
  msgid "Field group updated."
83
  msgstr "Groupe de champs mis à jour"
84
 
85
  # @ acf
86
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:353
87
  msgid "Custom field updated."
88
  msgstr "Champ mis à jour"
89
 
90
  # @ acf
91
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:354
92
  msgid "Custom field deleted."
93
  msgstr "Champ supprimé"
94
 
95
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:357
96
+ #, php-format
97
  msgid "Field group restored to revision from %s"
98
  msgstr "Groupe de champs restauré à la révision %s"
99
 
100
  # @ default
101
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:358
102
  msgid "Field group published."
103
  msgstr "Groupe de champ publié"
104
 
105
  # @ default
106
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:359
107
  msgid "Field group saved."
108
  msgstr "Groupe de champ enregistré"
109
 
110
  # @ default
111
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:360
112
  msgid "Field group submitted."
113
  msgstr "Groupe de champ enregistré"
114
 
115
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:361
116
  msgid "Field group scheduled for."
117
  msgstr "Groupe de champs programmé pour."
118
 
119
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:362
120
  msgid "Field group draft updated."
121
  msgstr "Brouillon du groupe de champs mis à jour "
122
 
123
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:381
124
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:66
125
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:229
126
  msgid "Title"
127
  msgstr "Titre"
128
 
129
  # @ acf
130
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:611
131
  msgid "Error: Field Type does not exist!"
132
+ msgstr "Erreur : Ce type de champ nexiste pas !"
133
 
134
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:1689
135
  msgid "Thumbnail"
136
  msgstr "Miniature"
137
 
138
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:1690
139
  msgid "Medium"
140
  msgstr "Moyen"
141
 
142
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:1691
143
  msgid "Large"
144
  msgstr "Grande"
145
 
146
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/acf.php:1692
147
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:105
148
  msgid "Full"
149
  msgstr "Taille originale"
150
 
151
  # @ acf
152
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/actions/export.php:19
153
  msgid "No ACF groups selected"
154
  msgstr "Aucun groupe de champs sélectionné"
155
 
156
  # @ acf
157
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:148
158
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:167
159
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:144
160
  msgid "Fields"
161
  msgstr "Champs"
162
 
163
  # @ acf
164
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:149
165
  msgid "Location"
166
  msgstr "Assigner ce groupe de champs"
167
 
 
 
 
 
168
  # @ acf
169
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:150
170
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:424
171
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:62
172
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:74
173
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:143
174
  msgid "Options"
175
  msgstr "Options"
176
 
177
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:352
 
 
 
 
178
  msgid "Parent Page"
179
  msgstr "Page parente"
180
 
181
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:353
182
  msgid "Child Page"
183
  msgstr "Page enfant"
184
 
185
  # @ acf
186
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:361
187
  msgid "Default Template"
188
  msgstr "Modèle de base"
189
 
190
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:448
191
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:469
192
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_group.php:476
193
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:76
194
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:223
195
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:251
196
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:392
197
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:421
198
  msgid "All"
199
  msgstr "Tous"
200
 
201
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:197
202
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:50
203
  msgid "Normal"
204
  msgstr "Normal"
205
 
206
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:198
207
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:51
208
  msgid "Side"
209
  msgstr "Sur le côté"
210
 
211
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:208
212
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:92
213
  msgid "Standard Metabox"
214
+ msgstr "Encadré dun bloc"
215
 
216
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:209
217
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:93
218
  msgid "No Metabox"
219
  msgstr "Sans encadrement"
220
 
221
  # @ acf
222
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:236
223
  msgid "Changelog"
224
  msgstr "Notes de version"
225
 
226
  # @ acf
227
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:237
228
  msgid "See what's new in"
229
  msgstr "Voir les nouveautés de la version"
230
 
231
  # @ acf
232
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:239
233
  msgid "Resources"
234
  msgstr "Ressources"
235
 
236
  # @ acf
237
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:240
238
  msgid ""
239
  "Read documentation, learn the functions and find some tips &amp; tricks for "
240
  "your next web project."
243
  "astuces pour votre prochain projet."
244
 
245
  # @ acf
246
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:241
247
  msgid "Visit the ACF website"
248
  msgstr "Visiter le site ACF"
249
 
250
  # @ acf
251
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:246
252
  msgid "Created by"
253
  msgstr "Créé par"
254
 
255
  # @ acf
256
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:249
257
  msgid "Vote"
258
  msgstr "Votez"
259
 
260
  # @ acf
261
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/field_groups.php:250
262
  msgid "Follow"
263
  msgstr "twitter"
264
 
265
  # @ acf
266
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:448
267
  msgid "Validation Failed. One or more fields below are required."
268
  msgstr "Validation échouée. Un ou plusieurs champs sont requis."
269
 
270
  # @ acf
271
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:449
272
  msgid "Add File to Field"
273
  msgstr "+ Ajouter"
274
 
275
  # @ acf
276
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:450
277
  msgid "Edit File"
278
  msgstr "Modifier le fichier"
279
 
280
  # @ acf
281
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:451
282
  msgid "Add Image to Field"
283
  msgstr "Ajouter une image"
284
 
285
  # @ acf
286
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:452
287
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:455
288
  msgid "Edit Image"
289
+ msgstr "Modifier limage"
290
 
291
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:453
292
  msgid "Maximum values reached ( {max} values )"
293
  msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
294
 
295
  # @ acf
296
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:454
297
  msgid "Add Image to Gallery"
298
  msgstr "Insérer une image dans la galerie"
299
 
300
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/input.php:545
301
  msgid "Attachment updated"
302
  msgstr "Fichier mis à jour"
303
 
304
  # @ acf
305
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:121
306
  msgid "Options Updated"
307
  msgstr "Options mises à jour"
308
 
309
  # @ default
310
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:251
311
  msgid "No Custom Field Group found for the options page"
312
+ msgstr "Aucun groupe de champs nest assigné à la page Options"
313
 
314
  # @ acf
315
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:251
316
  msgid "Create a Custom Field Group"
317
  msgstr "Créer un nouveau groupe de champs"
318
 
319
  # @ acf
320
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:262
321
  msgid "Publish"
322
  msgstr "Publier"
323
 
324
  # @ acf
325
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/options_page.php:265
326
  msgid "Save Options"
327
  msgstr "Enregistrer les options"
328
 
329
  # @ wp3i
330
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:49
331
  msgid "Settings"
332
  msgstr "Paramètres"
333
 
334
  # @ acf
335
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:111
336
  msgid "Repeater field deactivated"
337
+ msgstr "Ladd-on 'Champ répétable' a été désactivé"
338
 
339
  # @ acf
340
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:115
341
  msgid "Options page deactivated"
342
+ msgstr "Ladd-on 'Page d'options' a été désactivé"
343
 
344
  # @ acf
345
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:119
346
  msgid "Flexible Content field deactivated"
347
+ msgstr "Ladd-on 'Contenu flexible' a été désactivé"
348
 
349
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:123
350
  msgid "Gallery field deactivated"
351
  msgstr "Champ 'galerie' désactivé"
352
 
353
  # @ acf
354
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:147
355
  msgid "Repeater field activated"
356
+ msgstr "Ladd-on 'Champ répétable' a été activé"
357
 
358
  # @ acf
359
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:151
360
  msgid "Options page activated"
361
+ msgstr "Ladd-on 'Page d'options' a été activé"
362
 
363
  # @ acf
364
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:155
365
  msgid "Flexible Content field activated"
366
+ msgstr "Ladd-on 'Contenu flexible' a été activé"
367
 
368
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:159
369
  msgid "Gallery field activated"
370
  msgstr "Champ 'Galerie' activé"
371
 
372
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:164
373
  msgid "License key unrecognised"
374
  msgstr "Clé de licence non reconnue"
375
 
376
  # @ acf
377
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:216
378
  msgid "Activate Add-ons."
379
  msgstr "Activation des add-ons"
380
 
381
  # @ acf
382
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:217
383
  msgid ""
384
  "Add-ons can be unlocked by purchasing a license key. Each key can be used on "
385
  "multiple sites."
386
  msgstr ""
387
+ "Les add-ons peuvent d‘être déverrouillés via l'achat d'une clé de licence. "
388
  "Chaque clé peut être utilisée sur plusieurs sites."
389
 
390
  # @ acf
391
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:218
392
  msgid "Find Add-ons"
393
  msgstr "Trouvez des add-ons"
394
 
395
  # @ acf
396
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:225
397
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:380
398
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:456
399
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:330
400
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:406
401
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:63
402
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:138
403
  msgid "Field Type"
404
  msgstr "Type de champ"
405
 
406
  # @ acf
407
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:226
408
  msgid "Status"
409
  msgstr "Status"
410
 
411
  # @ acf
412
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:227
413
  msgid "Activation Code"
414
+ msgstr "Code dactivation"
415
 
416
  # @ acf
417
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:232
418
  msgid "Repeater Field"
419
  msgstr "Champs répéteur"
420
 
421
  # @ acf
422
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:233
423
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:252
424
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:271
425
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:290
426
  msgid "Active"
427
  msgstr "Actif"
428
 
429
  # @ acf
430
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:233
431
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:252
432
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:271
433
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:290
434
  msgid "Inactive"
435
  msgstr "Inactif"
436
 
437
  # @ acf
438
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:239
439
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:258
440
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:277
441
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:296
442
  msgid "Deactivate"
443
  msgstr "Désactiver"
444
 
445
  # @ acf
446
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:245
447
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:264
448
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:283
449
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:302
450
  msgid "Activate"
451
  msgstr "Activer"
452
 
453
  # @ acf
454
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:251
455
  msgid "Flexible Content Field"
456
  msgstr "Champs au contenu flexible "
457
 
458
  # @ acf
459
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:270
460
  msgid "Gallery Field"
461
  msgstr "Champ galerie"
462
 
463
  # @ acf
464
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:289
465
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:74
466
  msgid "Options Page"
467
+ msgstr "Page doptions"
468
 
469
  # @ acf
470
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:314
471
  msgid "Export Field Groups to XML"
472
  msgstr "Exportez des groupes de champs en XML"
473
 
474
  # @ acf
475
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:315
476
  msgid ""
477
  "ACF will create a .xml export file which is compatible with the native WP "
478
  "import plugin."
479
  msgstr ""
480
+ "ACF générera un fichier dexport .xml compatible avec le plugin d'import "
481
  "natif de WordPress."
482
 
483
  # @ acf
484
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:316
485
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:354
486
  msgid "Instructions"
487
  msgstr "Instructions"
488
 
489
  # @ acf
490
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:318
491
  msgid "Import Field Groups"
492
  msgstr "Importez des groupes de champs"
493
 
494
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:319
495
  msgid ""
496
  "Imported field groups <b>will</b> appear in the list of editable field "
497
  "groups. This is useful for migrating fields groups between Wp websites."
499
  "Les groupes de champs importés <b>apparaitront</b> dans ACF. Utile pour "
500
  "migrer les groupes de champs entre plusieurs site Wordpress."
501
 
502
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:321
503
  msgid "Select field group(s) from the list and click \"Export XML\""
504
  msgstr ""
505
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Exporter "
506
  "XML\""
507
 
508
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:322
509
  msgid "Save the .xml file when prompted"
510
  msgstr "Enregistrer le .xml"
511
 
512
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:323
513
  msgid "Navigate to Tools &raquo; Import and select WordPress"
514
  msgstr "Allez dans \"Outils &raquo; Importer\" et sélectionnez WordPress"
515
 
516
  # @ acf
517
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:324
518
  msgid "Install WP import plugin if prompted"
519
+ msgstr "Installez le plugin dimport WordPress si demandé"
520
 
521
  # @ acf
522
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:325
523
  msgid "Upload and import your exported .xml file"
524
  msgstr "Importez votre fichier .xml "
525
 
526
  # @ acf
527
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:326
528
  msgid "Select your user and ignore Import Attachments"
529
+ msgstr "Sélectionnez votre utilisateur et ignorez limport des pièces jointes"
530
 
531
  # @ acf
532
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:327
533
  msgid "That's it! Happy WordPressing"
534
+ msgstr "Cest tout ! WordPressez bien"
535
 
536
  # @ acf
537
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:345
538
  msgid "Export XML"
539
  msgstr "Export XML"
540
 
541
  # @ acf
542
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:352
543
  msgid "Export Field Groups to PHP"
544
  msgstr "Exportez des groupes de champs en PHP"
545
 
546
  # @ acf
547
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:353
548
  msgid "ACF will create the PHP code to include in your theme."
549
  msgstr "ACF générera le code PHP à inclure dans votre thème"
550
 
551
  # @ acf
552
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:356
553
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:473
554
  msgid "Register Field Groups"
555
  msgstr "Inscrivez des groupes de champs via PHP"
556
 
557
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:357
558
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:474
559
  msgid ""
560
  "Registered field groups <b>will not</b> appear in the list of editable field "
561
  "groups. This is useful for including fields in themes."
562
  msgstr ""
563
+ "Les groupes de champs enregistrés <b>napparaitront pas</b> dans ACF. Cette "
564
  "manipulation sert à insérer les champs en PHP directement dans le thème."
565
 
566
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:358
567
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:475
568
  msgid ""
569
  "Please note that if you export and register field groups within the same WP, "
570
  "you will see duplicate fields on your edit screens. To fix this, please move "
572
  "functions.php file."
573
  msgstr ""
574
  "Si vous exportez ET inscrivez les groupes dans la même installation WP, vous "
575
+ "verrez les champs en double dans votre page d‘édition. Pour éviter cela, "
576
  "supprimer le groupe depuis ACF ou retirez le code PHP de functions.php."
577
 
578
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:360
579
  msgid "Select field group(s) from the list and click \"Create PHP\""
580
  msgstr ""
581
  "Sélectionnez les groupes de champs dans la liste et cliquez sur \"Générer PHP"
582
  "\""
583
 
584
  # @ acf
585
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:361
586
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:477
587
  msgid "Copy the PHP code generated"
588
  msgstr "Copiez le code PHP généré"
589
 
590
  # @ acf
591
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:362
592
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:478
593
  msgid "Paste into your functions.php file"
594
  msgstr "Collez le code dans votre fichier functions.php"
595
 
596
  # @ acf
597
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:363
598
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:479
599
  msgid "To activate any Add-ons, edit and use the code in the first few lines."
600
  msgstr ""
601
  "Pour activer un add-on, éditez le code dans les toutes premières lignes."
602
 
603
  # @ acf
604
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:382
605
  msgid "Create PHP"
606
  msgstr "Générer PHP"
607
 
608
  # @ acf
609
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:468
610
  msgid "Back to settings"
611
  msgstr "Retour vers les réglages"
612
 
613
  # @ acf
614
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:503
615
  msgid ""
616
  "/**\n"
617
  " * Activate Add-ons\n"
627
  msgstr ""
628
  "/**\n"
629
  " * Activez les add-ons\n"
630
+ " * A cet endroit vous pouvez saisir vos codes dactivation pour "
631
+ "déverrouiller les add-ons que vous souhaitez utiliser dans votre thème. \n"
632
  " * Puisque tous les codes d'activation sont des licences multi-sites, vous "
633
+ "êtes autorisé à inclure votre clé dans des thèmes pretium. \n"
634
+ " * Utilisez la partie de code commentée pour mettre à jour la base de "
635
+ "données avec vos codes d'activation. \n"
636
  " * Vous pouvez placer ce code dans une déclaration IF vraie uniquement lors "
637
  "de l'activation du thème.\n"
638
  " */"
639
 
640
  # @ acf
641
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:518
642
  msgid ""
643
  "/**\n"
644
  " * Register field groups\n"
652
  "/**\n"
653
  " * Enregistrez des groupes de champs\n"
654
  " * La fonction register_field_group accepte 1 tableau qui contient les "
655
+ "données nécessaire à lenregistrement d'un groupe de champs\n"
656
  " * Vous pouvez modifier ce tableau selon vos besoins. Cela peut toutefois "
657
  "provoquer des erreurs dans les cas où le tableau ne serait plus compatible "
658
  "avec ACF\n"
660
  " */"
661
 
662
  # @ acf
663
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:557
664
  msgid "No field groups were selected"
665
+ msgstr "Aucun groupe de champs na été sélectionné"
666
 
667
  # @ acf
668
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/settings.php:589
669
  msgid "Advanced Custom Fields Settings"
670
  msgstr "Réglages Advanced Custom Fields"
671
 
672
  # @ wp3i
673
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:51
674
  msgid "Upgrade"
675
  msgstr "Mettre à jour"
676
 
677
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
678
  msgid "requires a database upgrade"
679
  msgstr "nécessite une mise à jour de la base de données"
680
 
681
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
682
  msgid "why?"
683
  msgstr "Pourquoi ?"
684
 
685
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
686
  msgid "Please"
687
+ msgstr "Sil vous plait"
688
 
689
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
690
  msgid "backup your database"
691
  msgstr "Sauvegarder la base de données"
692
 
693
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
694
  msgid "then click"
695
  msgstr "puis cliquer"
696
 
697
  # @ wp3i
698
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:70
699
  msgid "Upgrade Database"
700
  msgstr "Mettre à jour la base de données"
701
 
702
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:604
703
  msgid "Modifying field group options 'show on page'"
704
  msgstr "Modification du groupe de champs 'montrer sur la page'"
705
 
706
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:658
707
  msgid "Modifying field option 'taxonomy'"
708
  msgstr "Modifier le champ 'taxinomie'"
709
 
710
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/controllers/upgrade.php:755
711
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
712
+ msgstr ""
713
+ "Déplacer les champs personnalisés des utilisateurs de wp_options à "
714
+ "wp_usermeta '"
715
+
716
  # @ acf
717
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:21
718
  msgid "Checkbox"
719
  msgstr "Case à cocher"
720
 
721
  # @ acf
722
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:55
723
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:45
724
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:54
725
  msgid "No choices to choose from"
726
+ msgstr "Aucun choix nest disponible"
727
 
728
  # @ acf
729
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:113
730
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:114
731
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:174
732
  msgid "Choices"
733
  msgstr "Choix"
734
 
735
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:114
736
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:115
737
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:175
738
  msgid "Enter your choices one per line"
739
  msgstr "Indiquez une valeur par ligne"
740
 
741
  # @ acf
742
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:116
743
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:117
744
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:177
745
  msgid "Red"
746
  msgstr "Rouge"
747
 
748
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:117
749
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:118
750
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:178
751
  msgid "Blue"
752
  msgstr "Bleu"
753
 
754
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:119
755
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:120
756
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:180
757
  msgid "red : Red"
758
  msgstr "rouge : Rouge"
759
 
760
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/checkbox.php:120
761
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:121
762
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:181
763
  msgid "blue : Blue"
764
  msgstr "bleu : Bleu"
765
 
766
  # @ acf
767
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/color_picker.php:21
768
  msgid "Color Picker"
769
  msgstr "Sélectionneur de couleur"
770
 
771
  # @ acf
772
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
773
  msgid "File"
774
  msgstr "Fichier"
775
 
776
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:48
777
  msgid "File Updated."
778
  msgstr "Fichier mis à jour."
779
 
780
  # @ acf
781
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:89
782
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:407
783
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:251
784
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:281
785
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:187
786
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:356
787
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:88
788
  msgid "Edit"
789
  msgstr "Modifier"
790
 
791
  # @ acf
792
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:90
793
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:250
794
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:280
795
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:186
796
  msgid "Remove"
797
  msgstr "Retirer"
798
 
799
  # @ acf
800
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:195
801
  msgid "No File Selected"
802
  msgstr "Aucun fichier sélectionné"
803
 
804
  # @ acf
805
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:195
806
  msgid "Add File"
807
  msgstr "Ajouter un fichier"
808
 
809
  # @ acf
810
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:224
811
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:223
812
  msgid "Return Value"
813
  msgstr "Retourne une valeur"
814
 
815
  # @ acf
816
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:234
817
  msgid "File URL"
818
  msgstr "URL du fichier"
819
 
820
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:235
821
  msgid "Attachment ID"
822
  msgstr "ID du fichier"
823
 
824
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:268
825
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:291
826
  msgid "Media attachment updated."
827
  msgstr "Fichier mis à jour"
828
 
829
  # @ acf
830
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:393
831
  msgid "No files selected"
832
  msgstr "Aucun fichier sélectionné"
833
 
834
  # @ acf
835
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:488
836
  msgid "Add Selected Files"
837
  msgstr "Ajouter les fichiers sélectionnés"
838
 
839
  # @ acf
840
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:518
841
  msgid "Select File"
842
  msgstr "Sélectionner un fichier"
843
 
844
  # @ acf
845
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/file.php:521
846
  msgid "Update File"
847
  msgstr "Mettre à jour le fichier"
848
 
849
  # @ acf
850
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:21
851
  msgid "Flexible Content"
852
  msgstr "Contenu flexible"
853
 
854
  # @ acf
855
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:38
856
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:286
857
  msgid "+ Add Row"
858
  msgstr "+ Ajouter"
859
 
860
  # @ acf
861
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:313
862
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:302
863
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:25
864
  msgid "New Field"
865
  msgstr "Nouveau champ"
866
 
867
  # @ acf
868
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:322
869
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:144
870
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:523
871
  msgid "Layout"
872
  msgstr "Disposition"
873
 
874
  # @ acf
875
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:324
876
  msgid "Reorder Layout"
877
  msgstr "Réordonner la disposition"
878
 
879
  # @ acf
880
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:324
881
  msgid "Reorder"
882
  msgstr "Réordonner"
883
 
884
  # @ acf
885
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:325
886
  msgid "Add New Layout"
887
  msgstr "Nouvelle disposition"
888
 
889
  # @ acf
890
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:326
891
  msgid "Delete Layout"
892
  msgstr "Supprimer disposition"
893
 
894
  # @ acf
895
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:326
896
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:410
897
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:359
898
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:91
899
  msgid "Delete"
900
  msgstr "Supprimer"
901
 
902
  # @ acf
903
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:336
904
  msgid "Label"
905
  msgstr "Label"
906
 
907
  # @ acf
908
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:346
909
  msgid "Name"
910
  msgstr "Nom"
911
 
912
  # @ acf
913
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:356
914
  msgid "Display"
915
  msgstr "Affichage"
916
 
917
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:363
918
  msgid "Table"
919
  msgstr "En colonnes"
920
 
921
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:364
922
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:534
923
  msgid "Row"
924
  msgstr "Les uns sous les autres"
925
 
926
  # @ acf
927
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:377
928
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:327
929
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:60
930
  msgid "Field Order"
931
  msgstr "Position du champ"
932
 
933
  # @ acf
934
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:378
935
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:425
936
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:328
937
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:375
938
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:61
939
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:107
940
  msgid "Field Label"
941
  msgstr "Titre du champ"
942
 
943
  # @ acf
944
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:379
945
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:441
946
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:329
947
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:391
948
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:62
949
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:123
950
  msgid "Field Name"
951
  msgstr "Nom du champ"
952
 
953
  # @ acf
954
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:388
955
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:338
956
  msgid ""
957
  "No fields. Click the \"+ Add Sub Field button\" to create your first field."
958
  msgstr "Aucun champ. Cliquez sur \"+ Ajouter\" pour créer un premier champ."
959
 
960
  # @ acf
961
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:404
962
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:407
963
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:353
964
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:356
965
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:85
966
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:88
967
  msgid "Edit this Field"
968
  msgstr "Modifier ce champ"
969
 
970
  # @ acf
971
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:408
972
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:357
973
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:89
974
  msgid "Read documentation for this field"
975
  msgstr "Lire la documentation de ce champ"
976
 
977
  # @ acf
978
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:408
979
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:357
980
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:89
981
  msgid "Docs"
982
  msgstr "Documentation"
983
 
984
  # @ acf
985
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:409
986
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:358
987
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:90
988
  msgid "Duplicate this Field"
989
  msgstr "Dupliquer ce champ"
990
 
991
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:409
992
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:358
993
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:90
994
  msgid "Duplicate"
995
  msgstr "Dupliquer"
996
 
997
  # @ acf
998
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:410
999
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:359
1000
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:91
1001
  msgid "Delete this Field"
1002
  msgstr "Supprimer ce champ"
1003
 
1004
  # @ acf
1005
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:426
1006
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:376
1007
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:108
1008
  msgid "This is the name which will appear on the EDIT page"
1009
+ msgstr "Ce nom apparaîtra sur la page d‘édition"
1010
 
1011
  # @ acf
1012
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:442
1013
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:392
1014
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:124
1015
  msgid "Single word, no spaces. Underscores and dashes allowed"
1016
  msgstr "Un seul mot sans espace.<br />Les '_' et '-' sont autorisés"
1017
 
1018
  # @ acf
1019
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:476
1020
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:467
1021
  msgid "Save Field"
1022
  msgstr "Enregistrer le champ"
1023
 
1024
  # @ acf
1025
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:481
1026
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:472
1027
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:190
1028
  msgid "Close Field"
1029
  msgstr "Fermer le champ"
1030
 
1031
  # @ acf
1032
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:481
1033
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:472
1034
  msgid "Close Sub Field"
1035
  msgstr "Fermer le sous-champs"
1036
 
1037
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:495
1038
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:487
1039
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:203
1040
  msgid "Drag and drop to reorder"
1041
  msgstr "Faites glisser pour réorganiser"
1042
 
1043
  # @ acf
1044
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:496
1045
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:488
1046
  msgid "+ Add Sub Field"
1047
  msgstr "+ Ajouter"
1048
 
1049
  # @ acf
1050
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/flexible_content.php:503
1051
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:542
1052
  msgid "Button Label"
1053
  msgstr "Libellé du bouton"
1054
 
1055
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:25
1056
  msgid "Gallery"
1057
  msgstr "Galerie"
1058
 
1059
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:70
1060
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:233
1061
  msgid "Alternate Text"
1062
  msgstr "Texte alternatif"
1063
 
1064
  # @ acf
1065
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:74
1066
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:237
1067
  msgid "Caption"
1068
  msgstr "Légende"
1069
 
1070
  # @ acf
1071
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:78
1072
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:241
1073
  msgid "Description"
1074
  msgstr "Description"
1075
 
1076
  # @ acf
1077
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:117
1078
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:243
1079
  msgid "Preview Size"
1080
  msgstr "Taille de prévisualisation"
1081
 
1082
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:118
1083
  msgid "Thumbnail is advised"
1084
  msgstr "Une miniature est conseillée"
1085
 
1086
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:179
1087
  msgid "Image Updated"
1088
  msgstr "Image mise à jour"
1089
 
1090
  # @ acf
1091
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:262
1092
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:669
1093
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:193
1094
  msgid "Add Image"
1095
  msgstr "Ajouter une image"
1096
 
1097
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:263
1098
  msgid "Grid"
1099
  msgstr "Grille"
1100
 
1101
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:264
1102
  msgid "List"
1103
  msgstr "Liste"
1104
 
1105
  # @ acf
1106
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:266
1107
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:429
1108
  msgid "No images selected"
1109
  msgstr "Aucune image sélectionnée"
1110
 
1111
  # @ acf
1112
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:266
1113
  msgid "1 image selected"
1114
  msgstr "1 image sélectionnée"
1115
 
1116
  # @ acf
1117
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:266
1118
  msgid "{count} images selected"
1119
  msgstr "{count} images sélectionnées"
1120
 
1121
+ # @ acf
1122
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:591
1123
+ msgid "Added"
1124
+ msgstr "Ajouter"
1125
+
1126
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:611
1127
  msgid "Image already exists in gallery"
1128
+ msgstr "Limage existe déjà dans la galerie"
1129
 
1130
  # @ acf
1131
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:617
1132
  msgid "Image Added"
1133
  msgstr "Image ajoutée"
1134
 
1135
  # @ acf
1136
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/gallery.php:672
1137
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:557
1138
  msgid "Update Image"
1139
+ msgstr "Mettre à jour"
1140
 
1141
  # @ acf
1142
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:21
1143
  msgid "Image"
1144
  msgstr "Image"
1145
 
1146
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:49
1147
  msgid "Image Updated."
1148
  msgstr "Image mise à jour."
1149
 
1150
  # @ acf
1151
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:193
1152
  msgid "No image selected"
1153
  msgstr "Aucune image sélectionnée"
1154
 
1155
  # @ acf
1156
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:233
1157
  msgid "Image Object"
1158
  msgstr "Objet 'image'"
1159
 
1160
  # @ acf
1161
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:234
1162
  msgid "Image URL"
1163
+ msgstr "URL de limage"
1164
 
1165
  # @ acf
1166
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:235
1167
  msgid "Image ID"
1168
+ msgstr "ID de limage"
1169
 
1170
  # @ acf
1171
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:525
1172
  msgid "Add selected Images"
1173
  msgstr "Ajouter les images sélectionnées"
1174
 
1175
+ # acf
1176
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/image.php:554
1177
  msgid "Select Image"
1178
+ msgstr "Sélectionner l‘image"
1179
+
1180
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/number.php:21
1181
+ msgid "Number"
1182
+ msgstr "Nombre"
1183
+
1184
+ # @ acf
1185
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/number.php:65
1186
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:130
1187
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:190
1188
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:65
1189
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:62
1190
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:81
1191
+ msgid "Default Value"
1192
+ msgstr "Valeur par défaut"
1193
 
1194
  # @ acf
1195
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:21
1196
  msgid "Page Link"
1197
  msgstr "Lien vers page ou article"
1198
 
1199
  # @ acf
1200
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:70
1201
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:217
1202
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:386
1203
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:48
1204
  msgid "Post Type"
1205
+ msgstr "Type darticle"
1206
 
1207
  # @ acf
1208
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:98
1209
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:268
1210
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:204
1211
  msgid "Allow Null?"
1212
  msgstr "Autoriser vide ?"
1213
 
1214
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:107
1215
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:126
1216
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:277
1217
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:296
1218
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:213
1219
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:232
1220
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:124
1221
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:145
1222
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:172
1223
  msgid "Yes"
1224
  msgstr "Oui"
1225
 
1226
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:108
1227
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:127
1228
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:278
1229
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:297
1230
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:214
1231
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:233
1232
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:125
1233
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:146
1234
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:173
1235
  msgid "No"
1236
  msgstr "Non"
1237
 
1238
  # @ acf
1239
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/page_link.php:117
1240
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:287
1241
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:223
1242
  msgid "Select multiple values?"
1243
  msgstr "Plusieurs valeurs possibles ?"
1244
 
1245
  # @ acf
1246
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:21
1247
  msgid "Post Object"
1248
  msgstr "Objet 'article'"
1249
 
1250
  # @ acf
1251
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/post_object.php:245
1252
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:415
1253
  msgid "Filter from Taxonomy"
1254
  msgstr "Filtrer par taxonomie"
1255
 
1256
  # @ acf
1257
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:21
1258
  msgid "Radio Button"
1259
  msgstr "Bouton radio"
1260
 
1261
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:154
 
 
 
 
 
 
1262
  msgid "Vertical"
1263
  msgstr "Vertical"
1264
 
1265
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/radio.php:155
1266
  msgid "Horizontal"
1267
  msgstr "Horizontal"
1268
 
1269
  # @ acf
1270
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:21
1271
  msgid "Relationship"
1272
  msgstr "Relation"
1273
 
1274
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:288
1275
  msgid "Search"
1276
  msgstr "Rechercher"
1277
 
1278
  # @ acf
1279
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/relationship.php:438
1280
  msgid "Maximum posts"
1281
+ msgstr "Nombre max darticles"
1282
 
1283
  # @ acf
1284
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:21
1285
  msgid "Repeater"
1286
  msgstr "Répéteur"
1287
 
1288
  # @ acf
1289
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:66
1290
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:289
1291
  msgid "Add Row"
1292
  msgstr "+ Ajouter un rang"
1293
 
1294
  # @ acf
1295
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:319
1296
  msgid "Repeater Fields"
1297
  msgstr "Champs répéteurs"
1298
 
1299
  # @ acf
1300
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:420
1301
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:151
1302
+ msgid "Field Instructions"
1303
+ msgstr "Instructions pour ce champ"
1304
+
1305
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:440
1306
+ msgid "Column Width"
1307
+ msgstr "Largeur colonne"
1308
+
1309
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:441
1310
+ msgid "Leave blank for auto"
1311
+ msgstr "Laissez vide pour auto"
1312
+
1313
+ # @ acf
1314
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:495
1315
  msgid "Minimum Rows"
1316
+ msgstr "Nombre minimum dajouts"
1317
 
1318
  # @ acf
1319
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:509
1320
  msgid "Maximum Rows"
1321
+ msgstr "Nombre maximum dajouts"
1322
 
1323
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/repeater.php:533
1324
  msgid "Table (default)"
1325
  msgstr "En colonnes (par défaut)"
1326
 
1327
  # @ acf
1328
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/select.php:21
1329
  msgid "Select"
1330
  msgstr "Sélectionner"
1331
 
1332
  # @ acf
1333
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:21
1334
  msgid "Text"
1335
  msgstr "Texte"
1336
 
1337
  # @ acf
1338
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:79
1339
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:76
1340
  msgid "Formatting"
1341
  msgstr "Formatage "
1342
 
1343
  # @ acf
1344
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:80
1345
  msgid "Define how to render html tags"
1346
  msgstr "Définition du rendu des balises html"
1347
 
1348
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:89
1349
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:86
1350
  msgid "None"
1351
  msgstr "Aucun"
1352
 
1353
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/text.php:90
1354
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:88
1355
  msgid "HTML"
1356
  msgstr "HTML"
1357
 
1358
  # @ acf
1359
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:21
1360
  msgid "Text Area"
1361
  msgstr "Zone de texte"
1362
 
1363
  # @ acf
1364
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:77
1365
  msgid "Define how to render html tags / new lines"
1366
  msgstr "Définition du rendu des balises html et des nouvelles lignes"
1367
 
1368
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/textarea.php:87
1369
  msgid "auto &lt;br /&gt;"
1370
  msgstr "auto &lt;br /&gt;"
1371
 
1372
  # @ acf
1373
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/true_false.php:21
1374
  msgid "True / False"
1375
  msgstr "Vrai / Faux"
1376
 
1377
  # @ acf
1378
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/true_false.php:68
1379
  msgid "Message"
1380
  msgstr "Message"
1381
 
1382
  # @ acf
1383
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/true_false.php:69
1384
  msgid "eg. Show extra content"
1385
  msgstr "ex : Montrer du contenu supplémentaire"
1386
 
1387
  # @ acf
1388
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:21
1389
  msgid "Wysiwyg Editor"
1390
  msgstr "Editeur WYSIWYG"
1391
 
1392
  # @ acf
1393
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:95
1394
  msgid "Toolbar"
1395
+ msgstr "Barre doutils"
1396
 
1397
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:106
1398
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:47
1399
  msgid "Basic"
1400
  msgstr "Basique"
1401
 
1402
  # @ acf
1403
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:114
1404
  msgid "Show Media Upload Buttons?"
1405
+ msgstr "Afficher les boutons dajout de médias ?"
1406
+
1407
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:133
1408
+ msgid "Run filter \"the_content\"?"
1409
+ msgstr "Exécuter filtre \"the_content\"?"
1410
+
1411
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:134
1412
+ msgid "Enable this filter to use shortcodes within the WYSIWYG field"
1413
+ msgstr "Activer ce filtre pour utiliser les shortcodes dans le champ WYSIWYG"
1414
+
1415
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/wysiwyg.php:135
1416
+ msgid ""
1417
+ "Disable this filter if you encounter recursive template problems with "
1418
+ "plugins / themes"
1419
+ msgstr ""
1420
+ "Désactivez ce filtre si vous rencontrez des problèmes de modèles récursifs "
1421
+ "avec les plugins / thèmes"
1422
+
1423
+ # @ acf
1424
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:21
1425
+ msgid "Date Picker"
1426
+ msgstr "Date"
1427
+
1428
+ # @ acf
1429
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:95
1430
+ msgid "Save format"
1431
+ msgstr "Sauvegarder format"
1432
+
1433
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:96
1434
+ msgid ""
1435
+ "This format will determin the value saved to the database and returned via "
1436
+ "the API"
1437
+ msgstr ""
1438
+ "Ce format sera détermine la valeur enregistrée dans la base de données et "
1439
+ "retournée par l‘API"
1440
+
1441
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:97
1442
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1443
+ msgstr ""
1444
+ "\"yymmdd\" est le format d‘enregistrement le plus polyvalent. En savoir plus "
1445
+ "sur"
1446
+
1447
+ # @ acf
1448
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:97
1449
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:107
1450
+ msgid "jQuery date formats"
1451
+ msgstr "Format date jQuery"
1452
+
1453
+ # @ acf
1454
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:105
1455
+ msgid "Display format"
1456
+ msgstr "Format d‘affichage"
1457
+
1458
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:106
1459
+ msgid "This format will be seen by the user when entering a value"
1460
+ msgstr "Ce format sera vu par l‘utilisateur lors de la saisie d‘une valeur"
1461
+
1462
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/fields/date_picker/date_picker.php:107
1463
+ msgid ""
1464
+ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1465
+ "about"
1466
+ msgstr ""
1467
+ "\"dd/mm/yy\" ou \"mm/dd/yy\" sont les formats d‘affichage les plus "
1468
+ "utilisées. En savoir plus sur"
1469
 
1470
  # @ acf
1471
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:26
1472
  msgid "new_field"
1473
  msgstr "nouveau_champ"
1474
 
1475
  # @ acf
1476
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:47
1477
  msgid "Move to trash. Are you sure?"
1478
  msgstr "Mettre à la corbeille. Etes-vous sûr ?"
1479
 
1480
  # @ acf
1481
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:64
1482
+ msgid "Field Key"
1483
+ msgstr "Clé du champ"
1484
+
1485
+ # @ acf
1486
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:74
1487
  msgid ""
1488
  "No fields. Click the <strong>+ Add Field</strong> button to create your "
1489
  "first field."
1492
  "votre premier champ."
1493
 
1494
  # @ acf
1495
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:152
 
 
 
 
 
1496
  msgid "Instructions for authors. Shown when submitting data"
1497
  msgstr ""
1498
  "Instructions pour les auteurs. Affichées lors de la soumission de données."
1499
 
1500
  # @ acf
1501
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:164
1502
  msgid "Required?"
1503
  msgstr "Requis ?"
1504
 
1505
  # @ acf
1506
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_fields.php:204
1507
  msgid "+ Add Field"
1508
  msgstr "+ Ajouter"
1509
 
1510
  # @ acf
1511
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:35
1512
  msgid "Rules"
1513
  msgstr "Règles"
1514
 
1515
  # @ acf
1516
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:36
1517
  msgid ""
1518
  "Create a set of rules to determine which edit screens will use these "
1519
  "advanced custom fields"
1520
  msgstr ""
1521
+ "Créez une série de règles pour déterminer sur quelles pages d‘édition ce "
1522
  "groupe de champs sera utilisé"
1523
 
1524
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:49
1525
  msgid "Logged in User Type"
1526
+ msgstr "Rôle de lutilisateur"
1527
 
1528
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:51
1529
  msgid "Page Specific"
1530
  msgstr "Pages"
1531
 
1532
  # @ acf
1533
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:52
1534
  msgid "Page"
1535
  msgstr "Page"
1536
 
1537
  # @ acf
1538
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:53
1539
  msgid "Page Type"
1540
  msgstr "Type de page"
1541
 
1542
  # @ acf
1543
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:54
1544
  msgid "Page Parent"
1545
  msgstr "Page parente"
1546
 
1547
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:55
1548
  msgid "Page Template"
1549
  msgstr "Modèle de page"
1550
 
1551
  # @ acf
1552
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:57
1553
  msgid "Post Specific"
1554
  msgstr "Articles (posts)"
1555
 
1556
  # @ acf
1557
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:58
1558
  msgid "Post"
1559
  msgstr "Article"
1560
 
1561
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:59
1562
  msgid "Post Category"
1563
+ msgstr "Type darticles"
1564
 
1565
  # @ acf
1566
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:60
1567
  msgid "Post Format"
1568
+ msgstr "Format darticle"
1569
 
1570
  # @ acf
1571
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:61
1572
  msgid "Post Taxonomy"
1573
  msgstr "Taxonimie"
1574
 
1575
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:63
1576
  msgid "Other"
1577
  msgstr "Autres"
1578
 
1579
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:64
1580
  msgid "Taxonomy (Add / Edit)"
1581
  msgstr "Taxinomie (Ajouter / Modifier)"
1582
 
1583
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:65
1584
  msgid "User (Add / Edit)"
1585
  msgstr "Utilisateur (Ajouter / Modifier)"
1586
 
1587
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:66
1588
  msgid "Media (Edit)"
1589
  msgstr "Média (Modifier)"
1590
 
1591
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:96
1592
  msgid "is equal to"
1593
  msgstr "est égal à"
1594
 
1595
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:97
1596
  msgid "is not equal to"
1597
+ msgstr "nest pas égal à"
1598
 
1599
  # @ acf
1600
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:121
1601
  msgid "match"
1602
  msgstr "Ce groupe de champs apparaitra si :"
1603
 
1604
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:127
1605
  msgid "all"
1606
  msgstr "toutes les règles sont respectées"
1607
 
1608
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:128
1609
  msgid "any"
1610
  msgstr "au moins une règle est respectée"
1611
 
1612
  # @ acf
1613
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:131
1614
  msgid "of the above"
1615
  msgstr " "
1616
 
1617
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_location.php:144
1618
  msgid "Unlock options add-on with an activation code"
1619
+ msgstr "Déverrouiller ladd-on 'Options' avec un code d'activation"
1620
 
1621
  # @ acf
1622
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:23
1623
  msgid "Order No."
1624
+ msgstr "Numéro dordre"
1625
 
1626
  # @ acf
1627
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:24
1628
+ msgid "Field groups are created in order <br />from lowest to highest"
1629
+ msgstr ""
1630
+ "Les groupes de champs sont créés dans <br/> ordre du plus bas vers le plus "
1631
+ "haut"
1632
 
1633
  # @ acf
1634
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:40
1635
  msgid "Position"
1636
  msgstr "Position"
1637
 
1638
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:61
1639
+ msgid "Priority"
1640
+ msgstr "Priorité"
1641
+
1642
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:71
1643
+ msgid "Low"
1644
+ msgstr "Basse"
1645
+
1646
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:72
1647
+ msgid "High"
1648
+ msgstr "Haute"
1649
+
1650
  # @ acf
1651
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:82
1652
  msgid "Style"
1653
  msgstr "Style"
1654
 
1655
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:102
1656
  msgid "Hide on screen"
1657
  msgstr "Ne pas afficher"
1658
 
1659
  # @ acf
1660
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:103
1661
  msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1662
  msgstr ""
1663
  "<b>Décochez</b> les champs que vous souhaitez <b>masquer</b> sur la page "
1664
+ "d‘édition"
1665
 
1666
  # @ acf
1667
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:104
1668
  msgid ""
1669
  "If multiple field groups appear on an edit screen, the first field group's "
1670
  "options will be used. (the one with the lowest order number)"
1671
  msgstr ""
1672
+ "Si plusieurs groupes ACF sont présents sur une page d‘édition, le groupe "
1673
  "portant le numéro le plus bas sera affiché en premier."
1674
 
1675
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:114
1676
  msgid "Content Editor"
1677
+ msgstr "La zone d‘édition principale"
1678
 
1679
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:115
1680
  msgid "Excerpt"
1681
  msgstr "Le résumé (excerpt)"
1682
 
1683
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:117
1684
  msgid "Discussion"
1685
  msgstr "Discussion"
1686
 
1687
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:118
1688
  msgid "Comments"
1689
  msgstr "Les commentaires"
1690
 
1691
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:119
1692
  msgid "Slug"
1693
  msgstr "Identifiant (slug)"
1694
 
1695
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:120
1696
  msgid "Author"
1697
  msgstr "Auteur"
1698
 
1699
  # @ acf
1700
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:121
1701
  msgid "Format"
1702
  msgstr "Format"
1703
 
1704
  # @ acf
1705
+ #: /Volumes/GRAVITY/USER/Sites/wordpress/wp-content/plugins/advanced-custom-fields/core/views/meta_box_options.php:122
1706
  msgid "Featured Image"
1707
  msgstr "Image à la Une"
1708
+
1709
+ #~ msgid "Add Fields to Edit Screens"
1710
+ #~ msgstr "Ajouter les champs à l'écran d'édition"
1711
+
1712
+ #~ msgid "Customise the edit page"
1713
+ #~ msgstr "Personnaliser l'écran d'édition"
lang/acf-nl_NL.mo CHANGED
Binary file
lang/acf-nl_NL.po ADDED
@@ -0,0 +1,1337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Advanced Custom Fields - Dutch translation\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2012-09-10 08:45+0100\n"
8
+ "PO-Revision-Date: 2012-09-10 09:07+0100\n"
9
+ "Last-Translator: Derk Oosterveld <derk@inpoint.nl>\n"
10
+ "Language-Team: Inpoint <derk@inpoint.nl>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-KeywordsList: _e;__\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: acf.php:287 core/views/meta_box_options.php:94
19
+ msgid "Custom Fields"
20
+ msgstr "Extra velden"
21
+
22
+ #: acf.php:308
23
+ msgid "Field&nbsp;Groups"
24
+ msgstr "Groepen"
25
+
26
+ #: acf.php:309 core/controllers/field_groups.php:234
27
+ #: core/controllers/upgrade.php:70
28
+ msgid "Advanced Custom Fields"
29
+ msgstr "Advanced Custom Fields"
30
+
31
+ #: acf.php:310 core/fields/flexible_content.php:325
32
+ msgid "Add New"
33
+ msgstr "Nieuwe groep"
34
+
35
+ #: acf.php:311
36
+ msgid "Add New Field Group"
37
+ msgstr "Nieuwe groep toevoegen"
38
+
39
+ #: acf.php:312
40
+ msgid "Edit Field Group"
41
+ msgstr "Bewerk groep"
42
+
43
+ #: acf.php:313
44
+ msgid "New Field Group"
45
+ msgstr "Nieuwe groep"
46
+
47
+ #: acf.php:314
48
+ msgid "View Field Group"
49
+ msgstr "Bekijk groep"
50
+
51
+ #: acf.php:315
52
+ msgid "Search Field Groups"
53
+ msgstr "Zoek groepen"
54
+
55
+ #: acf.php:316
56
+ msgid "No Field Groups found"
57
+ msgstr "Geen groepen gevonden"
58
+
59
+ #: acf.php:317
60
+ msgid "No Field Groups found in Trash"
61
+ msgstr "Geen groepen gevonden in de prullenbak"
62
+
63
+ #: acf.php:352 acf.php:355
64
+ msgid "Field group updated."
65
+ msgstr "Groep bijgewerkt."
66
+
67
+ #: acf.php:353
68
+ msgid "Custom field updated."
69
+ msgstr "Extra veld bijgewerkt."
70
+
71
+ #: acf.php:354
72
+ msgid "Custom field deleted."
73
+ msgstr "Extra veld verwijderd."
74
+
75
+ #: acf.php:357
76
+ #, php-format
77
+ msgid "Field group restored to revision from %s"
78
+ msgstr "Groepen hersteld naar revisie van %s"
79
+
80
+ #: acf.php:358
81
+ msgid "Field group published."
82
+ msgstr "Groep gepubliseerd."
83
+
84
+ #: acf.php:359
85
+ msgid "Field group saved."
86
+ msgstr "Groep opgeslagen."
87
+
88
+ #: acf.php:360
89
+ msgid "Field group submitted."
90
+ msgstr "Groep toegevoegd."
91
+
92
+ #: acf.php:361
93
+ msgid "Field group scheduled for."
94
+ msgstr "Groep gepland voor."
95
+
96
+ #: acf.php:362
97
+ msgid "Field group draft updated."
98
+ msgstr "Groep concept bijgewerkt."
99
+
100
+ #: acf.php:381 core/fields/gallery.php:66 core/fields/gallery.php:229
101
+ msgid "Title"
102
+ msgstr "Titel"
103
+
104
+ #: acf.php:611
105
+ msgid "Error: Field Type does not exist!"
106
+ msgstr "Fout: Veld type bestaat niet!"
107
+
108
+ #: acf.php:1688
109
+ msgid "Thumbnail"
110
+ msgstr "Thumbnail"
111
+
112
+ #: acf.php:1689
113
+ msgid "Medium"
114
+ msgstr "Gemiddeld"
115
+
116
+ #: acf.php:1690
117
+ msgid "Large"
118
+ msgstr "Groot"
119
+
120
+ #: acf.php:1691 core/fields/wysiwyg.php:105
121
+ msgid "Full"
122
+ msgstr "Volledige grootte"
123
+
124
+ #: core/actions/export.php:19
125
+ msgid "No ACF groups selected"
126
+ msgstr "Geen ACF groep geselecteerd"
127
+
128
+ #: core/controllers/field_group.php:148 core/controllers/field_group.php:167
129
+ #: core/controllers/field_groups.php:144
130
+ msgid "Fields"
131
+ msgstr "Velden"
132
+
133
+ #: core/controllers/field_group.php:149
134
+ msgid "Location"
135
+ msgstr "Locatie"
136
+
137
+ #: core/controllers/field_group.php:150 core/controllers/field_group.php:424
138
+ #: core/controllers/options_page.php:62 core/controllers/options_page.php:74
139
+ #: core/views/meta_box_location.php:143
140
+ msgid "Options"
141
+ msgstr "Opties"
142
+
143
+ #: core/controllers/field_group.php:352
144
+ msgid "Parent Page"
145
+ msgstr "Hoofdpagina"
146
+
147
+ #: core/controllers/field_group.php:353
148
+ msgid "Child Page"
149
+ msgstr "Subpagina"
150
+
151
+ #: core/controllers/field_group.php:361
152
+ msgid "Default Template"
153
+ msgstr "Standaard template"
154
+
155
+ #: core/controllers/field_group.php:448 core/controllers/field_group.php:469
156
+ #: core/controllers/field_group.php:476 core/fields/page_link.php:76
157
+ #: core/fields/post_object.php:223 core/fields/post_object.php:251
158
+ #: core/fields/relationship.php:392 core/fields/relationship.php:421
159
+ msgid "All"
160
+ msgstr "Alles"
161
+
162
+ #: core/controllers/field_groups.php:197 core/views/meta_box_options.php:50
163
+ msgid "Normal"
164
+ msgstr "Normaal"
165
+
166
+ #: core/controllers/field_groups.php:198 core/views/meta_box_options.php:51
167
+ msgid "Side"
168
+ msgstr "Zijkant"
169
+
170
+ #: core/controllers/field_groups.php:208 core/views/meta_box_options.php:70
171
+ msgid "Standard Metabox"
172
+ msgstr "Standaard metabox"
173
+
174
+ #: core/controllers/field_groups.php:209 core/views/meta_box_options.php:71
175
+ msgid "No Metabox"
176
+ msgstr "Geen metabox"
177
+
178
+ #: core/controllers/field_groups.php:236
179
+ msgid "Changelog"
180
+ msgstr "Changelog"
181
+
182
+ #: core/controllers/field_groups.php:237
183
+ msgid "See what's new in"
184
+ msgstr "Wat is nieuw in"
185
+
186
+ #: core/controllers/field_groups.php:239
187
+ msgid "Resources"
188
+ msgstr "Documentatie"
189
+
190
+ #: core/controllers/field_groups.php:240
191
+ msgid "Read documentation, learn the functions and find some tips &amp; tricks for your next web project."
192
+ msgstr "Lees de documentatie, leer de functies kennen en ontdek tips & tricks voor jouw web project."
193
+
194
+ #: core/controllers/field_groups.php:241
195
+ msgid "Visit the ACF website"
196
+ msgstr "Bezoek de ACF website"
197
+
198
+ #: core/controllers/field_groups.php:246
199
+ msgid "Created by"
200
+ msgstr "Ontwikkeld door"
201
+
202
+ #: core/controllers/field_groups.php:249
203
+ msgid "Vote"
204
+ msgstr "Stem"
205
+
206
+ #: core/controllers/field_groups.php:250
207
+ msgid "Follow"
208
+ msgstr "Volg op Twitter"
209
+
210
+ #: core/controllers/input.php:448
211
+ msgid "Validation Failed. One or more fields below are required."
212
+ msgstr "Validatie mislukt. E&eacute;n of meer velden hieronder zijn verplicht."
213
+
214
+ #: core/controllers/input.php:449
215
+ msgid "Add File to Field"
216
+ msgstr "+ Bestand toevoegen aan veld"
217
+
218
+ #: core/controllers/input.php:450
219
+ msgid "Edit File"
220
+ msgstr "Bewerk bestand"
221
+
222
+ #: core/controllers/input.php:451
223
+ msgid "Add Image to Field"
224
+ msgstr "Add Image to Field"
225
+
226
+ #: core/controllers/input.php:452 core/controllers/input.php:455
227
+ msgid "Edit Image"
228
+ msgstr "Bewerk afbeelding"
229
+
230
+ #: core/controllers/input.php:453
231
+ msgid "Maximum values reached ( {max} values )"
232
+ msgstr "Maximum aantal waarden bereikt ( {max} waarden )"
233
+
234
+ #: core/controllers/input.php:454
235
+ msgid "Add Image to Gallery"
236
+ msgstr "Voeg afbeelding toe aan galerij"
237
+
238
+ #: core/controllers/input.php:545
239
+ msgid "Attachment updated"
240
+ msgstr "Bijlage bijgewerkt."
241
+
242
+ #: core/controllers/options_page.php:121
243
+ msgid "Options Updated"
244
+ msgstr "Opties bijgewerkt"
245
+
246
+ #: core/controllers/options_page.php:251
247
+ msgid "No Custom Field Group found for the options page"
248
+ msgstr "Geen extra veld groepen gevonden voor de opties pagina"
249
+
250
+ #: core/controllers/options_page.php:251
251
+ msgid "Create a Custom Field Group"
252
+ msgstr "Maak een extra velden groep"
253
+
254
+ #: core/controllers/options_page.php:262
255
+ msgid "Publish"
256
+ msgstr "Publiceer"
257
+
258
+ #: core/controllers/options_page.php:265
259
+ msgid "Save Options"
260
+ msgstr "Opties bijwerken"
261
+
262
+ #: core/controllers/settings.php:49
263
+ msgid "Settings"
264
+ msgstr "Instellingen"
265
+
266
+ #: core/controllers/settings.php:111
267
+ msgid "Repeater field deactivated"
268
+ msgstr "Repeater Field gedeactiveerd"
269
+
270
+ #: core/controllers/settings.php:115
271
+ msgid "Options page deactivated"
272
+ msgstr "Options page gedeactiveerd"
273
+
274
+ #: core/controllers/settings.php:119
275
+ msgid "Flexible Content field deactivated"
276
+ msgstr "Flexible Content field gedeactiveerd"
277
+
278
+ #: core/controllers/settings.php:123
279
+ msgid "Gallery field deactivated"
280
+ msgstr "Gallery field gedeactiveerd"
281
+
282
+ #: core/controllers/settings.php:147
283
+ msgid "Repeater field activated"
284
+ msgstr "Repeater field geactiveerd"
285
+
286
+ #: core/controllers/settings.php:151
287
+ msgid "Options page activated"
288
+ msgstr "Options page geactiveerd"
289
+
290
+ #: core/controllers/settings.php:155
291
+ msgid "Flexible Content field activated"
292
+ msgstr "Flexible Content field geactiveerd"
293
+
294
+ #: core/controllers/settings.php:159
295
+ msgid "Gallery field activated"
296
+ msgstr "Gallery field geactiveerd"
297
+
298
+ #: core/controllers/settings.php:164
299
+ msgid "License key unrecognised"
300
+ msgstr "Licentie code niet herkend"
301
+
302
+ #: core/controllers/settings.php:216
303
+ msgid "Activate Add-ons."
304
+ msgstr "Activeer add-ons."
305
+
306
+ #: core/controllers/settings.php:217
307
+ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
308
+ msgstr "Add-ons kun je activeren door een licentie code te kopen. Elke code kan gebruikt worden op meerdere websites."
309
+
310
+ #: core/controllers/settings.php:218
311
+ msgid "Find Add-ons"
312
+ msgstr "Zoek add-ons"
313
+
314
+ #: core/controllers/settings.php:225 core/fields/flexible_content.php:380
315
+ #: core/fields/flexible_content.php:456 core/fields/repeater.php:330
316
+ #: core/fields/repeater.php:406 core/views/meta_box_fields.php:63
317
+ #: core/views/meta_box_fields.php:138
318
+ msgid "Field Type"
319
+ msgstr "Soort veld"
320
+
321
+ #: core/controllers/settings.php:226
322
+ msgid "Status"
323
+ msgstr "Status"
324
+
325
+ #: core/controllers/settings.php:227
326
+ msgid "Activation Code"
327
+ msgstr "Activatie code"
328
+
329
+ #: core/controllers/settings.php:232
330
+ msgid "Repeater Field"
331
+ msgstr "Repeater Field"
332
+
333
+ #: core/controllers/settings.php:233 core/controllers/settings.php:252
334
+ #: core/controllers/settings.php:271 core/controllers/settings.php:290
335
+ msgid "Active"
336
+ msgstr "Actief"
337
+
338
+ #: core/controllers/settings.php:233 core/controllers/settings.php:252
339
+ #: core/controllers/settings.php:271 core/controllers/settings.php:290
340
+ msgid "Inactive"
341
+ msgstr "Niet actief"
342
+
343
+ #: core/controllers/settings.php:239 core/controllers/settings.php:258
344
+ #: core/controllers/settings.php:277 core/controllers/settings.php:296
345
+ msgid "Deactivate"
346
+ msgstr "Deactiveren"
347
+
348
+ #: core/controllers/settings.php:245 core/controllers/settings.php:264
349
+ #: core/controllers/settings.php:283 core/controllers/settings.php:302
350
+ msgid "Activate"
351
+ msgstr "Activeren"
352
+
353
+ #: core/controllers/settings.php:251
354
+ msgid "Flexible Content Field"
355
+ msgstr "Flexible Content Field"
356
+
357
+ #: core/controllers/settings.php:270
358
+ msgid "Gallery Field"
359
+ msgstr "Gallery Field"
360
+
361
+ #: core/controllers/settings.php:289 core/views/meta_box_location.php:74
362
+ msgid "Options Page"
363
+ msgstr "Options Page"
364
+
365
+ #: core/controllers/settings.php:314
366
+ msgid "Export Field Groups to XML"
367
+ msgstr "Exporteer groepen naar XML"
368
+
369
+ #: core/controllers/settings.php:315
370
+ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
371
+ msgstr "ACF maakt een .xml export bestand die compatibel is met de ingebouwde WP import plugin."
372
+
373
+ #: core/controllers/settings.php:316 core/controllers/settings.php:354
374
+ msgid "Instructions"
375
+ msgstr "Instructies"
376
+
377
+ #: core/controllers/settings.php:318
378
+ msgid "Import Field Groups"
379
+ msgstr "Importeer groepen"
380
+
381
+ #: core/controllers/settings.php:319
382
+ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
383
+ msgstr "Ge&iuml;mporteerde veld groepen <b>verschijnen</b> in de lijst van beheerbare veld groepen. Dit is handig voor het migreren van veld groepen tussen WP websites."
384
+
385
+ #: core/controllers/settings.php:321
386
+ msgid "Select field group(s) from the list and click \"Export XML\""
387
+ msgstr "Selecteer veld groep(en) van van de lijst en klik \"Exporteer XML\""
388
+
389
+ #: core/controllers/settings.php:322
390
+ msgid "Save the .xml file when prompted"
391
+ msgstr "Sla de .xml file op wanneer er om gevraagd wordt"
392
+
393
+ #: core/controllers/settings.php:323
394
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
395
+ msgstr "Navigeer naar Extra &raquo; Importeren en selecteer WordPress "
396
+
397
+ #: core/controllers/settings.php:324
398
+ msgid "Install WP import plugin if prompted"
399
+ msgstr "Installeer de WP import plugin als er naar wordt gevraagd"
400
+
401
+ #: core/controllers/settings.php:325
402
+ msgid "Upload and import your exported .xml file"
403
+ msgstr "Upload en import je ge&euml;xporteerde .xml bestand"
404
+
405
+ #: core/controllers/settings.php:326
406
+ msgid "Select your user and ignore Import Attachments"
407
+ msgstr "Selecteer je gebruiker en negeer import bijlages"
408
+
409
+ #: core/controllers/settings.php:327
410
+ msgid "That's it! Happy WordPressing"
411
+ msgstr "Dat is het! Happy WordPressing"
412
+
413
+ #: core/controllers/settings.php:345
414
+ msgid "Export XML"
415
+ msgstr "Exporteer XML"
416
+
417
+ #: core/controllers/settings.php:352
418
+ msgid "Export Field Groups to PHP"
419
+ msgstr "Exporteer groepen naar PHP"
420
+
421
+ #: core/controllers/settings.php:353
422
+ msgid "ACF will create the PHP code to include in your theme."
423
+ msgstr "ACF maakt de PHP code die je kan integreren in jouw thema."
424
+
425
+ #: core/controllers/settings.php:356 core/controllers/settings.php:473
426
+ msgid "Register Field Groups"
427
+ msgstr "Registreer veld groepen"
428
+
429
+ #: core/controllers/settings.php:357 core/controllers/settings.php:474
430
+ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
431
+ msgstr "Geregistreerde veld groepen verschijnen <b>niet</b> in de lijst met beheerbare veld groepen. Dit is handig voor het insluiten van velden in thema\'s"
432
+
433
+ #: core/controllers/settings.php:358 core/controllers/settings.php:475
434
+ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the origional field group to the trash or remove the code from your functions.php file."
435
+ msgstr "Houd er rekening mee dat wanneer je veld groepen exporteert en registreert in dezelfde WP installatie, ze verschijnen als gedupliceerde velden in je edit screens. Om dit te verhelpen: verwijder de originele veld groepen naar de prullenbak of verwijder de code uit je functions.php bestand."
436
+
437
+ #: core/controllers/settings.php:360
438
+ msgid "Select field group(s) from the list and click \"Create PHP\""
439
+ msgstr "Selecteer veld groepen uit de lijst en klik \"Maak PHP\""
440
+
441
+ #: core/controllers/settings.php:361 core/controllers/settings.php:477
442
+ msgid "Copy the PHP code generated"
443
+ msgstr "Kopieer de gegenereerde PHP code"
444
+
445
+ #: core/controllers/settings.php:362 core/controllers/settings.php:478
446
+ msgid "Paste into your functions.php file"
447
+ msgstr "Plak in je functions.php bestand"
448
+
449
+ #: core/controllers/settings.php:363 core/controllers/settings.php:479
450
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
451
+ msgstr "Om add-ons te activeren, bewerk en gebruik de code in de eerste regels."
452
+
453
+ #: core/controllers/settings.php:382
454
+ msgid "Create PHP"
455
+ msgstr "Maak PHP"
456
+
457
+ #: core/controllers/settings.php:468
458
+ msgid "Back to settings"
459
+ msgstr "Terug naar instellingen"
460
+
461
+ #: core/controllers/settings.php:503
462
+ #, fuzzy
463
+ msgid ""
464
+ "/**\n"
465
+ " * Activate Add-ons\n"
466
+ " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
467
+ " * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
468
+ " * Use the commented out code to update the database with your activation code. \n"
469
+ " * You may place this code inside an IF statement that only runs on theme activation.\n"
470
+ " */"
471
+ msgstr ""
472
+ "/**\n"
473
+ " * Activate Add-ons\n"
474
+ " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
475
+ " * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
476
+ " * Use the commented out code to update the database with your activation code. \n"
477
+ " * You may place this code inside an IF statement that only runs on theme activation.\n"
478
+ " */"
479
+
480
+ #: core/controllers/settings.php:518
481
+ #, fuzzy
482
+ msgid ""
483
+ "/**\n"
484
+ " * Register field groups\n"
485
+ " * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
486
+ " * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
487
+ " * This code must run every time the functions.php file is read\n"
488
+ " */"
489
+ msgstr ""
490
+ "/**\n"
491
+ " * Register field groups\n"
492
+ " * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
493
+ " * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
494
+ " * This code must run every time the functions.php file is read\n"
495
+ " */"
496
+
497
+ #: core/controllers/settings.php:557
498
+ msgid "No field groups were selected"
499
+ msgstr "Geen groepen geselecteerd"
500
+
501
+ #: core/controllers/settings.php:589
502
+ msgid "Advanced Custom Fields Settings"
503
+ msgstr "Advanced Custom Fields instellingen"
504
+
505
+ #: core/controllers/upgrade.php:51
506
+ msgid "Upgrade"
507
+ msgstr "Upgrade"
508
+
509
+ #: core/controllers/upgrade.php:70
510
+ msgid "requires a database upgrade"
511
+ msgstr "vereist een database upgrade"
512
+
513
+ #: core/controllers/upgrade.php:70
514
+ msgid "why?"
515
+ msgstr "waarom?"
516
+
517
+ #: core/controllers/upgrade.php:70
518
+ msgid "Please"
519
+ msgstr "Graag"
520
+
521
+ #: core/controllers/upgrade.php:70
522
+ msgid "backup your database"
523
+ msgstr "backup maken van je database"
524
+
525
+ #: core/controllers/upgrade.php:70
526
+ msgid "then click"
527
+ msgstr "vervolgens klikken op"
528
+
529
+ #: core/controllers/upgrade.php:70
530
+ msgid "Upgrade Database"
531
+ msgstr "Upgrade database"
532
+
533
+ #: core/controllers/upgrade.php:604
534
+ msgid "Modifying field group options 'show on page'"
535
+ msgstr "Wijzigen groep opties \'toon op pagina\'"
536
+
537
+ #: core/controllers/upgrade.php:658
538
+ msgid "Modifying field option 'taxonomy'"
539
+ msgstr "Wijzigen groep opties \'toon op pagina\'"
540
+
541
+ #: core/controllers/upgrade.php:755
542
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
543
+ msgstr "Verplaats gebruikers eigen velden van wp_options naar wp_usermeta"
544
+
545
+ #: core/fields/checkbox.php:21
546
+ msgid "Checkbox"
547
+ msgstr "Checkbox"
548
+
549
+ #: core/fields/checkbox.php:55 core/fields/radio.php:45
550
+ #: core/fields/select.php:54
551
+ msgid "No choices to choose from"
552
+ msgstr "Geen keuzes om uit te kiezen"
553
+
554
+ #: core/fields/checkbox.php:113 core/fields/radio.php:114
555
+ #: core/fields/select.php:174
556
+ msgid "Choices"
557
+ msgstr "Keuzes"
558
+
559
+ #: core/fields/checkbox.php:114 core/fields/radio.php:115
560
+ #: core/fields/select.php:175
561
+ msgid "Enter your choices one per line"
562
+ msgstr "Per regel een keuze"
563
+
564
+ #: core/fields/checkbox.php:116 core/fields/radio.php:117
565
+ #: core/fields/select.php:177
566
+ msgid "Red"
567
+ msgstr "Rood"
568
+
569
+ #: core/fields/checkbox.php:117 core/fields/radio.php:118
570
+ #: core/fields/select.php:178
571
+ msgid "Blue"
572
+ msgstr "Blauw"
573
+
574
+ #: core/fields/checkbox.php:119 core/fields/radio.php:120
575
+ #: core/fields/select.php:180
576
+ msgid "red : Red"
577
+ msgstr "rood : Rood"
578
+
579
+ #: core/fields/checkbox.php:120 core/fields/radio.php:121
580
+ #: core/fields/select.php:181
581
+ msgid "blue : Blue"
582
+ msgstr "blauw : Blauw"
583
+
584
+ #: core/fields/color_picker.php:21
585
+ msgid "Color Picker"
586
+ msgstr "Kleurprikker"
587
+
588
+ #: core/fields/file.php:20
589
+ msgid "File"
590
+ msgstr "Bestand"
591
+
592
+ #: core/fields/file.php:48
593
+ msgid "File Updated."
594
+ msgstr "Bestand bijgewerkt."
595
+
596
+ #: core/fields/file.php:89 core/fields/flexible_content.php:407
597
+ #: core/fields/gallery.php:251 core/fields/gallery.php:281
598
+ #: core/fields/image.php:187 core/fields/repeater.php:356
599
+ #: core/views/meta_box_fields.php:88
600
+ msgid "Edit"
601
+ msgstr "Bewerk"
602
+
603
+ #: core/fields/file.php:90 core/fields/gallery.php:250
604
+ #: core/fields/gallery.php:280 core/fields/image.php:186
605
+ msgid "Remove"
606
+ msgstr "Verwijder"
607
+
608
+ #: core/fields/file.php:195
609
+ msgid "No File Selected"
610
+ msgstr "Geen bestand geselecteerd"
611
+
612
+ #: core/fields/file.php:195
613
+ msgid "Add File"
614
+ msgstr "Voeg bestand toe"
615
+
616
+ #: core/fields/file.php:224 core/fields/image.php:223
617
+ msgid "Return Value"
618
+ msgstr "Return waarde"
619
+
620
+ #: core/fields/file.php:234
621
+ msgid "File URL"
622
+ msgstr "Bestands-URL"
623
+
624
+ #: core/fields/file.php:235
625
+ msgid "Attachment ID"
626
+ msgstr "Attachment ID"
627
+
628
+ #: core/fields/file.php:268 core/fields/image.php:291
629
+ msgid "Media attachment updated."
630
+ msgstr "Media bijlage bijgewerkt."
631
+
632
+ #: core/fields/file.php:393
633
+ msgid "No files selected"
634
+ msgstr "Geen bestanden geselecteerd"
635
+
636
+ #: core/fields/file.php:488
637
+ msgid "Add Selected Files"
638
+ msgstr "Geselecteerde bestanden toevoegen"
639
+
640
+ #: core/fields/file.php:518
641
+ msgid "Select File"
642
+ msgstr "Selecteer bestand"
643
+
644
+ #: core/fields/file.php:521
645
+ msgid "Update File"
646
+ msgstr "Update bestand"
647
+
648
+ #: core/fields/flexible_content.php:21
649
+ msgid "Flexible Content"
650
+ msgstr "Flexible Content"
651
+
652
+ #: core/fields/flexible_content.php:38 core/fields/flexible_content.php:286
653
+ msgid "+ Add Row"
654
+ msgstr "+ Nieuwe regel"
655
+
656
+ #: core/fields/flexible_content.php:313 core/fields/repeater.php:302
657
+ #: core/views/meta_box_fields.php:25
658
+ msgid "New Field"
659
+ msgstr "Nieuw veld"
660
+
661
+ #: core/fields/flexible_content.php:322 core/fields/radio.php:144
662
+ #: core/fields/repeater.php:523
663
+ msgid "Layout"
664
+ msgstr "Layout"
665
+
666
+ #: core/fields/flexible_content.php:324
667
+ msgid "Reorder Layout"
668
+ msgstr "Herorder layout"
669
+
670
+ #: core/fields/flexible_content.php:324
671
+ msgid "Reorder"
672
+ msgstr "Herorder"
673
+
674
+ #: core/fields/flexible_content.php:325
675
+ msgid "Add New Layout"
676
+ msgstr "Nieuwe layout"
677
+
678
+ #: core/fields/flexible_content.php:326
679
+ msgid "Delete Layout"
680
+ msgstr "Verwijder layout"
681
+
682
+ #: core/fields/flexible_content.php:326 core/fields/flexible_content.php:410
683
+ #: core/fields/repeater.php:359 core/views/meta_box_fields.php:91
684
+ msgid "Delete"
685
+ msgstr "Verwijder"
686
+
687
+ #: core/fields/flexible_content.php:336
688
+ msgid "Label"
689
+ msgstr "Label"
690
+
691
+ #: core/fields/flexible_content.php:346
692
+ msgid "Name"
693
+ msgstr "Naam"
694
+
695
+ #: core/fields/flexible_content.php:356
696
+ msgid "Display"
697
+ msgstr "Display"
698
+
699
+ #: core/fields/flexible_content.php:363
700
+ msgid "Table"
701
+ msgstr "Tabel"
702
+
703
+ #: core/fields/flexible_content.php:364 core/fields/repeater.php:534
704
+ msgid "Row"
705
+ msgstr "Rij"
706
+
707
+ #: core/fields/flexible_content.php:377 core/fields/repeater.php:327
708
+ #: core/views/meta_box_fields.php:60
709
+ msgid "Field Order"
710
+ msgstr "Veld volgorde"
711
+
712
+ #: core/fields/flexible_content.php:378 core/fields/flexible_content.php:425
713
+ #: core/fields/repeater.php:328 core/fields/repeater.php:375
714
+ #: core/views/meta_box_fields.php:61 core/views/meta_box_fields.php:107
715
+ msgid "Field Label"
716
+ msgstr "Veld label"
717
+
718
+ #: core/fields/flexible_content.php:379 core/fields/flexible_content.php:441
719
+ #: core/fields/repeater.php:329 core/fields/repeater.php:391
720
+ #: core/views/meta_box_fields.php:62 core/views/meta_box_fields.php:123
721
+ msgid "Field Name"
722
+ msgstr "Veld naam"
723
+
724
+ #: core/fields/flexible_content.php:388 core/fields/repeater.php:338
725
+ msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
726
+ msgstr "Geen velden. Klik op \"+ Nieuw sub veld\" button om je eerste veld te maken."
727
+
728
+ #: core/fields/flexible_content.php:404 core/fields/flexible_content.php:407
729
+ #: core/fields/repeater.php:353 core/fields/repeater.php:356
730
+ #: core/views/meta_box_fields.php:85 core/views/meta_box_fields.php:88
731
+ msgid "Edit this Field"
732
+ msgstr "Bewerk dit veld"
733
+
734
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
735
+ #: core/views/meta_box_fields.php:89
736
+ msgid "Read documentation for this field"
737
+ msgstr "Lees de documentatie bij dit veld"
738
+
739
+ #: core/fields/flexible_content.php:408 core/fields/repeater.php:357
740
+ #: core/views/meta_box_fields.php:89
741
+ msgid "Docs"
742
+ msgstr "Documentatie"
743
+
744
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
745
+ #: core/views/meta_box_fields.php:90
746
+ msgid "Duplicate this Field"
747
+ msgstr "Dupliceer dit veld"
748
+
749
+ #: core/fields/flexible_content.php:409 core/fields/repeater.php:358
750
+ #: core/views/meta_box_fields.php:90
751
+ msgid "Duplicate"
752
+ msgstr "Dupliceer"
753
+
754
+ #: core/fields/flexible_content.php:410 core/fields/repeater.php:359
755
+ #: core/views/meta_box_fields.php:91
756
+ msgid "Delete this Field"
757
+ msgstr "Verwijder dit veld"
758
+
759
+ #: core/fields/flexible_content.php:426 core/fields/repeater.php:376
760
+ #: core/views/meta_box_fields.php:108
761
+ msgid "This is the name which will appear on the EDIT page"
762
+ msgstr "De naam die verschijnt op het edit screen"
763
+
764
+ #: core/fields/flexible_content.php:442 core/fields/repeater.php:392
765
+ #: core/views/meta_box_fields.php:124
766
+ msgid "Single word, no spaces. Underscores and dashes allowed"
767
+ msgstr "Enkel woord, geen spaties. (Liggende) streepjes toegestaan."
768
+
769
+ #: core/fields/flexible_content.php:476 core/fields/repeater.php:467
770
+ msgid "Save Field"
771
+ msgstr "Veld opslaan"
772
+
773
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
774
+ #: core/views/meta_box_fields.php:190
775
+ msgid "Close Field"
776
+ msgstr "Veld sluiten"
777
+
778
+ #: core/fields/flexible_content.php:481 core/fields/repeater.php:472
779
+ msgid "Close Sub Field"
780
+ msgstr "Sub veld sluiten"
781
+
782
+ #: core/fields/flexible_content.php:495 core/fields/repeater.php:487
783
+ #: core/views/meta_box_fields.php:203
784
+ msgid "Drag and drop to reorder"
785
+ msgstr "Sleep om te sorteren"
786
+
787
+ #: core/fields/flexible_content.php:496 core/fields/repeater.php:488
788
+ msgid "+ Add Sub Field"
789
+ msgstr "+ Nieuw sub veld"
790
+
791
+ #: core/fields/flexible_content.php:503 core/fields/repeater.php:542
792
+ msgid "Button Label"
793
+ msgstr "Button label"
794
+
795
+ #: core/fields/gallery.php:25
796
+ msgid "Gallery"
797
+ msgstr "Galerij"
798
+
799
+ #: core/fields/gallery.php:70 core/fields/gallery.php:233
800
+ msgid "Alternate Text"
801
+ msgstr "Alternatieve tekst"
802
+
803
+ #: core/fields/gallery.php:74 core/fields/gallery.php:237
804
+ msgid "Caption"
805
+ msgstr "Onderschrift"
806
+
807
+ #: core/fields/gallery.php:78 core/fields/gallery.php:241
808
+ msgid "Description"
809
+ msgstr "Omschrijving"
810
+
811
+ #: core/fields/gallery.php:117 core/fields/image.php:243
812
+ msgid "Preview Size"
813
+ msgstr "Preview afmeting"
814
+
815
+ #: core/fields/gallery.php:118
816
+ msgid "Thumbnail is advised"
817
+ msgstr "Thumbnail wordt geadviseerd"
818
+
819
+ #: core/fields/gallery.php:179
820
+ msgid "Image Updated"
821
+ msgstr "Afbeelding bijgwerkt"
822
+
823
+ #: core/fields/gallery.php:262 core/fields/gallery.php:669
824
+ #: core/fields/image.php:193
825
+ msgid "Add Image"
826
+ msgstr "Voeg afbeelding toe"
827
+
828
+ #: core/fields/gallery.php:263
829
+ msgid "Grid"
830
+ msgstr "Grid"
831
+
832
+ #: core/fields/gallery.php:264
833
+ msgid "List"
834
+ msgstr "Lijst"
835
+
836
+ #: core/fields/gallery.php:266 core/fields/image.php:429
837
+ msgid "No images selected"
838
+ msgstr "Geen afbeeldingen geselecteerd"
839
+
840
+ #: core/fields/gallery.php:266
841
+ msgid "1 image selected"
842
+ msgstr "1 afbeelding geselecteerd"
843
+
844
+ #: core/fields/gallery.php:266
845
+ msgid "{count} images selected"
846
+ msgstr "{count} afbeeldingen geselecteerd"
847
+
848
+ #: core/fields/gallery.php:591
849
+ msgid "Added"
850
+ msgstr "Toegevoegd"
851
+
852
+ #: core/fields/gallery.php:611
853
+ msgid "Image already exists in gallery"
854
+ msgstr "Afbeelding bestaat al galerij"
855
+
856
+ #: core/fields/gallery.php:617
857
+ msgid "Image Added"
858
+ msgstr "Afbeelding toegevoegd"
859
+
860
+ #: core/fields/gallery.php:672 core/fields/image.php:557
861
+ msgid "Update Image"
862
+ msgstr "Update afbeelding"
863
+
864
+ #: core/fields/image.php:21
865
+ msgid "Image"
866
+ msgstr "Afbeelding"
867
+
868
+ #: core/fields/image.php:49
869
+ msgid "Image Updated."
870
+ msgstr "Afbeelding bijgewerkt."
871
+
872
+ #: core/fields/image.php:193
873
+ msgid "No image selected"
874
+ msgstr "Geen afbeelding geselecteerd"
875
+
876
+ #: core/fields/image.php:233
877
+ msgid "Image Object"
878
+ msgstr "Afbeelding object"
879
+
880
+ #: core/fields/image.php:234
881
+ msgid "Image URL"
882
+ msgstr "Afbeelding URL"
883
+
884
+ #: core/fields/image.php:235
885
+ msgid "Image ID"
886
+ msgstr "Afbeelding ID"
887
+
888
+ #: core/fields/image.php:525
889
+ msgid "Add selected Images"
890
+ msgstr "Voeg geselecteerde afbeeldingen toe"
891
+
892
+ #: core/fields/image.php:554
893
+ msgid "Select Image"
894
+ msgstr "Selecteer afbeelding"
895
+
896
+ #: core/fields/number.php:21
897
+ msgid "Number"
898
+ msgstr "Nummer"
899
+
900
+ #: core/fields/number.php:65 core/fields/radio.php:130
901
+ #: core/fields/select.php:190 core/fields/text.php:65
902
+ #: core/fields/textarea.php:62 core/fields/wysiwyg.php:81
903
+ msgid "Default Value"
904
+ msgstr "Standaard waarde"
905
+
906
+ #: core/fields/page_link.php:21
907
+ msgid "Page Link"
908
+ msgstr "Pagina link"
909
+
910
+ #: core/fields/page_link.php:70 core/fields/post_object.php:217
911
+ #: core/fields/relationship.php:386 core/views/meta_box_location.php:48
912
+ msgid "Post Type"
913
+ msgstr "Post type"
914
+
915
+ #: core/fields/page_link.php:98 core/fields/post_object.php:268
916
+ #: core/fields/select.php:204
917
+ msgid "Allow Null?"
918
+ msgstr "Mag leeg zijn?"
919
+
920
+ #: core/fields/page_link.php:107 core/fields/page_link.php:126
921
+ #: core/fields/post_object.php:277 core/fields/post_object.php:296
922
+ #: core/fields/select.php:213 core/fields/select.php:232
923
+ #: core/fields/wysiwyg.php:124 core/fields/wysiwyg.php:145
924
+ #: core/views/meta_box_fields.php:172
925
+ msgid "Yes"
926
+ msgstr "Ja"
927
+
928
+ #: core/fields/page_link.php:108 core/fields/page_link.php:127
929
+ #: core/fields/post_object.php:278 core/fields/post_object.php:297
930
+ #: core/fields/select.php:214 core/fields/select.php:233
931
+ #: core/fields/wysiwyg.php:125 core/fields/wysiwyg.php:146
932
+ #: core/views/meta_box_fields.php:173
933
+ msgid "No"
934
+ msgstr "Nee"
935
+
936
+ #: core/fields/page_link.php:117 core/fields/post_object.php:287
937
+ #: core/fields/select.php:223
938
+ msgid "Select multiple values?"
939
+ msgstr "Meerdere selecties mogelijk?"
940
+
941
+ #: core/fields/post_object.php:21
942
+ msgid "Post Object"
943
+ msgstr "Post object"
944
+
945
+ #: core/fields/post_object.php:245 core/fields/relationship.php:415
946
+ msgid "Filter from Taxonomy"
947
+ msgstr "Filter op taxonomy"
948
+
949
+ #: core/fields/radio.php:21
950
+ msgid "Radio Button"
951
+ msgstr "Radio button"
952
+
953
+ #: core/fields/radio.php:154
954
+ msgid "Vertical"
955
+ msgstr "Verticaal"
956
+
957
+ #: core/fields/radio.php:155
958
+ msgid "Horizontal"
959
+ msgstr "Horizontaal"
960
+
961
+ #: core/fields/relationship.php:21
962
+ msgid "Relationship"
963
+ msgstr "Relatie"
964
+
965
+ #: core/fields/relationship.php:288
966
+ msgid "Search"
967
+ msgstr "Zoeken"
968
+
969
+ #: core/fields/relationship.php:438
970
+ msgid "Maximum posts"
971
+ msgstr "Maximum aantal selecties"
972
+
973
+ #: core/fields/repeater.php:21
974
+ msgid "Repeater"
975
+ msgstr "Herhalen"
976
+
977
+ #: core/fields/repeater.php:66 core/fields/repeater.php:289
978
+ msgid "Add Row"
979
+ msgstr "Nieuwe regel"
980
+
981
+ #: core/fields/repeater.php:319
982
+ msgid "Repeater Fields"
983
+ msgstr "Velden herhalen"
984
+
985
+ #: core/fields/repeater.php:420 core/views/meta_box_fields.php:151
986
+ msgid "Field Instructions"
987
+ msgstr "Veld instructies"
988
+
989
+ #: core/fields/repeater.php:440
990
+ msgid "Column Width"
991
+ msgstr "Kolom breedte"
992
+
993
+ #: core/fields/repeater.php:441
994
+ msgid "Leave blank for auto"
995
+ msgstr "Laat leeg voor automatisch"
996
+
997
+ #: core/fields/repeater.php:495
998
+ msgid "Minimum Rows"
999
+ msgstr "Minimum aantal rijen"
1000
+
1001
+ #: core/fields/repeater.php:509
1002
+ msgid "Maximum Rows"
1003
+ msgstr "Maximum aantal rijen"
1004
+
1005
+ #: core/fields/repeater.php:533
1006
+ msgid "Table (default)"
1007
+ msgstr "Tabel (standaard)"
1008
+
1009
+ #: core/fields/select.php:21
1010
+ msgid "Select"
1011
+ msgstr "Selecteer"
1012
+
1013
+ #: core/fields/text.php:21
1014
+ msgid "Text"
1015
+ msgstr "Tekst"
1016
+
1017
+ #: core/fields/text.php:79 core/fields/textarea.php:76
1018
+ msgid "Formatting"
1019
+ msgstr "Omzetting"
1020
+
1021
+ #: core/fields/text.php:80
1022
+ msgid "Define how to render html tags"
1023
+ msgstr "Bepaal hoe HTML tags worden omgezet"
1024
+
1025
+ #: core/fields/text.php:89 core/fields/textarea.php:86
1026
+ msgid "None"
1027
+ msgstr "Geen"
1028
+
1029
+ #: core/fields/text.php:90 core/fields/textarea.php:88
1030
+ msgid "HTML"
1031
+ msgstr "HTML"
1032
+
1033
+ #: core/fields/textarea.php:21
1034
+ msgid "Text Area"
1035
+ msgstr "Tekstvlak"
1036
+
1037
+ #: core/fields/textarea.php:77
1038
+ msgid "Define how to render html tags / new lines"
1039
+ msgstr "Bepaal hoe HTML tags worden omgezet / nieuwe regels"
1040
+
1041
+ #: core/fields/textarea.php:87
1042
+ msgid "auto &lt;br /&gt;"
1043
+ msgstr "automatisch &lt;br /&gt;"
1044
+
1045
+ #: core/fields/true_false.php:21
1046
+ msgid "True / False"
1047
+ msgstr "Waar / niet waar"
1048
+
1049
+ #: core/fields/true_false.php:68
1050
+ msgid "Message"
1051
+ msgstr "Bericht"
1052
+
1053
+ #: core/fields/true_false.php:69
1054
+ msgid "eg. Show extra content"
1055
+ msgstr "bijv. Toon op homepage"
1056
+
1057
+ #: core/fields/wysiwyg.php:21
1058
+ msgid "Wysiwyg Editor"
1059
+ msgstr "Wysiwyg editor"
1060
+
1061
+ #: core/fields/wysiwyg.php:95
1062
+ msgid "Toolbar"
1063
+ msgstr "Toolbar"
1064
+
1065
+ #: core/fields/wysiwyg.php:106 core/views/meta_box_location.php:47
1066
+ msgid "Basic"
1067
+ msgstr "Basis"
1068
+
1069
+ #: core/fields/wysiwyg.php:114
1070
+ msgid "Show Media Upload Buttons?"
1071
+ msgstr "Toon media upload buttons?"
1072
+
1073
+ #: core/fields/wysiwyg.php:133
1074
+ msgid "Run filter \"the_content\"?"
1075
+ msgstr "Gebruik filter \"the_content\"?"
1076
+
1077
+ #: core/fields/wysiwyg.php:134
1078
+ msgid "Enable this filter to use shortcodes within the WYSIWYG field"
1079
+ msgstr "Activeer dit filter om shortcodes te gebruiken in het WYSIWYG veld"
1080
+
1081
+ #: core/fields/wysiwyg.php:135
1082
+ msgid "Disable this filter if you encounter recursive template problems with plugins / themes"
1083
+ msgstr "Schakel dit filter uit als je template problemen ondervindt met plugins/thema\'s."
1084
+
1085
+ #: core/fields/date_picker/date_picker.php:21
1086
+ msgid "Date Picker"
1087
+ msgstr "Datumprikker"
1088
+
1089
+ #: core/fields/date_picker/date_picker.php:106
1090
+ msgid "Save format"
1091
+ msgstr "Opslaan indeling"
1092
+
1093
+ #: core/fields/date_picker/date_picker.php:107
1094
+ msgid "This format will determin the value saved to the database and returned via the API"
1095
+ msgstr "De datum wordt in deze indeling opgeslagen in de database en teruggegeven door de API"
1096
+
1097
+ #: core/fields/date_picker/date_picker.php:108
1098
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1099
+ msgstr "\"yymmdd\" is de meest veelzijdige opslaan indeling. Lees meer op"
1100
+
1101
+ #: core/fields/date_picker/date_picker.php:108
1102
+ #: core/fields/date_picker/date_picker.php:118
1103
+ msgid "jQuery date formats"
1104
+ msgstr "jQuery datum format"
1105
+
1106
+ #: core/fields/date_picker/date_picker.php:116
1107
+ msgid "Display format"
1108
+ msgstr "Dispay indeling"
1109
+
1110
+ #: core/fields/date_picker/date_picker.php:117
1111
+ msgid "This format will be seen by the user when entering a value"
1112
+ msgstr "Deze indeling wordt gezien door de gebruiker wanneer datum wordt ingevuld"
1113
+
1114
+ #: core/fields/date_picker/date_picker.php:118
1115
+ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1116
+ msgstr "\"dd/mm/yy\" of \"mm/dd/yy\" zijn de meest gebruikte indelingen. Lees meer op"
1117
+
1118
+ #: core/views/meta_box_fields.php:26
1119
+ msgid "new_field"
1120
+ msgstr "nieuw_veld"
1121
+
1122
+ #: core/views/meta_box_fields.php:47
1123
+ msgid "Move to trash. Are you sure?"
1124
+ msgstr "Naar prullenbak. Zeker weten?"
1125
+
1126
+ #: core/views/meta_box_fields.php:64
1127
+ msgid "Field Key"
1128
+ msgstr "Veld key"
1129
+
1130
+ #: core/views/meta_box_fields.php:74
1131
+ msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
1132
+ msgstr "Geen velden. Klik op <strong>+ Nieuw veld</strong> button om je eerste veld te maken."
1133
+
1134
+ #: core/views/meta_box_fields.php:152
1135
+ msgid "Instructions for authors. Shown when submitting data"
1136
+ msgstr "Toelichting voor gebruikers. Wordt getoond bij invullen van het veld."
1137
+
1138
+ #: core/views/meta_box_fields.php:164
1139
+ msgid "Required?"
1140
+ msgstr "Verplicht?"
1141
+
1142
+ #: core/views/meta_box_fields.php:204
1143
+ msgid "+ Add Field"
1144
+ msgstr "+ Nieuw veld"
1145
+
1146
+ #: core/views/meta_box_location.php:35
1147
+ msgid "Rules"
1148
+ msgstr "Regels"
1149
+
1150
+ #: core/views/meta_box_location.php:36
1151
+ msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
1152
+ msgstr "Maak regels aan om te bepalen op welke edit screen jouw extra velden verschijnen"
1153
+
1154
+ #: core/views/meta_box_location.php:49
1155
+ msgid "Logged in User Type"
1156
+ msgstr "Gebruikersrol"
1157
+
1158
+ #: core/views/meta_box_location.php:51
1159
+ msgid "Page Specific"
1160
+ msgstr "Pagina specifiek"
1161
+
1162
+ #: core/views/meta_box_location.php:52
1163
+ msgid "Page"
1164
+ msgstr "Pagina"
1165
+
1166
+ #: core/views/meta_box_location.php:53
1167
+ msgid "Page Type"
1168
+ msgstr "Pagina type"
1169
+
1170
+ #: core/views/meta_box_location.php:54
1171
+ msgid "Page Parent"
1172
+ msgstr "Pagina hoofd"
1173
+
1174
+ #: core/views/meta_box_location.php:55
1175
+ msgid "Page Template"
1176
+ msgstr "Pagina template"
1177
+
1178
+ #: core/views/meta_box_location.php:57
1179
+ msgid "Post Specific"
1180
+ msgstr "Bericht specifiek"
1181
+
1182
+ #: core/views/meta_box_location.php:58
1183
+ msgid "Post"
1184
+ msgstr "Bericht"
1185
+
1186
+ #: core/views/meta_box_location.php:59
1187
+ msgid "Post Category"
1188
+ msgstr "Bericht categorie"
1189
+
1190
+ #: core/views/meta_box_location.php:60
1191
+ msgid "Post Format"
1192
+ msgstr "Bericht format"
1193
+
1194
+ #: core/views/meta_box_location.php:61
1195
+ msgid "Post Taxonomy"
1196
+ msgstr "Bericht taxonomy"
1197
+
1198
+ #: core/views/meta_box_location.php:63
1199
+ msgid "Other"
1200
+ msgstr "Anders"
1201
+
1202
+ #: core/views/meta_box_location.php:64
1203
+ msgid "Taxonomy (Add / Edit)"
1204
+ msgstr "Taxonomy (Nieuwe / bewerk)"
1205
+
1206
+ #: core/views/meta_box_location.php:65
1207
+ msgid "User (Add / Edit)"
1208
+ msgstr "Gebruiker (Nieuwe / bewerk)"
1209
+
1210
+ #: core/views/meta_box_location.php:66
1211
+ msgid "Media (Edit)"
1212
+ msgstr "Media (Bewerk)"
1213
+
1214
+ #: core/views/meta_box_location.php:96
1215
+ msgid "is equal to"
1216
+ msgstr "is gelijk aan"
1217
+
1218
+ #: core/views/meta_box_location.php:97
1219
+ msgid "is not equal to"
1220
+ msgstr "is niet gelijk aan"
1221
+
1222
+ #: core/views/meta_box_location.php:121
1223
+ msgid "match"
1224
+ msgstr "komt overeen met"
1225
+
1226
+ #: core/views/meta_box_location.php:127
1227
+ msgid "all"
1228
+ msgstr "allen"
1229
+
1230
+ #: core/views/meta_box_location.php:128
1231
+ msgid "any"
1232
+ msgstr "een"
1233
+
1234
+ #: core/views/meta_box_location.php:131
1235
+ msgid "of the above"
1236
+ msgstr "van hierboven"
1237
+
1238
+ #: core/views/meta_box_location.php:144
1239
+ msgid "Unlock options add-on with an activation code"
1240
+ msgstr "Ontgrendel opties add-on met een activatie code"
1241
+
1242
+ #: core/views/meta_box_options.php:23
1243
+ msgid "Order No."
1244
+ msgstr "Volgorde nummer"
1245
+
1246
+ #: core/views/meta_box_options.php:24
1247
+ msgid "Field groups are created in order <br />from lowest to highest"
1248
+ msgstr "Groepen worden gesorteerd van laag naar hoog."
1249
+
1250
+ #: core/views/meta_box_options.php:40
1251
+ msgid "Position"
1252
+ msgstr "Positie"
1253
+
1254
+ #: core/views/meta_box_options.php:60
1255
+ msgid "Style"
1256
+ msgstr "Stijl"
1257
+
1258
+ #: core/views/meta_box_options.php:80
1259
+ msgid "Hide on screen"
1260
+ msgstr "Verberg elementen"
1261
+
1262
+ #: core/views/meta_box_options.php:81
1263
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1264
+ msgstr "<b>Selecteer</b> elementen die <b>verborgen</b> worden op het edit screen"
1265
+
1266
+ #: core/views/meta_box_options.php:82
1267
+ msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1268
+ msgstr "Als er meerdere groepen verschijnen op een edit screen, zal de eerste groep worden gebruikt. (degene met het laagste volgorde nummer)"
1269
+
1270
+ #: core/views/meta_box_options.php:92
1271
+ msgid "Content Editor"
1272
+ msgstr "Content editor"
1273
+
1274
+ #: core/views/meta_box_options.php:93
1275
+ msgid "Excerpt"
1276
+ msgstr "Samenvatting"
1277
+
1278
+ #: core/views/meta_box_options.php:95
1279
+ msgid "Discussion"
1280
+ msgstr "Reageren"
1281
+
1282
+ #: core/views/meta_box_options.php:96
1283
+ msgid "Comments"
1284
+ msgstr "Reacties"
1285
+
1286
+ #: core/views/meta_box_options.php:97
1287
+ msgid "Slug"
1288
+ msgstr "Slug"
1289
+
1290
+ #: core/views/meta_box_options.php:98
1291
+ msgid "Author"
1292
+ msgstr "Auteur"
1293
+
1294
+ #: core/views/meta_box_options.php:99
1295
+ msgid "Format"
1296
+ msgstr "Format"
1297
+
1298
+ #: core/views/meta_box_options.php:100
1299
+ msgid "Featured Image"
1300
+ msgstr "Uitgelichte afbeelding"
1301
+
1302
+ #~ msgid "Add Fields to Edit Screens"
1303
+ #~ msgstr "Voeg velden toe aan edit screen"
1304
+
1305
+ #~ msgid "Customise the edit page"
1306
+ #~ msgstr "Bewerk de edit pagina"
1307
+
1308
+ #~ msgid "Navigate to the"
1309
+ #~ msgstr "Ga naar de"
1310
+
1311
+ #~ msgid "Import Tool"
1312
+ #~ msgstr "Importeer tool"
1313
+
1314
+ #~ msgid "and select WordPress"
1315
+ #~ msgstr "en selecteer WordPress"
1316
+
1317
+ #~ msgid "eg. dd/mm/yy. read more about"
1318
+ #~ msgstr "bijv. dd/mm/yyyy. Lees meer over"
1319
+
1320
+ #~ msgid ""
1321
+ #~ "Filter posts by selecting a post type<br />\n"
1322
+ #~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
1323
+ #~ msgstr ""
1324
+ #~ "Filter post type door te selecteren<br />\n"
1325
+ #~ "\t\t\t\tTip: selecteer 'alles' om alle posts van alle post type te tonen"
1326
+
1327
+ #~ msgid "Everything Fields deactivated"
1328
+ #~ msgstr "Everything Fields gedeactiveerd"
1329
+
1330
+ #~ msgid "Everything Fields activated"
1331
+ #~ msgstr "Everything Fields geactiveerd"
1332
+
1333
+ #~ msgid "Set to -1 for infinite"
1334
+ #~ msgstr "Plaats -1 voor oneindig"
1335
+
1336
+ #~ msgid "Row Limit"
1337
+ #~ msgstr "Rij limiet"
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.0
5
- Tested up to: 3.3
6
- Stable tag: 3.3
7
 
8
  Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
9
 
@@ -85,6 +85,13 @@ http://support.advancedcustomfields.com/
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
 
 
88
  = 3.4.1 =
89
  * [Added] Save user fields into wp_usermeta http://support.advancedcustomfields.com/discussion/2758/get_users-and-meta_key
90
  * [Added] Add compatibility with media tags plugin - http://support.advancedcustomfields.com/discussion/comment/7596#Comment_7596
2
  Contributors: Elliot Condon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.0
5
+ Tested up to: 3.4.2
6
+ Stable tag: 3.4.2
7
 
8
  Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress.Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker and more!
9
 
85
 
86
  == Changelog ==
87
 
88
+ = 3.4.2 =
89
+ * [Fixed] Fix API functions for 'user_$ID' post ID parameter
90
+ * [Added] Color Picker Field: Default Value
91
+ * [Added] Add custom save action for all saves - http://support.advancedcustomfields.com/discussion/2954/hook-on-save-options
92
+ * [Updated] Update Dutch translations
93
+ * [Updated] Update get_field_object function to allow for field_key / field_name + option to load_value
94
+
95
  = 3.4.1 =
96
  * [Added] Save user fields into wp_usermeta http://support.advancedcustomfields.com/discussion/2758/get_users-and-meta_key
97
  * [Added] Add compatibility with media tags plugin - http://support.advancedcustomfields.com/discussion/comment/7596#Comment_7596