Custom Post Type UI - Version 1.2.4

Version Description

  • Added: new CPTUI_VERSION constant to match naming of other current constants.
  • Added: CPTUI_VERSION constant to cptui.css string for cache busting.
Download this release

Release Info

Developer tw2113
Plugin Icon 128x128 Custom Post Type UI
Version 1.2.4
Comparing to
See all releases

Code changes from version 1.2.3 to 1.2.4

custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
- Version: 1.2.3
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: custom-post-type-ui
10
  Domain Path: /languages
@@ -16,7 +16,8 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  exit;
17
  }
18
 
19
- define( 'CPT_VERSION', '1.2.3' );
 
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
@@ -90,7 +91,7 @@ function cptui_add_styles() {
90
  return;
91
  }
92
 
93
- wp_enqueue_style( 'cptui-css', plugins_url( 'css/cptui.css', __FILE__ ) );
94
  }
95
  add_action( 'admin_enqueue_scripts', 'cptui_add_styles' );
96
 
@@ -386,12 +387,12 @@ function cptui_settings() { ?>
386
  * @since 1.0.0
387
  */
388
  do_action( 'cptui_main_page_start' ); ?>
389
- <h1><?php _e( 'Custom Post Type UI', 'custom-post-type-ui' ); ?> <?php echo CPT_VERSION; ?></h1>
390
 
391
  <div class="about-text cptui-about-text">
392
  <?php _e( 'Thank you for choosing Custom Post Type UI. We hope that your experience with our plugin provides efficiency and speed in creating post types and taxonomies, to better organize your content, without having to touch code.', 'custom-post-type-ui' ); ?>
393
  </div>
394
- <h2><?php printf( __( 'What\'s new in version %s', 'custom-post-type-ui' ), CPT_VERSION ); ?></h2>
395
  <div class="changelog about-integrations">
396
  <div class="cptui-feature feature-section col three-col">
397
 
@@ -484,7 +485,7 @@ function cptui_footer( $original = '' ) {
484
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
485
  __( 'Custom Post Type UI', 'custom-post-type-ui' )
486
  ),
487
- CPT_VERSION,
488
  '<a href="http://webdevstudios.com" target="_blank">WebDevStudios</a>'
489
  ).
490
  ' - '.
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
+ Version: 1.2.4
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: custom-post-type-ui
10
  Domain Path: /languages
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.2.4' ); // Left for legacy purposes.
20
+ define( 'CPTUI_VERSION', '1.2.4' );
21
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
22
 
23
  /**
91
  return;
92
  }
93
 
94
+ wp_enqueue_style( 'cptui-css', plugins_url( 'css/cptui.css', __FILE__ ), array(), CPTUI_VERSION );
95
  }
96
  add_action( 'admin_enqueue_scripts', 'cptui_add_styles' );
97
 
387
  * @since 1.0.0
388
  */
389
  do_action( 'cptui_main_page_start' ); ?>
390
+ <h1><?php _e( 'Custom Post Type UI', 'custom-post-type-ui' ); ?> <?php echo CPTUI_VERSION; ?></h1>
391
 
392
  <div class="about-text cptui-about-text">
393
  <?php _e( 'Thank you for choosing Custom Post Type UI. We hope that your experience with our plugin provides efficiency and speed in creating post types and taxonomies, to better organize your content, without having to touch code.', 'custom-post-type-ui' ); ?>
394
  </div>
395
+ <h2><?php printf( __( 'What\'s new in version %s', 'custom-post-type-ui' ), CPTUI_VERSION ); ?></h2>
396
  <div class="changelog about-integrations">
397
  <div class="cptui-feature feature-section col three-col">
398
 
485
  '<a target="_blank" href="http://wordpress.org/support/plugin/custom-post-type-ui">%s</a>',
486
  __( 'Custom Post Type UI', 'custom-post-type-ui' )
487
  ),
488
+ CPTUI_VERSION,
489
  '<a href="http://webdevstudios.com" target="_blank">WebDevStudios</a>'
490
  ).
491
  ' - '.
inc/post-types.php CHANGED
@@ -28,7 +28,7 @@ function cptui_post_type_enqueue_scripts() {
28
  $types[] = $type['name'];
29
  }*/
30
 
31
- wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
32
  wp_localize_script( 'cptui', 'cptui_type_data',
33
  array(
34
  'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
28
  $types[] = $type['name'];
29
  }*/
30
 
31
+ wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPTUI_VERSION, true );
32
  wp_localize_script( 'cptui', 'cptui_type_data',
33
  array(
34
  'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
inc/taxonomies.php CHANGED
@@ -23,7 +23,7 @@ function cptui_taxonomies_enqueue_scripts() {
23
  return;
24
  }
25
 
26
- wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
27
  wp_localize_script( 'cptui', 'cptui_tax_data',
28
  array(
29
  'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
23
  return;
24
  }
25
 
26
+ wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPTUI_VERSION, true );
27
  wp_localize_script( 'cptui', 'cptui_tax_data',
28
  array(
29
  'confirm' => __( 'Are you sure you want to delete this?', 'custom-post-type-ui' ),
languages/custom-post-type-ui-fr_FR.mo ADDED
Binary file
languages/custom-post-type-ui-fr_FR.po ADDED
@@ -0,0 +1,1470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Stable (latest release) in French (France)
2
+ # This file is distributed under the same license as the Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-03-14 17:30+0100\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: Poedit 1.8.7\n"
11
+ "Project-Id-Version: Stable (latest release)\n"
12
+ "POT-Creation-Date: \n"
13
+ "Last-Translator: \n"
14
+ "Language-Team: Gilles Le Pigocher <glepigocher@yahoo.fr>\n"
15
+ "Language: fr\n"
16
+
17
+ #: inc/listings.php:263
18
+ msgid "*Replace \"term_slug\" with the slug of the actual taxonomy term."
19
+ msgstr "*Remplace \"term_slug\" par l'identifiant du terme de taxonomie actuel."
20
+
21
+ #: inc/listings.php:284
22
+ msgid "No taxonomies registered for display. Visit %s to get started."
23
+ msgstr "Aucune taxonomie à afficher. Visiter %s pour commencer."
24
+
25
+ #: inc/post-types.php:439
26
+ msgid "(CPTUI default: True.)"
27
+ msgstr "(CPTUI défaut : Vrai)."
28
+
29
+ #: inc/post-types.php:440
30
+ msgid "WordPress core defaults to false. CPTUI defaults to true for user sake. Whether posts of this type should be shown in the admin UI and is publicly queryable."
31
+ msgstr "Valeurs par défaut de WordPress à Faux. Valeur par défaut de CPTUI à Vrai dans l'intérêt des utilisateurs. Seuls les articles de ce type devraient être affichés dans l'interface d'administration et seront publiquement visibles."
32
+
33
+ #: inc/post-types.php:478
34
+ msgid "Show in Nav Menus"
35
+ msgstr "Afficher dans les menus"
36
+
37
+ #: inc/post-types.php:479
38
+ msgid "(CPTUI default: true)"
39
+ msgstr "(CPTUI défaut : Vrai)."
40
+
41
+ #: inc/post-types.php:480
42
+ msgid "Whether post type is available for selection in navigation menus."
43
+ msgstr "Détermine si ce type d'articles sera disponible pour sélection dans les menus."
44
+
45
+ #: inc/post-types.php:498 inc/taxonomies.php:557
46
+ msgid "Show in REST API"
47
+ msgstr "Afficher dans l'API REST"
48
+
49
+ #: inc/post-types.php:500
50
+ msgid "Whether to show this post type data in the WP REST API."
51
+ msgstr "Détermine si les données de ce type d'articles doivent être affichées dans l'API REST."
52
+
53
+ #: inc/post-types.php:508 inc/taxonomies.php:567
54
+ msgid "REST API base slug"
55
+ msgstr "Identifiant API REST"
56
+
57
+ #: inc/post-types.php:509 inc/taxonomies.php:568
58
+ msgid "Slug to use in REST API URLs."
59
+ msgstr "Identifiant à utiliser dans les URLs de l'API REST."
60
+
61
+ #: inc/post-types.php:683
62
+ msgid "Custom Query Var Slug"
63
+ msgstr "Identifiant de requête"
64
+
65
+ #: inc/post-types.php:684
66
+ msgid "(default: post type slug) Query var needs to be true to use."
67
+ msgstr "(défaut : identifiant du type). Le paramètre Variable de requête doit être défini à Vrai."
68
+
69
+ #: inc/post-types.php:685
70
+ msgid "Custom query var slug to use instead of the default."
71
+ msgstr "Identifiant de requête personnalisé à utiliser à la place de la valeur par défaut."
72
+
73
+ #: inc/support.php:57
74
+ msgid "I have post types with spaces in their slug and can not successfully delete them. How can I fix that?"
75
+ msgstr "J'ai des types d'articles avec des espaces dans leur identifiant et je ne peux pas les supprimer. Comment corriger cela ?"
76
+
77
+ #: inc/support.php:58
78
+ msgid "Visit the Import/Export page and copy the export code into the import side on the left. Replace the space with an underscore and then click \"Import\". You should be able to delete the individual post types afterwards."
79
+ msgstr "Aller sur la page d'Importer/Exporter et copier le code exporté dans la partie Import sur la gauche. Remplacer l'espace par un caractère valide et cliquer sur \"Importer\". Par la suite, vous devriez être capable de supprimer les types d'articles individuellement."
80
+
81
+ #: inc/support.php:76
82
+ msgid "Do you have any recommendations for an alternative to Visual Composer?"
83
+ msgstr "Avez-vous une recommendation pour une alternative à Visual Composer ?"
84
+
85
+ #: inc/support.php:77
86
+ msgid "We recommend using VelocityPage."
87
+ msgstr "Nous recommendons d'utiliser VelocityPage."
88
+
89
+ #: inc/support.php:82
90
+ msgid "Is there any way to get CPTUI-registered post types working with Visual Composer Media Grid?"
91
+ msgstr "Y a t-il une possibilité pour que les types d'articles CPTUI soient reconnus afin de fonctionner avec Visual Composer Media Grid ?"
92
+
93
+ #: inc/support.php:84
94
+ msgid "Please see the solution from the following forum support thread."
95
+ msgstr "Veuillez consulter la solution dans le billet suivant sur le forum du support"
96
+
97
+ #: inc/taxonomies.php:167
98
+ msgid "Taxonomy Description. Describe what your taxonomy is used for."
99
+ msgstr "Description de la taxonomie. Décrire ce pourquoi votre taxonomie est utilisée."
100
+
101
+ #: inc/taxonomies.php:461
102
+ msgid "(default: taxonomy slug). Query var needs to be true to use."
103
+ msgstr "(défaut : identifiant de taxonomie). Le paramètre Variable de requête doit être défini à Vrai."
104
+
105
+ #: inc/taxonomies.php:559
106
+ msgid "Whether to show this taxonomy data in the WP REST API."
107
+ msgstr "Détermine si les données de cette taxonomie doivent être affichées dans l'API REST."
108
+
109
+ #: inc/listings.php:119
110
+ msgid "Archives file name examples."
111
+ msgstr "Exemples de nom de fichier archives."
112
+
113
+ #: inc/listings.php:125
114
+ msgid "Single Posts file name examples."
115
+ msgstr "Exemples de nom de fichier d'article seul."
116
+
117
+ #: inc/listings.php:134 inc/listings.php:267
118
+ msgid "Template hierarchy Theme Handbook"
119
+ msgstr "Hiérarchie des fichiers du thème dans le Manuel de Thème"
120
+
121
+ #: inc/listings.php:152
122
+ msgid "No post types registered for display. Visit %s to get started."
123
+ msgstr "Aucun type d'articles à afficher. Visiter %s pour commencer."
124
+
125
+ #: inc/listings.php:254
126
+ msgid "Archives"
127
+ msgstr "Archives"
128
+
129
+ #: classes/class.cptui_debug_info.php:186
130
+ msgid "CPTUI debug information for %s"
131
+ msgstr "Informations de débogage CPTUI pour %s"
132
+
133
+ #: custom-post-type-ui.php:395
134
+ msgid "What's new in version %s"
135
+ msgstr "Nouveautés de la version %s"
136
+
137
+ #: custom-post-type-ui.php:400
138
+ msgid "Updated internationalization"
139
+ msgstr "Mise à jour de l'internationalisation"
140
+
141
+ #: custom-post-type-ui.php:401
142
+ msgid "Our textdomain now matches the plugin slug from our WordPress.org repository to help aid in translating Custom Post Type UI"
143
+ msgstr "Notre texte de domaine correspond maintenant à l'identifiant du plugin de notre zone de dépot sur WordPress.org afin d'aider la traduction de Custom Post Type UI."
144
+
145
+ #: custom-post-type-ui.php:404
146
+ msgid "Debugging information"
147
+ msgstr "Informations de débogage"
148
+
149
+ #: custom-post-type-ui.php:405
150
+ msgid "We have added a new \"Debug Info\" tab to the Import/Export area to aid in debugging issues with Custom Post Type UI."
151
+ msgstr "Nous avons ajouté un nouvel onglet \"Informations de débogage\" dans la section Importer/Exporter afin d'aider la correction de bogues dans Custom Post Type UI."
152
+
153
+ #: custom-post-type-ui.php:408
154
+ msgid "Improved accessibility"
155
+ msgstr "Amélioration de l'accessibilité"
156
+
157
+ #: custom-post-type-ui.php:409
158
+ msgid "A lot of work was done in the areas of accessibility to help aid users who need it. If you have feedback on where it could be further improved, let us know."
159
+ msgstr "Un gros travail a été effectué concernant l'accessibilité afin d'aider les utilisateurs qui en ont besoin. N'hésitez pas à nous faire des suggestions d'amélioration."
160
+
161
+ #: custom-post-type-ui.php:412
162
+ msgid "WP REST API support"
163
+ msgstr "Support de l'API REST de WordPress"
164
+
165
+ #: custom-post-type-ui.php:413
166
+ msgid "We now have support for the required fields for the WP REST API. Now you can add your Custom Post Type UI post types and taxonomies to the available REST API lists."
167
+ msgstr "Nous avons maintenant les champs requis pour le support de l'API REST de WordPress. Vous pouvez dès à présent exposer vos types d'articles et taxonomies dans la liste des API REST."
168
+
169
+ #: custom-post-type-ui.php:416
170
+ msgid "More parameter support"
171
+ msgstr "Plus de paramètres"
172
+
173
+ #: custom-post-type-ui.php:417
174
+ msgid "We have added more parameters for greater customization of your post type and taxonomy settings."
175
+ msgstr "Nous avons ajouté plusieurs paramètres afin d'améliorer la personnalisation de vos types d'articles."
176
+
177
+ #: custom-post-type-ui.php:420
178
+ msgid "New individual \"Get Code\" sections"
179
+ msgstr "Nouvelles sections individuelles \"Code Source\""
180
+
181
+ #: custom-post-type-ui.php:421
182
+ msgid "The \"Get Code\" area now has support for copy/paste of individual post types and taxonomies."
183
+ msgstr "La section \"Code Source\" permet maintenant le copier/coller des types d'articles et des taxonomies individuellement."
184
+
185
+ #: custom-post-type-ui.php:424
186
+ msgid "Template hierarchy reference"
187
+ msgstr "Référence de la hiérarchie du thème"
188
+
189
+ #: custom-post-type-ui.php:425
190
+ msgid "To help aid your development with post types and taxonomies, we have added a quick reference list of common template files you can use in your theme. They will be listed on the \"Registered Types/Taxes\" screen."
191
+ msgstr "Afin de vous aider dans vos dévellopements de type d'articles et de taxonomies, nous avons ajouté une courte liste de référence des fichiers de thème que vous pouvez utiliser dans votre thème. Ils seront listés dans l'écran \"Références\"."
192
+
193
+ #: custom-post-type-ui.php:436
194
+ msgid "Professional WordPress Design and Development book cover."
195
+ msgstr "Couverture du livre Professional WordPress Design and Development."
196
+
197
+ #: custom-post-type-ui.php:444
198
+ msgid "Professional WordPress Pluing Development book cover."
199
+ msgstr "Couverture du livre Professional WordPress Pluing Development."
200
+
201
+ #: custom-post-type-ui.php:610
202
+ msgid "Debug Info"
203
+ msgstr "Informations de débogage"
204
+
205
+ #: inc/import_export.php:408
206
+ msgid "This will not export the associated posts or taxonomy terms, just the settings."
207
+ msgstr "Ceci n'exporte pas les articles associés ni les termes de taxonomie, mais uniquement les paramètres."
208
+
209
+ #: inc/import_export.php:512
210
+ msgid "%s Post Type"
211
+ msgstr "Type d'articles %s"
212
+
213
+ #: inc/import_export.php:529
214
+ msgid "%s Taxonomy"
215
+ msgstr "Taxonomie du type %s"
216
+
217
+ #: inc/import_export.php:549
218
+ msgid "Please provide an email address to send debug information to: "
219
+ msgstr "Veuillez fournir une adresse de courriel à laquelle envoyer les informations de débogage :"
220
+
221
+ #: inc/import_export.php:551
222
+ msgid "Send debug info"
223
+ msgstr "Envoyer les informations"
224
+
225
+ #: inc/listings.php:26 inc/listings.php:173
226
+ msgid "Template Hierarchy"
227
+ msgstr "Hiérarchie des fichiers du thème"
228
+
229
+ #: classes/class.cptui_debug_info.php:7
230
+ msgid "If you have sought support for Custom Post Type UI on the forums, you may be requested to send the information below to the plugin developer. Simply insert the email they provided in the input field at the bottom and click the \"Send debug info\" button. Only the data below will be sent to them."
231
+ msgstr "Si vous avez demandé de l'aide sur Custom Type UI dans les forums, vous pouvez être invité à envoyer les informations ci-dessous au développeur du plugin. Saisir simplement l'adresse de courriel qui vous a été fournie dans le champs en bas d'écran puis appuyer sur le bouton \"Envoyer les informations\". Seules les données affichées ci-dessous lui seront transmises."
232
+
233
+ #: inc/post-types.php:267
234
+ msgid "Custom menu name for your custom post type."
235
+ msgstr "Nom de menu personnalisé pour votre type d'articles."
236
+
237
+ #: inc/post-types.php:271
238
+ msgid "(e.g. My Movies)"
239
+ msgstr "(ex. : Mes films ou Films)"
240
+
241
+ #: inc/post-types.php:278 inc/taxonomies.php:279
242
+ msgid "All Items"
243
+ msgstr "Tous les éléments"
244
+
245
+ #: inc/post-types.php:283
246
+ msgid "(e.g. All Movies)"
247
+ msgstr "(ex. : Tous les films)"
248
+
249
+ #: inc/post-types.php:290
250
+ msgid "Add New"
251
+ msgstr "Ajouter"
252
+
253
+ #: inc/post-types.php:295
254
+ msgid "(e.g. Add New)"
255
+ msgstr "(ex. : Ajouter)"
256
+
257
+ #: inc/post-types.php:302 inc/taxonomies.php:315
258
+ msgid "Add New Item"
259
+ msgstr "Ajouter un élément"
260
+
261
+ #: inc/post-types.php:307
262
+ msgid "(e.g. Add New Movie)"
263
+ msgstr "(ex. : Ajouter un nouveau film)"
264
+
265
+ #: inc/post-types.php:319
266
+ msgid "(e.g. Edit)"
267
+ msgstr "(ex. : Modifier)"
268
+
269
+ #: inc/post-types.php:326 inc/taxonomies.php:288
270
+ msgid "Edit Item"
271
+ msgstr "Modifier un élement"
272
+
273
+ #: inc/post-types.php:331
274
+ msgid "(e.g. Edit Movie)"
275
+ msgstr "(ex. : Modifier un film)"
276
+
277
+ #: inc/post-types.php:338
278
+ msgid "New Item"
279
+ msgstr "Nouvel élément"
280
+
281
+ #: inc/post-types.php:343
282
+ msgid "(e.g. New Movie)"
283
+ msgstr "(ex. : Nouveau film)"
284
+
285
+ #: inc/post-types.php:350
286
+ msgid "View"
287
+ msgstr "Afficher"
288
+
289
+ #: inc/post-types.php:355
290
+ msgid "(e.g. View)"
291
+ msgstr "(ex. : Afficher)"
292
+
293
+ #: inc/post-types.php:362 inc/taxonomies.php:297
294
+ msgid "View Item"
295
+ msgstr "Afficher un élément"
296
+
297
+ #: inc/post-types.php:367
298
+ msgid "(e.g. View Movie)"
299
+ msgstr "(ex. : Afficher le film)"
300
+
301
+ #: inc/post-types.php:374
302
+ msgid "Search Item"
303
+ msgstr "Rechercher un élément"
304
+
305
+ #: inc/post-types.php:379
306
+ msgid "(e.g. Search Movie)"
307
+ msgstr "(ex. : Rechercher un film)"
308
+
309
+ #: inc/post-types.php:386
310
+ msgid "Not Found"
311
+ msgstr "Non trouvé"
312
+
313
+ #: inc/post-types.php:391
314
+ msgid "(e.g. No Movies found)"
315
+ msgstr "(ex. : Aucun film trouvé)"
316
+
317
+ #: inc/post-types.php:398
318
+ msgid "Not Found in Trash"
319
+ msgstr "Absent de la corbeille"
320
+
321
+ #: inc/post-types.php:403
322
+ msgid "(e.g. No Movies found in Trash)"
323
+ msgstr "(ex. : Aucun film trouvé dans la corbeille)"
324
+
325
+ #: inc/post-types.php:410
326
+ msgid "Parent"
327
+ msgstr "Parent"
328
+
329
+ #: inc/post-types.php:415
330
+ msgid "(e.g. Parent Movie)"
331
+ msgstr "(ex. : Film parent)"
332
+
333
+ #: inc/post-types.php:429 inc/post-types.php:449 inc/post-types.php:469
334
+ #: inc/post-types.php:489 inc/post-types.php:526 inc/post-types.php:558
335
+ #: inc/post-types.php:589 inc/post-types.php:609 inc/post-types.php:641
336
+ #: inc/post-types.php:661 inc/post-types.php:716 inc/taxonomies.php:408
337
+ #: inc/taxonomies.php:425 inc/taxonomies.php:442 inc/taxonomies.php:468
338
+ #: inc/taxonomies.php:494 inc/taxonomies.php:511 inc/taxonomies.php:528
339
+ #: inc/taxonomies.php:548
340
+ msgid "False"
341
+ msgstr "Faux"
342
+
343
+ #: inc/post-types.php:430 inc/post-types.php:450 inc/post-types.php:470
344
+ #: inc/post-types.php:490 inc/post-types.php:527 inc/post-types.php:559
345
+ #: inc/post-types.php:590 inc/post-types.php:610 inc/post-types.php:642
346
+ #: inc/post-types.php:662 inc/post-types.php:717 inc/taxonomies.php:409
347
+ #: inc/taxonomies.php:426 inc/taxonomies.php:443 inc/taxonomies.php:469
348
+ #: inc/taxonomies.php:495 inc/taxonomies.php:512 inc/taxonomies.php:529
349
+ #: inc/taxonomies.php:549
350
+ msgid "True"
351
+ msgstr "Vrai"
352
+
353
+ #: inc/post-types.php:438
354
+ msgid "Public"
355
+ msgstr "Public"
356
+
357
+ #: inc/post-types.php:459 inc/post-types.php:619 inc/post-types.php:651
358
+ #: inc/post-types.php:671 inc/post-types.php:725 inc/taxonomies.php:435
359
+ #: inc/taxonomies.php:452 inc/taxonomies.php:478
360
+ msgid "(default: True)"
361
+ msgstr "(défaut : Vrai)"
362
+
363
+ #: inc/post-types.php:458 inc/taxonomies.php:434
364
+ msgid "Show UI"
365
+ msgstr "Afficher l'interface"
366
+
367
+ #: inc/post-types.php:460
368
+ msgid "Whether to generate a default UI for managing this post type."
369
+ msgstr "Détermine s'il faut générer une interface utilisateur par défaut pour la gestion de ce type d'articles."
370
+
371
+ #: inc/post-types.php:519
372
+ msgid "Has Archive"
373
+ msgstr "Archives"
374
+
375
+ #: inc/post-types.php:520
376
+ msgid "Whether the post type will have a post type archive URL."
377
+ msgstr "Détermine si le type d'articles aura une URL d'archive."
378
+
379
+ #: inc/post-types.php:521
380
+ msgid "If left blank, the archive slug will default to the post type slug."
381
+ msgstr "Si laissé vide, l'identifiant d'archive utilisera celui du type par défaut."
382
+
383
+ #: inc/post-types.php:499 inc/post-types.php:535 inc/post-types.php:568
384
+ #: inc/post-types.php:599 inc/taxonomies.php:418 inc/taxonomies.php:538
385
+ #: inc/taxonomies.php:558
386
+ msgid "(default: False)"
387
+ msgstr "(défaut : Faux)"
388
+
389
+ #: inc/post-types.php:547
390
+ msgid "Slug to be used for archive URL."
391
+ msgstr "Identifiant à utiliser pour l'URL d'archive."
392
+
393
+ #: inc/post-types.php:567
394
+ msgid "Exclude From Search"
395
+ msgstr "Exclure de la recherche"
396
+
397
+ #: inc/post-types.php:569
398
+ msgid "Whether to exclude posts with this post type from front end search results."
399
+ msgstr "Détemine si les articles de ce type seront exclus des résultats de recherche."
400
+
401
+ #: inc/post-types.php:580
402
+ msgid "Capability Type"
403
+ msgstr "Type de capacité"
404
+
405
+ #: inc/post-types.php:581
406
+ msgid "The post type to use for checking read, edit, and delete capabilities"
407
+ msgstr "Type d'articles à utiliser pour vérifier les capacités de lecture, modification et suppression."
408
+
409
+ #: inc/post-types.php:598 inc/taxonomies.php:417
410
+ msgid "Hierarchical"
411
+ msgstr "Hiérarchique"
412
+
413
+ #: inc/post-types.php:600
414
+ msgid "Whether the post type can have parent-child relationships"
415
+ msgstr "Détermine si le type d'articles peut avoir des relations parent-enfants."
416
+
417
+ #: inc/post-types.php:618 inc/taxonomies.php:477
418
+ msgid "Rewrite"
419
+ msgstr "Réécriture"
420
+
421
+ #: inc/post-types.php:620
422
+ msgid "Whether or not WordPress should use rewrites for this post type"
423
+ msgstr "Détermine si WordPress doit utiliser les réécritures pour ce type d'articles."
424
+
425
+ #: inc/post-types.php:631 inc/taxonomies.php:488
426
+ msgid "Custom Rewrite Slug"
427
+ msgstr "Réécriture personnalisée"
428
+
429
+ #: inc/post-types.php:632
430
+ msgid "(default: post type slug)"
431
+ msgstr "(défaut : identifiant du type d'articles)"
432
+
433
+ #: inc/post-types.php:633
434
+ msgid "Custom post type slug to use instead of the default."
435
+ msgstr "Indentifiant personnalisé du type à utiliser à la place de celui par défaut."
436
+
437
+ #: inc/post-types.php:650
438
+ msgid "With Front"
439
+ msgstr "Avec préfixe"
440
+
441
+ #: inc/post-types.php:652 inc/taxonomies.php:505
442
+ msgid "Should the permastruct be prepended with the front base."
443
+ msgstr "Détermine si la permastructure doit être préxifée."
444
+
445
+ #: inc/post-types.php:670 inc/taxonomies.php:451
446
+ msgid "Query Var"
447
+ msgstr "Variable de requête"
448
+
449
+ #: inc/post-types.php:672
450
+ msgid "Sets the query_var key for this post type."
451
+ msgstr "Définir la clef query_var pour ce type d'articles."
452
+
453
+ #: inc/post-types.php:692
454
+ msgid "Menu Position"
455
+ msgstr "Position du menu"
456
+
457
+ #: inc/post-types.php:693
458
+ msgid "The position in the menu order the post type should appear. show_in_menu must be true."
459
+ msgstr "Position à laquelle le type d'articles devrait apparaître dans le menu. Le paramètre Afficher dans le menu doit être à Vrai."
460
+
461
+ #: inc/post-types.php:694
462
+ msgid "See <a href=\"http://codex.wordpress.org/Function_Reference/register_post_type#Parameters\" target=\"_blank\">Available options</a> in the \"menu_position\" section. Range of 5-100"
463
+ msgstr "Voir <a href=\"http://codex.wordpress.org/Function_Reference/register_post_type#Parameters\" target=\"_blank\">les options possibles</a> dans la section \"menu_position\". Valeur entre 5 et 100."
464
+
465
+ #: inc/post-types.php:709
466
+ msgid "Show in Menu"
467
+ msgstr "Afficher dans le menu"
468
+
469
+ #: inc/post-types.php:710
470
+ msgid "Whether to show the post type in the admin menu and where to show that menu."
471
+ msgstr "Détermine si le type d'articles doit être affiché dans le menu d'administration et sont emplacement dans celui-ci."
472
+
473
+ #: inc/post-types.php:711
474
+ msgid "\"Show UI\" must be \"true\". If an existing top level page such as \"tools.php\" is indicated for second input, post type will be sub menu of that."
475
+ msgstr "Le paramètre Afficher l'interface doit être Vrai. Si une page de niveau supérieur telle que \"tools.php\" est indiquée, le type d'articles sera un sous menu de celle-ci."
476
+
477
+ #: inc/post-types.php:737
478
+ msgid "Top-level page file name to make post type a sub-menu of."
479
+ msgstr "Nom de fichier de la page de niveau supérieur à laquelle rattacher le type d'articles."
480
+
481
+ #: inc/post-types.php:749
482
+ msgid "Menu Icon"
483
+ msgstr "Icône de menu"
484
+
485
+ #: inc/post-types.php:750
486
+ msgid "(Full URL for icon or Dashicon class)"
487
+ msgstr "(URL complète de l'icône ou la classe Dashicon)"
488
+
489
+ #: inc/post-types.php:751
490
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
491
+ msgstr "URL de l'image à utiliser comme icône de menu ou sinon la classe Dashicon."
492
+
493
+ #: inc/post-types.php:764
494
+ msgid "Title"
495
+ msgstr "Titre"
496
+
497
+ #: inc/post-types.php:765
498
+ msgid "Adds the title meta box when creating content for this custom post type"
499
+ msgstr "Ajoute une boîte de méta donnée pour le titre lors de la création de contenu pour ce type d'articles."
500
+
501
+ #: inc/post-types.php:779
502
+ msgid "Editor"
503
+ msgstr "Éditeur"
504
+
505
+ #: inc/post-types.php:780
506
+ msgid "Adds the content editor meta box when creating content for this custom post type"
507
+ msgstr "Ajoute une boîte de méta donnée pour l'éditeur de contenu lors de la création de contenu pour ce type d'articles."
508
+
509
+ #: inc/post-types.php:794
510
+ msgid "Excerpt"
511
+ msgstr "Extrait"
512
+
513
+ #: inc/post-types.php:795
514
+ msgid "Adds the excerpt meta box when creating content for this custom post type"
515
+ msgstr "Ajoute"
516
+
517
+ #: inc/post-types.php:809
518
+ msgid "Trackbacks"
519
+ msgstr "Rétroliens"
520
+
521
+ #: inc/post-types.php:810
522
+ msgid "Adds the trackbacks meta box when creating content for this custom post type"
523
+ msgstr "Ajoute une boîte de méta donnée pour les rétroliens lors de la création de contenu pour ce type d'articles."
524
+
525
+ #: inc/post-types.php:824
526
+ msgid "Custom Fields"
527
+ msgstr "Champs personnalisés"
528
+
529
+ #: inc/post-types.php:825
530
+ msgid "Adds the custom fields meta box when creating content for this custom post type"
531
+ msgstr "Ajoute une boîte de méta donnée pour les champs personnalisés lors de la création de contenu pour ce type d'articles."
532
+
533
+ #: inc/post-types.php:839
534
+ msgid "Comments"
535
+ msgstr "Commentaires"
536
+
537
+ #: inc/post-types.php:840
538
+ msgid "Adds the comments meta box when creating content for this custom post type"
539
+ msgstr "Ajoute une boîte de méta donnée pour les commentaires lors de la création de contenu pour ce type d'articles."
540
+
541
+ #: inc/post-types.php:854
542
+ msgid "Revisions"
543
+ msgstr "Révisions"
544
+
545
+ #: inc/post-types.php:855
546
+ msgid "Adds the revisions meta box when creating content for this custom post type"
547
+ msgstr "Ajoute une boîte de méta donnée pour les révisions lors de la création de contenu pour ce type d'articles."
548
+
549
+ #: inc/post-types.php:869
550
+ msgid "Featured Image"
551
+ msgstr "Image à la Une"
552
+
553
+ #: inc/post-types.php:870
554
+ msgid "Adds the featured image meta box when creating content for this custom post type"
555
+ msgstr "Ajoute une boîte de méta donnée pour l'image à la Une lors de la création de contenu pour ce type d'articles."
556
+
557
+ #: inc/post-types.php:884
558
+ msgid "Author"
559
+ msgstr "Auteur"
560
+
561
+ #: inc/post-types.php:885
562
+ msgid "Adds the author meta box when creating content for this custom post type"
563
+ msgstr "Ajoute une boîte de méta donnée pour l'auteur lors de la création de contenu pour ce type d'articles."
564
+
565
+ #: inc/post-types.php:899
566
+ msgid "Page Attributes"
567
+ msgstr "Attributs de page"
568
+
569
+ #: inc/post-types.php:900
570
+ msgid "Adds the page attribute meta box when creating content for this custom post type"
571
+ msgstr "Ajoute une boîte de méta donnée pour les attributs de page lors de la création de contenu pour ce type d'articles."
572
+
573
+ #: inc/post-types.php:914
574
+ msgid "Post Formats"
575
+ msgstr "Formats d'article"
576
+
577
+ #: inc/post-types.php:915
578
+ msgid "Adds post format support"
579
+ msgstr "Ajoute le support des formats d'article."
580
+
581
+ #: inc/post-types.php:920
582
+ msgid "Use the option below to explicitly set \"supports\" to false."
583
+ msgstr "Utiliser l'option ci-dessous pour explicitement désactiver toutes les fonctions supportées."
584
+
585
+ #: inc/post-types.php:928
586
+ msgid "None"
587
+ msgstr "Aucun"
588
+
589
+ #: inc/post-types.php:929
590
+ msgid "Remove all support features"
591
+ msgstr "Désactive toutes les fonctions supportés"
592
+
593
+ #: inc/post-types.php:936
594
+ msgid "Custom \"Supports\""
595
+ msgstr "Fonctions \"personnalisées\""
596
+
597
+ #: inc/post-types.php:937
598
+ msgid "Use this input to register custom \"supports\" values, separated by commas."
599
+ msgstr "Utiliser cette zone de saisie pour définir les noms des fonctions personnalisés, séparées par des virgules."
600
+
601
+ #: inc/post-types.php:943
602
+ msgid "Provide custom support slugs here."
603
+ msgstr "Définir ici les identifiants des fonctions personnalisées."
604
+
605
+ #: inc/post-types.php:949
606
+ msgid "Built-in Taxonomies"
607
+ msgstr "Taxonomies intégrées"
608
+
609
+ #: inc/post-types.php:978 inc/taxonomies.php:200
610
+ msgid "Adds %s support"
611
+ msgstr "Ajoute le support de %s"
612
+
613
+ #: inc/post-types.php:1085
614
+ msgid "Please provide a post type to delete"
615
+ msgstr "Veuillez fournir le type d'articles à supprimer"
616
+
617
+ #: inc/post-types.php:1145
618
+ msgid "Please provide a post type name"
619
+ msgstr "Veuillez fournir le nom du type d'articles"
620
+
621
+ #: inc/post-types.php:1169
622
+ msgid "Please do not use quotes in post type names or rewrite slugs"
623
+ msgstr "Veuillez ne pas utiliser de guillemets dans les noms de type d'articles ou d'identifiant de réécriture"
624
+
625
+ #: inc/post-types.php:1176
626
+ msgid "Please choose a different post type name. %s is already registered."
627
+ msgstr "Veuillez choisir un autre nom de type d'articles. %s est déjà utilisé."
628
+
629
+ #: inc/support.php:45
630
+ msgid "Custom Post Type UI Support"
631
+ msgstr "Support de Custom Post Type UI"
632
+
633
+ #: inc/support.php:47
634
+ msgid "Please note that this plugin will NOT handle display of registered post types or taxonomies in your current theme. It will simply register them for you. If all else fails, visit us on the %s"
635
+ msgstr "Veuillez noter que cette extension ne gère PAS l'affichage des types d'articles ou taxonomies définies dans votre thème actuel. Il se contente de les définir à votre place. Si tout le reste échoue, visitez %s"
636
+
637
+ #: inc/support.php:48
638
+ msgid "Support Forums"
639
+ msgstr "Forums de support"
640
+
641
+ #: inc/support.php:54
642
+ msgid "General"
643
+ msgstr "Général"
644
+
645
+ #: inc/support.php:62
646
+ msgid "I changed my custom post type name and now I can not get to my posts. How do I get them back?"
647
+ msgstr "J'ai modifié le nom de mon type d'articles personnalisé et maintenant je ne peux plus accéder à mes articles. Comment puis-je les retrouver ?"
648
+
649
+ #: inc/support.php:63
650
+ msgid "You can either change the custom post type name back to the original name or try the Post Type Switcher plugin"
651
+ msgstr "Vous pouvez rétablir le nom du type à sa précédente valeur ou bien essayer d'utiliser l'extension Post Type Switcher"
652
+
653
+ #: inc/support.php:68
654
+ msgid "I changed my custom post type or taxonomy slug and now I have duplicates shown. How do I remove the duplicate?"
655
+ msgstr "J'ai modifié l'identifiant de mon type d'articles ou de ma taxonomie et maintenant j'ai des doublons qui s'affichent. Comment puis-je les supprimer ?"
656
+
657
+ #: inc/support.php:69
658
+ msgid "Renaming the slug for a post type or taxonomy creates a new entry in our saved option which gets registered as its own post type or taxonomy. Since the settings will be mirrored from the previous slug, you will just need to delete the previous version's entry."
659
+ msgstr "Renommer l'identifiant pour un type d'articles ou une taxonomie crée une nouvelle entrée de vos options enregistrées sous son propre type d'article ou de taxonomie. Compte tenu que les paramètres sont copiés depuis l'identifiant précédent, vous avez juste à supprimer les versions précédentes"
660
+
661
+ #: inc/support.php:72
662
+ msgid "I have added post thumbnail and/or post format support to my post type, but those do not appear when adding a post type post."
663
+ msgstr "J'ai ajouté une vignette et/ou le support d'un format d'articles à mon type d'articles, mais ils n'apparaisent pas lorsque j'ajoute un élément de ce type."
664
+
665
+ #: inc/support.php:73
666
+ msgid "Make sure your theme has post \"post-thumbnails\" theme support enabled."
667
+ msgstr "Assurez-vous que votre thème dispose du support des vignettes d'articles et qu'il soit activé"
668
+
669
+ #: inc/support.php:91
670
+ msgid "Front-end Display"
671
+ msgstr "Affichage client"
672
+
673
+ #: inc/support.php:94
674
+ msgid "What template files should I edit to alter my post type display?"
675
+ msgstr "Quels fichiers de thème devrais-je modifier pour changer l'affichage de mon type d'articles ?"
676
+
677
+ #: inc/support.php:95
678
+ msgid "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for details about available templates."
679
+ msgstr "Veuillez visiter la page %sHiérarchie des fichiers de thème%s dans le codex WordPress pour les détails concernant les thèmes disponibles."
680
+
681
+ #: inc/support.php:102
682
+ msgid "How do I display my custom post type on my site?"
683
+ msgstr "Comment puis-je afficher mon type d'articles personnalisé sur mon site ?"
684
+
685
+ #: inc/support.php:103
686
+ msgid "You will need to utilize the %sWP_Query%s class to handle display in custom locations. If you have set the post type to have archives, the archive url should be something like \"http://www.mysite.com/post-type-slug\""
687
+ msgstr "Vous devez utiliser la classe %sWP_Query%s pour gérer l'affichage dans les zones personnalisées. Si vous avez défini que votre type supporte les archives, l'url pourrait ressembler à \"http://www.monsite.fr/identifiant-type-article\"."
688
+
689
+ #: inc/support.php:109
690
+ msgid "I have added categories and tags to my custom post type, but they do not appear in the archives."
691
+ msgstr "J'ai ajouté les catégories et les étiquettes à mon type d'articles personnalisé, mais elles n'apparaisent pas dans les archives."
692
+
693
+ #: inc/support.php:110
694
+ msgid "You will need to add your newly created post type to the types that the category and tag archives query for. You can see a tutorial on how to do that at %s"
695
+ msgstr "Vous devez ajouter votre type nouvellement créé aux types que les archives peuvent interroger par catégorie et étiquette. Pour ce faire, vous pouvez consulter un tutoriel (Anglais) à l'adresse %s."
696
+
697
+ #: inc/support.php:119
698
+ msgid "Advanced"
699
+ msgstr "Avancé"
700
+
701
+ #: inc/support.php:122
702
+ msgid "How do I add custom metaboxes to my post type?"
703
+ msgstr "Comment ajouter des boîtes de méta données à mon type d'articles ?"
704
+
705
+ #: inc/support.php:124
706
+ msgid "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and Fields for WordPress\". Both are maintained by WebDevStudios."
707
+ msgstr "Nous vous recommendons de tester %s, la dernière version de \"Custom Metaboxes and Fields for WordPress\". Les deux sont maintenus par WebDevStudios."
708
+
709
+ #: inc/support.php:130
710
+ msgid "How do I add a newly registered taxonomy to a post type that already exists?"
711
+ msgstr "Comment puis-je ajouter une nouvelle taxonomie à un type d'articles déjà existant ?"
712
+
713
+ #: inc/support.php:132
714
+ msgid "Check out the %s function for documentation and usage examples."
715
+ msgstr "Consulter la fonction %s pour la documentation et des exemples d'utilisation."
716
+
717
+ #: inc/support.php:138
718
+ msgid "Post relationships?"
719
+ msgstr "Comment gérer les relations entre articles ?"
720
+
721
+ #: inc/support.php:139
722
+ msgid "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s plugin that should be a good start."
723
+ msgstr "%s a un excellent %sarticle%s (Anglais) d'introduction à l'extension %sPosts 2 Posts%s qui devrait être un bon début."
724
+
725
+ #: inc/support.php:148
726
+ msgid "Is there any function reference list?"
727
+ msgstr "Y a t-il une liste de référence des fonctions ?"
728
+
729
+ #: inc/support.php:149
730
+ msgid "%s has compiled a nice list of functions used by our plugin. Note not all will be useful as they are attached to hooks."
731
+ msgstr "%s a compilé une belle liste de fonctions utilisées par notre extension. Toutes ne seront pas utiles car certaines sont attachées à des points d'encrage de code (hooks)."
732
+
733
+ #: inc/support.php:153
734
+ msgid "How do I filter the \"enter title here\" text in the post editor screen?"
735
+ msgstr "Comment filtrer le texte \"Saisissez votre titre ici\" dans l'écran de saisie de l'article ?"
736
+
737
+ #: inc/support.php:154
738
+ msgid "Change text inside the post/page editor title field. Should be able to adapt as necessary."
739
+ msgstr "Changer le texte à l'intérieur du champ de titre de l'éditeur d'article/page. Vous devriez être capable de l'adapter si nécessaire."
740
+
741
+ #: inc/taxonomies.php:89
742
+ msgid "DO NOT EDIT the taxonomy slug unless necessary. Changing that value registers a new taxonomy entry for your install."
743
+ msgstr "NE PAS MODIFIER l'identifiant de taxonomie sauf absolue nécessité. Modifier cette valeur revient à créer une nouvelle taxonomie pour votre installation."
744
+
745
+ #: inc/taxonomies.php:129
746
+ msgid "Taxonomy Slug"
747
+ msgstr "Identifiant"
748
+
749
+ #: inc/taxonomies.php:130
750
+ msgid "(e.g. actor)"
751
+ msgstr "(ex. : acteur)"
752
+
753
+ #: inc/taxonomies.php:131
754
+ msgid "The taxonomy name. Used to retrieve custom taxonomy content. Should be short and unique"
755
+ msgstr "Le nom de la taxonomie. Utilisé pour retrouver le contenu personnalisé de la taxonomie. Il devrait être court et unique."
756
+
757
+ #: inc/taxonomies.php:139 inc/taxonomies.php:269
758
+ msgid "(e.g. Actors)"
759
+ msgstr "(ex. : Acteurs)"
760
+
761
+ #: inc/taxonomies.php:141
762
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
763
+ msgstr "Libellé de taxonomie. Utilisé dans le menu d'administration pour afficher la taxonomie personnalisée."
764
+
765
+ #: inc/taxonomies.php:148
766
+ msgid "(e.g. Actor)"
767
+ msgstr "(ex. : Acteur)"
768
+
769
+ #: inc/taxonomies.php:150
770
+ msgid "Taxonomy Singular label. Used in WordPress when a singular label is needed."
771
+ msgstr "Libellé de taxonomie au singulier. Utilisé dans WordPress lorsque singulier du nom doit être affiché."
772
+
773
+ #: inc/taxonomies.php:170
774
+ msgid "Attach to Post Type"
775
+ msgstr "Attacher au type d'articles"
776
+
777
+ #: inc/taxonomies.php:220
778
+ msgid "Save Taxonomy"
779
+ msgstr "Enregister la taxonomie"
780
+
781
+ #: inc/taxonomies.php:231
782
+ msgid "Delete Taxonomy"
783
+ msgstr "Supprimer la taxonomie"
784
+
785
+ #: inc/taxonomies.php:243
786
+ msgid "Add Taxonomy"
787
+ msgstr "Ajouter la taxonomie"
788
+
789
+ #: inc/taxonomies.php:252
790
+ msgid "Taxonomy names should have %smax 32 characters%s, and only contain alphanumeric, lowercase, characters, underscores in place of spaces, and letters that do not have accents."
791
+ msgstr "Les noms de taxonomie doivent avoir %sau plus 32 caractères%s, et contenir uniquement des lettres alphanumériques, minuscules, des soulignés à la place des espaces, et des lettres sans accents."
792
+
793
+ #: inc/taxonomies.php:253
794
+ msgid "If you are unfamiliar with the advanced taxonomy settings, just fill in the %sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the taxonomy name. Hover over the question marks for more details."
795
+ msgstr "Si vous n'êtes pas familier avec les paramètres avancés de taxonomie, saisir l'%sIdentifiant%s de la taxonomie et définir l'option %sAttacher au type d'articles%s. Les paramètres restant utiliseront les valeurs par défaut. Si les libellés ne sont pas saisis, ils seront automatiquement créés en se basant sur le nom de la taxonomie. Survoler les points d'interrogation pour plus d'information."
796
+
797
+ #: inc/taxonomies.php:254
798
+ msgid "Deleting custom taxonomies do %sNOT%s delete terms added to those taxonomies. You can recreate your taxonomies and the terms will return. Changing the name, after adding terms to the taxonomy, will not update the terms in the database."
799
+ msgstr "La suppression des taxonomies personnalisées ne supprime %sPAS%s les termes ajoutés à ces taxonomies. Vous pouvez recréer vos taxonomies et les termes réapparaîtrons. La modification du nom, après l'ajout de termes à la taxonomie, ne modifiera pas les termes dans la base de données."
800
+
801
+ #: inc/taxonomies.php:271 inc/taxonomies.php:280 inc/taxonomies.php:289
802
+ #: inc/taxonomies.php:298 inc/taxonomies.php:307 inc/taxonomies.php:316
803
+ #: inc/taxonomies.php:325 inc/taxonomies.php:334 inc/taxonomies.php:343
804
+ #: inc/taxonomies.php:352 inc/taxonomies.php:361 inc/taxonomies.php:370
805
+ #: inc/taxonomies.php:379 inc/taxonomies.php:388 inc/taxonomies.php:397
806
+ msgid "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
807
+ msgstr "Libellé de taxonomie personnalisée. Utilisé dans le menu d'administration pour afficher les taxonomies."
808
+
809
+ #: inc/taxonomies.php:278
810
+ msgid "(e.g. All Actors)"
811
+ msgstr "(ex. : Tous les acteurs)"
812
+
813
+ #: inc/taxonomies.php:287
814
+ msgid "(e.g. Edit Actor)"
815
+ msgstr "(ex. : Modifier l'acteur)"
816
+
817
+ #: inc/taxonomies.php:296
818
+ msgid "(e.g. View Actor)"
819
+ msgstr "(ex. : Afficher l'acteur)"
820
+
821
+ #: inc/taxonomies.php:305
822
+ msgid "(e.g. Update Actor Name)"
823
+ msgstr "(ex. : Modifier le nom de l'acteur)"
824
+
825
+ #: inc/taxonomies.php:306
826
+ msgid "Update Item Name"
827
+ msgstr "Modifier le nom de l'élément"
828
+
829
+ #: inc/taxonomies.php:314
830
+ msgid "(e.g. Add New Actor)"
831
+ msgstr "(ex. : Ajouter un nouvel acteur)"
832
+
833
+ #: inc/taxonomies.php:323
834
+ msgid "(e.g. New Actor Name)"
835
+ msgstr "(ex. : Nouveau nom d'acteur)"
836
+
837
+ #: inc/taxonomies.php:324
838
+ msgid "New Item Name"
839
+ msgstr "Nouveau nom d'élément"
840
+
841
+ #: inc/taxonomies.php:332
842
+ msgid "(e.g. Parent Actor)"
843
+ msgstr "(ex. : Acteur parent)"
844
+
845
+ #: inc/taxonomies.php:333
846
+ msgid "Parent Item"
847
+ msgstr "Element parent"
848
+
849
+ #: inc/taxonomies.php:341
850
+ msgid "(e.g. Parent Actor:)"
851
+ msgstr "(ex. : Parent de l'acteur)"
852
+
853
+ #: inc/taxonomies.php:342
854
+ msgid "Parent Item Colon"
855
+ msgstr "Element parent"
856
+
857
+ #: inc/taxonomies.php:350
858
+ msgid "(e.g. Search Actors)"
859
+ msgstr "(ex. : Rechercher des acteurs)"
860
+
861
+ #: inc/taxonomies.php:351
862
+ msgid "Search Items"
863
+ msgstr "Rechercher des éléments"
864
+
865
+ #: inc/taxonomies.php:359
866
+ msgid "(e.g. Popular Actors)"
867
+ msgstr "(ex. : Acteurs populaires)"
868
+
869
+ #: inc/taxonomies.php:360
870
+ msgid "Popular Items"
871
+ msgstr "Elements populaires"
872
+
873
+ #: inc/taxonomies.php:368
874
+ msgid "(e.g. Separate Actors with commas)"
875
+ msgstr "(ex. : Séparer les acteurs par des virgules)"
876
+
877
+ #: inc/taxonomies.php:369
878
+ msgid "Separate Items with Commas"
879
+ msgstr "Séparer les éléments par des virgules"
880
+
881
+ #: inc/taxonomies.php:377
882
+ msgid "(e.g. Add or remove Actors)"
883
+ msgstr "(ex. : Ajouter ou supprimer des acteurs)"
884
+
885
+ #: inc/taxonomies.php:378
886
+ msgid "Add or Remove Items"
887
+ msgstr "Ajouter ou Supprimer des éléments"
888
+
889
+ #: inc/taxonomies.php:386
890
+ msgid "(e.g. Choose from the most used Actors)"
891
+ msgstr "(ex. : Choisir parmi les acteurs les plus utilisées)"
892
+
893
+ #: inc/taxonomies.php:387
894
+ msgid "Choose From Most Used"
895
+ msgstr "Choisir parmi les plus utilisés"
896
+
897
+ #: inc/taxonomies.php:395
898
+ msgid "(e.g. No Actors found)"
899
+ msgstr "(ex. : Aucun acteur trouvé)"
900
+
901
+ #: inc/taxonomies.php:396
902
+ msgid "Not found"
903
+ msgstr "Non trouvé"
904
+
905
+ #: inc/taxonomies.php:419
906
+ msgid "Whether the taxonomy can have parent-child relationships"
907
+ msgstr "Détermine si la taxonomie peut avoir des relations parent-enfants."
908
+
909
+ #: inc/taxonomies.php:436
910
+ msgid "Whether to generate a default UI for managing this custom taxonomy."
911
+ msgstr "Détermine s'il faut générer une interface par défaut pour gérer cette taxonomie personnalisée."
912
+
913
+ #: inc/taxonomies.php:453
914
+ msgid "Sets the query_var key for this taxonomy."
915
+ msgstr "Définir la clef query_var pour cette taxonomie."
916
+
917
+ #: inc/taxonomies.php:462
918
+ msgid "Custom Query Var String"
919
+ msgstr "Variable de requête personnalisée"
920
+
921
+ #: inc/taxonomies.php:463
922
+ msgid "Sets a custom query_var slug for this taxonomy."
923
+ msgstr "Défini un identifiant query_var personnalisé pour cette taxonomie."
924
+
925
+ #: inc/taxonomies.php:479
926
+ msgid "Whether or not WordPress should use rewrites for this taxonomy."
927
+ msgstr "Détermine si WordPress devrait utiliser la réécriture pour cette taxonomie."
928
+
929
+ #: inc/taxonomies.php:487
930
+ msgid "(default: taxonomy name)"
931
+ msgstr "(défaut : nom de la taxonomie)"
932
+
933
+ #: inc/taxonomies.php:489
934
+ msgid "Custom taxonomy rewrite slug."
935
+ msgstr "Identifiant personnalisé de réécriture de taxonomie."
936
+
937
+ #: inc/taxonomies.php:503
938
+ msgid "Rewrite With Front"
939
+ msgstr "Réécriture"
940
+
941
+ #: inc/taxonomies.php:504
942
+ msgid "(default: true)"
943
+ msgstr "(défaut : Vrai)"
944
+
945
+ #: inc/taxonomies.php:520
946
+ msgid "Rewrite Hierarchical"
947
+ msgstr "Réécriture hiérarchique"
948
+
949
+ #: inc/taxonomies.php:521
950
+ msgid "(default: false)"
951
+ msgstr "(défaut : Faux)"
952
+
953
+ #: inc/taxonomies.php:522
954
+ msgid "Should the permastruct allow hierarchical urls."
955
+ msgstr "La permastructure devrait-elle permettre les url hiérarchiques."
956
+
957
+ #: inc/taxonomies.php:537
958
+ msgid "Show Admin Column"
959
+ msgstr "Afficher la colonne d'administration"
960
+
961
+ #: inc/taxonomies.php:539
962
+ msgid "Whether to allow automatic creation of taxonomy columns on associated post-types."
963
+ msgstr "Détermine s'il faut permettre la création automatique des colonnes de taxonomie sur les types d'articles associés."
964
+
965
+ #: inc/taxonomies.php:676
966
+ msgid "Please provide a taxonomy to delete"
967
+ msgstr "Veuillez fournir une taxonomie à supprimer"
968
+
969
+ #: inc/taxonomies.php:727
970
+ msgid "Please provide a taxonomy name"
971
+ msgstr "Veuillez fournir un nom de taxonomie"
972
+
973
+ #: inc/taxonomies.php:743
974
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
975
+ msgstr "Veuillez ne pas utiliser de guillemets dans les noms de taxonomie ou dans les identifiants de réécriture."
976
+
977
+ #: inc/taxonomies.php:749
978
+ msgid "Please choose a different taxonomy name. %s is already used."
979
+ msgstr "Veuillez choisir un autre nom de taxonomie. %s est déjà utilisé."
980
+
981
+ #. Plugin URI of the plugin/theme
982
+ msgid "https://github.com/WebDevStudios/custom-post-type-ui/"
983
+ msgstr ""
984
+
985
+ #. Description of the plugin/theme
986
+ msgid "Admin panel for creating custom post types and custom taxonomies in WordPress"
987
+ msgstr "Panneau d'administration pour la création de types d'articles et de taxonomies personnalisés dans WordPress"
988
+
989
+ #. Author of the plugin/theme
990
+ msgid "WebDevStudios"
991
+ msgstr ""
992
+
993
+ #. Author URI of the plugin/theme
994
+ msgid "http://webdevstudios.com/"
995
+ msgstr ""
996
+
997
+ #: custom-post-type-ui.php:62
998
+ msgid "Custom Post Types"
999
+ msgstr "Types d'articles personnalisés"
1000
+
1001
+ #: custom-post-type-ui.php:62
1002
+ msgid "CPT UI"
1003
+ msgstr "CPT UI"
1004
+
1005
+ #: custom-post-type-ui.php:63 inc/listings.php:155
1006
+ msgid "Add/Edit Post Types"
1007
+ msgstr "Ajouter/Modifier les types"
1008
+
1009
+ #: custom-post-type-ui.php:64 inc/listings.php:287
1010
+ msgid "Add/Edit Taxonomies"
1011
+ msgstr "Ajouter/Modifier les taxonomies"
1012
+
1013
+ #: custom-post-type-ui.php:65
1014
+ msgid "Registered Types and Taxes"
1015
+ msgstr "Références des types et taxonomies"
1016
+
1017
+ #: custom-post-type-ui.php:65
1018
+ msgid "Registered Types/Taxes"
1019
+ msgstr "Références"
1020
+
1021
+ #: custom-post-type-ui.php:66 custom-post-type-ui.php:559
1022
+ msgid "Import/Export"
1023
+ msgstr "Importer/Exporter"
1024
+
1025
+ #: custom-post-type-ui.php:67
1026
+ msgid "Help/Support"
1027
+ msgstr "Aide/Support"
1028
+
1029
+ #: custom-post-type-ui.php:71
1030
+ msgid "About CPT UI"
1031
+ msgstr "A propos de CPT UI"
1032
+
1033
+ #. #-#-#-#-# tmp-custom-post-type-ui.pot (Custom Post Type UI 1.2.4)
1034
+ #. Plugin Name of the plugin/theme
1035
+ #: custom-post-type-ui.php:390 custom-post-type-ui.php:486
1036
+ msgid "Custom Post Type UI"
1037
+ msgstr "Custom Post Type UI"
1038
+
1039
+ #: custom-post-type-ui.php:393
1040
+ msgid "Thank you for choosing Custom Post Type UI. We hope that your experience with our plugin provides efficiency and speed in creating post types and taxonomies, to better organize your content, without having to touch code."
1041
+ msgstr "Merci d'avoir choisi Custom Post Type UI. Nous espérons que votre expérience avec notre extension vous fournira efficacité et rapidité dans la création de types d'articles et taxonomies, pour mieux organiser votre contenu, sans avoir à toucher du code."
1042
+
1043
+ #: custom-post-type-ui.php:430
1044
+ msgid "Help Support This Plugin!"
1045
+ msgstr "Aidez à supporter cette extension !"
1046
+
1047
+ #: custom-post-type-ui.php:434
1048
+ msgid "Professional WordPress<br />Third Edition"
1049
+ msgstr "Professional WordPress<br />Third Edition"
1050
+
1051
+ #: custom-post-type-ui.php:439
1052
+ msgid "The leading book on WordPress design and development! Brand new third edition!"
1053
+ msgstr "Un livre de tout premier plan sur la conception et le développement de WordPress (Anglais) ! Nouvelle troisième édition !"
1054
+
1055
+ #: custom-post-type-ui.php:442
1056
+ msgid "Professional WordPress<br />Plugin Development"
1057
+ msgstr "Professional WordPress<br />Plugin Development"
1058
+
1059
+ #: custom-post-type-ui.php:447
1060
+ msgid "Highest rated WordPress development book on Amazon!"
1061
+ msgstr "Le livre de développement WordPress (Anglais) le mieux noté sur Amazon !"
1062
+
1063
+ #: custom-post-type-ui.php:450
1064
+ msgid "PayPal Donation"
1065
+ msgstr "Don PayPal"
1066
+
1067
+ #: custom-post-type-ui.php:454
1068
+ msgid "PayPal - The safer, easier way to pay online!"
1069
+ msgstr "PayPal - La façon la sûre et la plus simple pour payer en ligne !"
1070
+
1071
+ #: custom-post-type-ui.php:457
1072
+ msgid "Please donate to the development of Custom Post Type UI:"
1073
+ msgstr "Veuillez faire un don pour le développement de Custom Post Type UI."
1074
+
1075
+ #: custom-post-type-ui.php:483
1076
+ msgid "%s version %s by %s"
1077
+ msgstr "%s version %s par %s"
1078
+
1079
+ #: custom-post-type-ui.php:494
1080
+ msgid "Please Report Bugs"
1081
+ msgstr "Veuillez signaler les bogues"
1082
+
1083
+ #: custom-post-type-ui.php:497
1084
+ msgid "Follow on Twitter:"
1085
+ msgstr "Suivez nous sur Twitter:"
1086
+
1087
+ #: custom-post-type-ui.php:561
1088
+ msgid "Manage Taxonomies"
1089
+ msgstr "Gérer les taxonomies"
1090
+
1091
+ #: custom-post-type-ui.php:565
1092
+ msgid "Manage Post Types"
1093
+ msgstr "Gérer les types d'articles"
1094
+
1095
+ #: custom-post-type-ui.php:593
1096
+ msgid "Add New Post Type"
1097
+ msgstr "Ajouter un nouveau type d'articles"
1098
+
1099
+ #: custom-post-type-ui.php:596
1100
+ msgid "Edit Post Types"
1101
+ msgstr "Modifier un type d'articles"
1102
+
1103
+ #: custom-post-type-ui.php:600
1104
+ msgid "Add New Taxonomy"
1105
+ msgstr "Ajouter une nouvelle taxonomie"
1106
+
1107
+ #: custom-post-type-ui.php:603
1108
+ msgid "Edit Taxonomies"
1109
+ msgstr "Modifier les taxonomies"
1110
+
1111
+ #: custom-post-type-ui.php:607 inc/listings.php:13 inc/listings.php:171
1112
+ msgid "Post Types"
1113
+ msgstr "Types d'articles"
1114
+
1115
+ #: custom-post-type-ui.php:608 inc/import_export.php:393 inc/listings.php:24
1116
+ #: inc/listings.php:161
1117
+ msgid "Taxonomies"
1118
+ msgstr "Taxonomies"
1119
+
1120
+ #: custom-post-type-ui.php:609
1121
+ msgid "Get Code"
1122
+ msgstr "Code Source"
1123
+
1124
+ #: custom-post-type-ui.php:693 inc/listings.php:22 inc/listings.php:170
1125
+ #: inc/post-types.php:420 inc/taxonomies.php:402
1126
+ msgid "Settings"
1127
+ msgstr "Réglages"
1128
+
1129
+ #: custom-post-type-ui.php:693
1130
+ msgid "Help"
1131
+ msgstr "Aide"
1132
+
1133
+ #: custom-post-type-ui.php:722
1134
+ msgid "%s has been successfully added"
1135
+ msgstr "%s a été ajouté avec succès"
1136
+
1137
+ #: custom-post-type-ui.php:724
1138
+ msgid "%s has failed to be added"
1139
+ msgstr "%s n'a pas pu être ajouté"
1140
+
1141
+ #: custom-post-type-ui.php:728
1142
+ msgid "%s has been successfully updated"
1143
+ msgstr "%s a été modifié avec succès"
1144
+
1145
+ #: custom-post-type-ui.php:730
1146
+ msgid "%s has failed to be updated"
1147
+ msgstr "%s n'a pas pu être modifié"
1148
+
1149
+ #: custom-post-type-ui.php:734
1150
+ msgid "%s has been successfully deleted"
1151
+ msgstr "%s a été supprimé avec succès"
1152
+
1153
+ #: custom-post-type-ui.php:736
1154
+ msgid "%s has failed to be deleted"
1155
+ msgstr "%s n'a pas pu être supprimé"
1156
+
1157
+ #: custom-post-type-ui.php:740
1158
+ msgid "%s has been successfully imported"
1159
+ msgstr "%s a été importé avec succès"
1160
+
1161
+ #: custom-post-type-ui.php:742
1162
+ msgid "%s has failed to be imported"
1163
+ msgstr "%s n'a pas pu être importé"
1164
+
1165
+ #: custom-post-type-ui.php:825 custom-post-type-ui.php:842
1166
+ msgid "Add new %s"
1167
+ msgstr "Ajouter %s"
1168
+
1169
+ #: custom-post-type-ui.php:826 custom-post-type-ui.php:840 inc/listings.php:78
1170
+ #: inc/listings.php:220
1171
+ msgid "Edit %s"
1172
+ msgstr "Modifier %s"
1173
+
1174
+ #: custom-post-type-ui.php:827
1175
+ msgid "New %s"
1176
+ msgstr "Nouveau %s"
1177
+
1178
+ #: custom-post-type-ui.php:828
1179
+ msgid "View %s"
1180
+ msgstr "Afficher %s"
1181
+
1182
+ #: custom-post-type-ui.php:829 custom-post-type-ui.php:837
1183
+ msgid "All %s"
1184
+ msgstr "Tous les %s"
1185
+
1186
+ #: custom-post-type-ui.php:830 custom-post-type-ui.php:835
1187
+ msgid "Search %s"
1188
+ msgstr "Recherche de %s"
1189
+
1190
+ #: custom-post-type-ui.php:831
1191
+ msgid "No %s found."
1192
+ msgstr "Aucun %s trouvé."
1193
+
1194
+ #: custom-post-type-ui.php:832
1195
+ msgid "No %s found in trash."
1196
+ msgstr "Aucun %s trouvé dans la corbeille"
1197
+
1198
+ #: custom-post-type-ui.php:836
1199
+ msgid "Popular %s"
1200
+ msgstr "%s populaires"
1201
+
1202
+ #: custom-post-type-ui.php:838
1203
+ msgid "Parent %s"
1204
+ msgstr "Parent %s"
1205
+
1206
+ #: custom-post-type-ui.php:839
1207
+ msgid "Parent %s:"
1208
+ msgstr "Parent %s :"
1209
+
1210
+ #: custom-post-type-ui.php:841
1211
+ msgid "Update %s"
1212
+ msgstr "Mise à jour %s"
1213
+
1214
+ #: custom-post-type-ui.php:843
1215
+ msgid "New %s name"
1216
+ msgstr "Nouveau nom %s"
1217
+
1218
+ #: custom-post-type-ui.php:844
1219
+ msgid "Separate %s with commas"
1220
+ msgstr "Séparer %s par des virgules"
1221
+
1222
+ #: custom-post-type-ui.php:845
1223
+ msgid "Add or remove %s"
1224
+ msgstr "Ajouter ou supprimer %s"
1225
+
1226
+ #: custom-post-type-ui.php:846
1227
+ msgid "Choose from the most used %s"
1228
+ msgstr "Choisir les %s les plus utilisés"
1229
+
1230
+ #: inc/import_export.php:404
1231
+ msgid "If you are wanting to migrate registered post types or taxonomies from this site to another, that will also use Custom Post Type UI, use the import and export functionality. If you are moving away from Custom Post Type UI, use the information in the \"Get Code\" tab."
1232
+ msgstr "Si vous désirez migrer des types d'articles ou taxonomies de ce site vers un autre, utilisant aussi Custom Post Type UI, utiliser les fonctions d'import et d'export. Si vous ne désirez plus utiliser Custom Post Type UI, utiliser les informations de l'onglet \"Code Source\"."
1233
+
1234
+ #: inc/import_export.php:407
1235
+ msgid "NOTE"
1236
+ msgstr "NOTE"
1237
+
1238
+ #: inc/import_export.php:415
1239
+ msgid "Import Post Types"
1240
+ msgstr "Importer les types d'articles"
1241
+
1242
+ #: inc/import_export.php:419 inc/import_export.php:459
1243
+ msgid "Paste content here."
1244
+ msgstr "Coller le contenu ici."
1245
+
1246
+ #: inc/import_export.php:422 inc/import_export.php:462
1247
+ msgid "Note:"
1248
+ msgstr "Remarque :"
1249
+
1250
+ #: inc/import_export.php:422 inc/import_export.php:462
1251
+ msgid "Importing will overwrite previous registered settings."
1252
+ msgstr "L'importation écrasera les paramètres précédement enregistrés."
1253
+
1254
+ #: inc/import_export.php:426
1255
+ msgid "To import post types from a different WordPress site, paste the exported content from that site and click the \"Import\" button."
1256
+ msgstr "Pour importer des types d'articles d'un autre site WordPress, coller le contenu exporté depuis ce site puis cliquer sur le bouton \"Importer\"."
1257
+
1258
+ #: inc/import_export.php:430 inc/import_export.php:470
1259
+ msgid "Import"
1260
+ msgstr "Importer"
1261
+
1262
+ #: inc/import_export.php:435
1263
+ msgid "Export Post Types"
1264
+ msgstr "Exporter les types d'articles"
1265
+
1266
+ #: inc/import_export.php:442
1267
+ msgid "No post types registered yet."
1268
+ msgstr "Il n'y a pas encore de type enregistrés."
1269
+
1270
+ #: inc/import_export.php:445 inc/import_export.php:485
1271
+ msgid "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."
1272
+ msgstr "Pour copier les informations système, cliquer ci-dessous puis appuyer sur Ctrl + C (PC) ou Cmd + C (Mac)."
1273
+
1274
+ #: inc/import_export.php:448
1275
+ msgid "Use the content above to import current post types into a different WordPress site. You can also use this to simply back up your post type settings."
1276
+ msgstr "Utiliser le contenu ci-dessus pour importer les types d'articles actuels dans un autre site WordPress. Vous pouvez également l'utiliser pour simplement sauvegarder vos paramètres de type d'articles."
1277
+
1278
+ #: inc/import_export.php:455
1279
+ msgid "Import Taxonomies"
1280
+ msgstr "Importer les taxonomies"
1281
+
1282
+ #: inc/import_export.php:466
1283
+ msgid "To import taxonomies from a different WordPress site, paste the exported content from that site and click the \"Import\" button."
1284
+ msgstr "Pour importer les taxonomies d'un autre site WordPress, coller le contenu exporté depuis ce site puis cliquer sur le bouton \"Importer\"."
1285
+
1286
+ #: inc/import_export.php:475
1287
+ msgid "Export Taxonomies"
1288
+ msgstr "Exporter les taxonomies"
1289
+
1290
+ #: inc/import_export.php:482
1291
+ msgid "No taxonomies registered yet."
1292
+ msgstr "Il n'y a pas encore de taxonomies enregistrées."
1293
+
1294
+ #: inc/import_export.php:488
1295
+ msgid "Use the content above to import current taxonomies into a different WordPress site. You can also use this to simply back up your taxonomy settings."
1296
+ msgstr "Utiliser le contenu ci-dessus pour importer les taxonomies actuelles dans un autre site WordPress. Vous pouvez également l'utiliser pour simplement sauvegarder vos paramètres de taxonomies."
1297
+
1298
+ #: inc/import_export.php:499
1299
+ msgid "Get Post Type and Taxonomy Code"
1300
+ msgstr "Code source des types d'articles et des taxonomies"
1301
+
1302
+ #: inc/import_export.php:501
1303
+ msgid "All CPT UI Post Types"
1304
+ msgstr "Tous les types d'articles CPT UI"
1305
+
1306
+ #: inc/import_export.php:504 inc/import_export.php:513
1307
+ #: inc/import_export.php:521 inc/import_export.php:530
1308
+ msgid "Copy/paste the code below into your functions.php file."
1309
+ msgstr "Copier/coller le code ci-dessous dans votre fichier function.php."
1310
+
1311
+ #: inc/import_export.php:518
1312
+ msgid "All CPT UI Taxonomies"
1313
+ msgstr "Toutes les taxonomies CPT UI"
1314
+
1315
+ #: inc/import_export.php:77
1316
+ msgid "No taxonomies to display at this time"
1317
+ msgstr "Aucune taxonomie à afficher pour le moment"
1318
+
1319
+ #: inc/import_export.php:184
1320
+ msgid "No post types to display at this time"
1321
+ msgstr "Aucune type d'articles à afficher pour le moment"
1322
+
1323
+ #: inc/import_export.php:372
1324
+ msgid "Post types"
1325
+ msgstr "Types d'articles"
1326
+
1327
+ #: inc/listings.php:10
1328
+ msgid "Post Types and Taxonomies registered by Custom Post Type UI."
1329
+ msgstr "Types d'articles et taxonomies enregistrés par Custom Post Type UI."
1330
+
1331
+ #: inc/listings.php:16 inc/listings.php:164
1332
+ msgid "Total count: %d"
1333
+ msgstr "Total : %d"
1334
+
1335
+ #: inc/listings.php:21
1336
+ msgid "Post Type"
1337
+ msgstr "Type d'articles"
1338
+
1339
+ #: inc/listings.php:23 inc/post-types.php:754
1340
+ msgid "Supports"
1341
+ msgstr "Supports"
1342
+
1343
+ #: inc/listings.php:25 inc/listings.php:172 inc/post-types.php:258
1344
+ #: inc/taxonomies.php:260
1345
+ msgid "Labels"
1346
+ msgstr "Libellés"
1347
+
1348
+ #: inc/post-types.php:314
1349
+ msgid "Edit"
1350
+ msgstr "Modifier"
1351
+
1352
+ #: inc/listings.php:81
1353
+ msgid "View frontend archive"
1354
+ msgstr "Afficher les archives"
1355
+
1356
+ #: inc/listings.php:114 inc/listings.php:249
1357
+ msgid "No custom labels to display"
1358
+ msgstr "Aucune étiquette personnalisée à afficher"
1359
+
1360
+ #: inc/listings.php:169
1361
+ msgid "Taxonomy"
1362
+ msgstr "Taxonomie"
1363
+
1364
+ #: inc/post-types.php:34 inc/taxonomies.php:29
1365
+ msgid "Are you sure you want to delete this?"
1366
+ msgstr "Etes-vous sûr de vouloir supprimer ceci ?"
1367
+
1368
+ #: inc/post-types.php:93
1369
+ msgid "DO NOT EDIT the post type slug unless necessary. Changing that value registers a new post type entry for your install."
1370
+ msgstr "NE PAS MODIFIER l'identifiant de type d'articles sauf absolue nécessité. Modifier cette valeur revient à créer un nouveau type d'articles pour votre installation."
1371
+
1372
+ #: inc/post-types.php:94
1373
+ msgid "Use appropriate checkbox above save/delete buttons if you wish to change slugs and update post types for existing posts."
1374
+ msgstr "Utiliser la case à cocher approprié au dessus des boutons Enregistrer/Supprimer si vous désirez modifier l'identifiant et mettre à jour les types d'articles pour les articles existants."
1375
+
1376
+ #: inc/post-types.php:95 inc/taxonomies.php:90
1377
+ msgid "Select: "
1378
+ msgstr "Sélectionner :"
1379
+
1380
+ #: inc/post-types.php:107 inc/taxonomies.php:102
1381
+ msgid "Select"
1382
+ msgstr "Sélection"
1383
+
1384
+ #: inc/post-types.php:137
1385
+ msgid "Post Type Slug"
1386
+ msgstr "Identifiant"
1387
+
1388
+ #: inc/post-types.php:138
1389
+ msgid "(e.g. movie)"
1390
+ msgstr "(ex. : film)"
1391
+
1392
+ #: inc/post-types.php:139
1393
+ msgid "The post type name. Used to retrieve custom post type content. Should be short and unique"
1394
+ msgstr "Le nom du type d'articles. Utilisé pour retrouver le contenu du type d'articles. Il devrait être court et unique."
1395
+
1396
+ #: inc/post-types.php:150 inc/taxonomies.php:140
1397
+ msgid "Plural Label"
1398
+ msgstr "Libellé pluriel"
1399
+
1400
+ #: inc/post-types.php:151
1401
+ msgid "(e.g. Movies)"
1402
+ msgstr "(ex. : Films)"
1403
+
1404
+ #: inc/post-types.php:152 inc/post-types.php:279 inc/post-types.php:291
1405
+ #: inc/post-types.php:303 inc/post-types.php:315 inc/post-types.php:327
1406
+ #: inc/post-types.php:339 inc/post-types.php:351 inc/post-types.php:363
1407
+ #: inc/post-types.php:375 inc/post-types.php:387 inc/post-types.php:399
1408
+ #: inc/post-types.php:411
1409
+ msgid "Post type label. Used in the admin menu for displaying post types."
1410
+ msgstr "Le libellé du type d'articles. Utilisé dans le menu d'administration pour afficher les types d'articles."
1411
+
1412
+ #: inc/post-types.php:162 inc/taxonomies.php:149
1413
+ msgid "Singular Label"
1414
+ msgstr "Libellé singulier"
1415
+
1416
+ #: inc/post-types.php:163
1417
+ msgid "(e.g. Movie)"
1418
+ msgstr "(ex. : Film)"
1419
+
1420
+ #: inc/post-types.php:164
1421
+ msgid "Custom Post Type Singular label. Used in WordPress when a singular label is needed."
1422
+ msgstr "Le nom du type au singulier. Utilisé dans WordPress lorsque le singulier est requis."
1423
+
1424
+ #: inc/post-types.php:180 inc/taxonomies.php:166
1425
+ msgid "Description"
1426
+ msgstr "Description"
1427
+
1428
+ #: inc/post-types.php:181
1429
+ msgid "Custom Post Type Description. Describe what your custom post type is used for."
1430
+ msgstr "Description du type d'articles. Décrire ce pourquoi votre type est utilisé."
1431
+
1432
+ #: inc/post-types.php:193
1433
+ msgid "Migrate posts to newly renamed post type?"
1434
+ msgstr "Migrer les articles vers le nouveau type d'articles ?"
1435
+
1436
+ #: inc/post-types.php:194
1437
+ msgid "Check this to migrate posts if and when renaming your post type."
1438
+ msgstr "Cocher cette option pour migrer les articles lorsque vous avez renommé votre type d'articles."
1439
+
1440
+ #: inc/post-types.php:213
1441
+ msgid "Save Post Type"
1442
+ msgstr "Enregistrer le type"
1443
+
1444
+ #: inc/post-types.php:224
1445
+ msgid "Delete Post Type"
1446
+ msgstr "Supprimer le type"
1447
+
1448
+ #: inc/post-types.php:236
1449
+ msgid "Add Post Type"
1450
+ msgstr "Ajouter le type"
1451
+
1452
+ #: inc/post-types.php:247 inc/taxonomies.php:249
1453
+ msgid "Starter Notes"
1454
+ msgstr "Introduction"
1455
+
1456
+ #: inc/post-types.php:250
1457
+ msgid "Post Type names should have %smax 20 characters%s, and only contain alphanumeric, lowercase characters, underscores in place of spaces and letters that do not have accents. Reserved names: post, page, attachment, revision, nav_menu_item."
1458
+ msgstr "Les noms de type d'articles doivent avoir %sau plus 20 caractères%s, et contenir uniquement des lettres alphanumériques, minuscules, des soulignés à la place des espaces, et des lettres sans accents. Noms réservés : post, page, attachement, revision, nav_menu_item."
1459
+
1460
+ #: inc/post-types.php:251
1461
+ msgid "If you are unfamiliar with the advanced post type settings, just fill in the %sPost Type Name%s and %sLabel%s fields. Remaining settings will use default values. Labels, if left blank, will be automatically created based on the post type name. Hover over the question mark for more details."
1462
+ msgstr "Si vous n'êtes pas familier avec les paramètres avancés de type d'articles, saisir l'%sIdentifiant%s du type d'articles et les champs %sLibellés%s (singulier/pluriel). Les paramètres restant utiliseront les valeurs par défaut. Si les libellés ne sont pas saisis, ils seront automatiquement créés en se basant sur le nom du type d'articles. Survoler les points d'interrogation pour plus d'information."
1463
+
1464
+ #: inc/post-types.php:252
1465
+ msgid "Deleting custom post types will %sNOT%s delete any content into the database or added to those post types. You can easily recreate your post types and the content will still exist."
1466
+ msgstr "La suppression des types d'articles personnalisés ne supprime %sPAS%s les articles ajoutés à ces types. Vous pouvez recréer vos types et les contenus réapparaîtrons."
1467
+
1468
+ #: inc/post-types.php:266 inc/taxonomies.php:270
1469
+ msgid "Menu Name"
1470
+ msgstr "Nom de menu"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 4.2
6
  Tested up to: 4.4.1
7
- Stable tag: 1.2.3
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -30,6 +30,10 @@ All official development on this plugin is on GitHub. Version bumps will still b
30
 
31
  == Changelog ==
32
 
 
 
 
 
33
  = 1.2.3 =
34
  * Fixed: copy/paste error with admin css.
35
 
@@ -221,6 +225,10 @@ All official development on this plugin is on GitHub. Version bumps will still b
221
 
222
  == Upgrade Notice ==
223
 
 
 
 
 
224
  = 1.2.3 =
225
  * Fixed: copy/paste error with admin css.
226
 
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 4.2
6
  Tested up to: 4.4.1
7
+ Stable tag: 1.2.4
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
30
 
31
  == Changelog ==
32
 
33
+ = 1.2.4 =
34
+ * Added: new CPTUI_VERSION constant to match naming of other current constants.
35
+ * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
36
+
37
  = 1.2.3 =
38
  * Fixed: copy/paste error with admin css.
39
 
225
 
226
  == Upgrade Notice ==
227
 
228
+ = 1.2.4 =
229
+ * Added: new CPTUI_VERSION constant to match naming of other current constants.
230
+ * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
231
+
232
  = 1.2.3 =
233
  * Fixed: copy/paste error with admin css.
234