Version Description
- Added in Presets: Post type filters for first image option
- Revised translations
Download this release
Release Info
Developer | Hinjiriyo |
Plugin | Quick Featured Images |
Version | 13.2 |
Comparing to | |
See all releases |
Code changes from version 13.1 to 13.2
- README.txt +8 -1
- admin/class-quick-featured-images-admin.php +1 -1
- admin/class-quick-featured-images-defaults.php +13 -3
- admin/views/section_defaults.php +31 -3
- languages/quick-featured-images-ar.mo +0 -0
- languages/quick-featured-images-ar.po +59 -49
- languages/quick-featured-images-de_DE.mo +0 -0
- languages/quick-featured-images-de_DE.po +59 -48
- languages/quick-featured-images-es_ES.mo +0 -0
- languages/quick-featured-images-es_ES.po +71 -60
- languages/quick-featured-images-fr_FR.mo +0 -0
- languages/quick-featured-images-fr_FR.po +111 -866
- languages/quick-featured-images-pt_BR.mo +0 -0
- languages/quick-featured-images-pt_BR.po +60 -49
- languages/quick-featured-images.pot +192 -90
- quick-featured-images.php +1 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: categories, images, featured images, filter, random, remove, replace, thumbnails, posts, pages, tags
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 13.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -284,6 +284,10 @@ If you want to contribute a translation of the plugin in your language it would
|
|
284 |
|
285 |
== Changelog ==
|
286 |
|
|
|
|
|
|
|
|
|
287 |
= 13.1 =
|
288 |
* Added french translation. Thank you, Ivan M. Frakov!
|
289 |
* Revised sanitations for texts and URLs on the pages
|
@@ -456,6 +460,9 @@ Added spanish translation for the main texts of the plugin
|
|
456 |
|
457 |
== Upgrade Notice ==
|
458 |
|
|
|
|
|
|
|
459 |
= 13.1 =
|
460 |
Added french translation, revised sanitations and translations, tested with WordPress 4.8
|
461 |
|
4 |
Tags: categories, images, featured images, filter, random, remove, replace, thumbnails, posts, pages, tags
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 13.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
284 |
|
285 |
== Changelog ==
|
286 |
|
287 |
+
= 13.2 =
|
288 |
+
* Added in Presets: Post type filters for first image option
|
289 |
+
* Revised translations
|
290 |
+
|
291 |
= 13.1 =
|
292 |
* Added french translation. Thank you, Ivan M. Frakov!
|
293 |
* Revised sanitations for texts and URLs on the pages
|
460 |
|
461 |
== Upgrade Notice ==
|
462 |
|
463 |
+
= 13.2 =
|
464 |
+
Added in Presets: Post type filters for first image option, revised translations
|
465 |
+
|
466 |
= 13.1 =
|
467 |
Added french translation, revised sanitations and translations, tested with WordPress 4.8
|
468 |
|
admin/class-quick-featured-images-admin.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
-
protected $plugin_version = '13.
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
+
protected $plugin_version = '13.2';
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
admin/class-quick-featured-images-defaults.php
CHANGED
@@ -135,7 +135,7 @@ class Quick_Featured_Images_Defaults {
|
|
135 |
*
|
136 |
* @since 8.0
|
137 |
*
|
138 |
-
* @var
|
139 |
*/
|
140 |
protected $selected_rules = null;
|
141 |
|
@@ -384,6 +384,7 @@ class Quick_Featured_Images_Defaults {
|
|
384 |
if ( ! $value ) {
|
385 |
continue;
|
386 |
}
|
|
|
387 |
switch ( $key ) {
|
388 |
// checkboxes
|
389 |
case 'overwrite_automatically':
|
@@ -398,6 +399,12 @@ class Quick_Featured_Images_Defaults {
|
|
398 |
case 'default_image_id':
|
399 |
$sanitized_input[ $key ] = absint( $value );
|
400 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
// rules
|
402 |
case 'rules':
|
403 |
if ( is_array( $value ) ) {
|
@@ -474,8 +481,11 @@ class Quick_Featured_Images_Defaults {
|
|
474 |
$thumb_id = 0;
|
475 |
// 1. Image by first embedded content image
|
476 |
if ( isset( $settings[ 'use_first_image_as_default' ] ) ) {
|
477 |
-
//
|
478 |
-
$
|
|
|
|
|
|
|
479 |
} // if(use_first_image_as_default)
|
480 |
// determine post's properties matched with specified rules
|
481 |
if ( ! $thumb_id and isset( $settings[ 'rules' ] ) ) {
|
135 |
*
|
136 |
* @since 8.0
|
137 |
*
|
138 |
+
* @var array
|
139 |
*/
|
140 |
protected $selected_rules = null;
|
141 |
|
384 |
if ( ! $value ) {
|
385 |
continue;
|
386 |
}
|
387 |
+
|
388 |
switch ( $key ) {
|
389 |
// checkboxes
|
390 |
case 'overwrite_automatically':
|
399 |
case 'default_image_id':
|
400 |
$sanitized_input[ $key ] = absint( $value );
|
401 |
break;
|
402 |
+
// considered post types for 1st image
|
403 |
+
case 'post_types_1st_image':
|
404 |
+
foreach ( $value as $post_type ) {
|
405 |
+
$sanitized_input[ $key ][] = $post_type;
|
406 |
+
}
|
407 |
+
break;
|
408 |
// rules
|
409 |
case 'rules':
|
410 |
if ( is_array( $value ) ) {
|
481 |
$thumb_id = 0;
|
482 |
// 1. Image by first embedded content image
|
483 |
if ( isset( $settings[ 'use_first_image_as_default' ] ) ) {
|
484 |
+
// only if post type should be considered or if no post type at all (backward compatible)
|
485 |
+
if ( empty( $settings[ 'post_types_1st_image' ] ) or in_array( $post->post_type, $settings[ 'post_types_1st_image' ] ) ) {
|
486 |
+
// get first content image
|
487 |
+
$thumb_id = $this->get_first_content_image_id( $post->post_content );
|
488 |
+
}
|
489 |
} // if(use_first_image_as_default)
|
490 |
// determine post's properties matched with specified rules
|
491 |
if ( ! $thumb_id and isset( $settings[ 'rules' ] ) ) {
|
admin/views/section_defaults.php
CHANGED
@@ -86,7 +86,7 @@ if ( 0 < count( $user_data ) ) {
|
|
86 |
}
|
87 |
|
88 |
// get stored post types
|
89 |
-
$
|
90 |
|
91 |
// get stored taxonomies
|
92 |
$custom_taxonomies = $this->get_custom_taxonomies_labels();
|
@@ -132,7 +132,7 @@ printf( 'options[ \'%s\' ].push( \'<option value="%s">%s</option>\' );', $key, '
|
|
132 |
print "\n";
|
133 |
printf( 'options[ \'%s\' ].push( \'<option value="%s">%s</option>\' );', $key, 'page', $page_label );
|
134 |
print "\n";
|
135 |
-
foreach ( $
|
136 |
printf( 'options[ \'%s\' ].push( \'<option value="%s">%s</option>\' );', $key, esc_attr( $name ), esc_html( $label ) );
|
137 |
print "\n";
|
138 |
}
|
@@ -252,6 +252,34 @@ if ( ! current_theme_supports( 'post-thumbnails' ) ) {
|
|
252 |
<label><input type="checkbox" value="1" name="use_first_image_as_default"<?php checked( isset( $this->selected_rules[ 'use_first_image_as_default' ] ), '1' ); ?>><?php esc_html_e( 'Activate to automatically use the first content image if available in the media library as featured image while saving a post', 'quick-featured-images' ); ?></label>
|
253 |
</p>
|
254 |
<p class="description"><?php esc_html_e( 'If activated the rule is used automatically while saving a post to set the first content image - if available in the media library - as the featured image of the post. If the post has no content images the next rules will be applied.', 'quick-featured-images' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
</td>
|
256 |
<td></td>
|
257 |
</tr>
|
@@ -311,7 +339,7 @@ if ( isset( $this->selected_rules[ 'rules' ] ) ) {
|
|
311 |
<option value="post"<?php selected( 'post' == $rule[ 'matchterm' ], true ); ?>><?php echo $post_label; ?></option>
|
312 |
<option value="page"<?php selected( 'page' == $rule[ 'matchterm' ], true ); ?>><?php echo $page_label; ?></option>
|
313 |
<?php
|
314 |
-
foreach ( $
|
315 |
?>
|
316 |
<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key == $rule[ 'matchterm' ], true); ?>><?php echo esc_html( $label ); ?></option>
|
317 |
<?php
|
86 |
}
|
87 |
|
88 |
// get stored post types
|
89 |
+
$custom_post_types = $this->get_custom_post_types_labels();
|
90 |
|
91 |
// get stored taxonomies
|
92 |
$custom_taxonomies = $this->get_custom_taxonomies_labels();
|
132 |
print "\n";
|
133 |
printf( 'options[ \'%s\' ].push( \'<option value="%s">%s</option>\' );', $key, 'page', $page_label );
|
134 |
print "\n";
|
135 |
+
foreach ( $custom_post_types as $name => $label ) {
|
136 |
printf( 'options[ \'%s\' ].push( \'<option value="%s">%s</option>\' );', $key, esc_attr( $name ), esc_html( $label ) );
|
137 |
print "\n";
|
138 |
}
|
252 |
<label><input type="checkbox" value="1" name="use_first_image_as_default"<?php checked( isset( $this->selected_rules[ 'use_first_image_as_default' ] ), '1' ); ?>><?php esc_html_e( 'Activate to automatically use the first content image if available in the media library as featured image while saving a post', 'quick-featured-images' ); ?></label>
|
253 |
</p>
|
254 |
<p class="description"><?php esc_html_e( 'If activated the rule is used automatically while saving a post to set the first content image - if available in the media library - as the featured image of the post. If the post has no content images the next rules will be applied.', 'quick-featured-images' ); ?></p>
|
255 |
+
<p><?php esc_html_e( 'For which post types should this rule be applied?', 'quick-featured-images' ); ?></p>
|
256 |
+
<p>
|
257 |
+
<?php
|
258 |
+
// backward compatibility: set "all post types" if no setting available
|
259 |
+
if ( empty( $this->selected_rules[ 'post_types_1st_image' ] ) ) {
|
260 |
+
$this->selected_rules[ 'post_types_1st_image' ][] = 'post';
|
261 |
+
$this->selected_rules[ 'post_types_1st_image' ][] = 'page';
|
262 |
+
foreach( array_keys( $custom_post_types ) as $key ) {
|
263 |
+
$this->selected_rules[ 'post_types_1st_image' ][] = $key;
|
264 |
+
}
|
265 |
+
}
|
266 |
+
?>
|
267 |
+
<label><input type="checkbox" name="post_types_1st_image[]" value="post"<?php checked( in_array( 'post', $this->selected_rules[ 'post_types_1st_image' ] ) ); ?>><?php echo $post_label; ?></label><br>
|
268 |
+
<label><input type="checkbox" name="post_types_1st_image[]" value="page"<?php checked( in_array( 'page', $this->selected_rules[ 'post_types_1st_image' ] ) ); ?>><?php echo $page_label; ?></label><?php
|
269 |
+
$c = count( $custom_post_types );
|
270 |
+
$i = 0;
|
271 |
+
foreach ( $custom_post_types as $key => $label ) {
|
272 |
+
if ( $i < $c ) {
|
273 |
+
print "<br>\n";
|
274 |
+
}
|
275 |
+
$i++;
|
276 |
+
?>
|
277 |
+
<label><input type="checkbox" name="post_types_1st_image[]" value="<?php echo esc_attr( $key ); ?>"<?php checked( in_array( $key, $this->selected_rules[ 'post_types_1st_image' ] ) ); ?>><?php esc_html_e( $label ); ?></label>
|
278 |
+
<?php
|
279 |
+
}
|
280 |
+
?>
|
281 |
+
</p>
|
282 |
+
<p class="description"><?php esc_html_e( 'Select at least one post type, otherwise all post types will be considered.', 'quick-featured-images' ); ?></p>
|
283 |
</td>
|
284 |
<td></td>
|
285 |
</tr>
|
339 |
<option value="post"<?php selected( 'post' == $rule[ 'matchterm' ], true ); ?>><?php echo $post_label; ?></option>
|
340 |
<option value="page"<?php selected( 'page' == $rule[ 'matchterm' ], true ); ?>><?php echo $page_label; ?></option>
|
341 |
<?php
|
342 |
+
foreach ( $custom_post_types as $key => $label ) {
|
343 |
?>
|
344 |
<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key == $rule[ 'matchterm' ], true); ?>><?php echo esc_html( $label ); ?></option>
|
345 |
<?php
|
languages/quick-featured-images-ar.mo
CHANGED
Binary file
|
languages/quick-featured-images-ar.po
CHANGED
@@ -4,20 +4,20 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images Pro\n"
|
6 |
"Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
-
"PO-Revision-Date: 2017-07-
|
|
|
9 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language: ar\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.0.
|
15 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
16 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
19 |
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
20 |
-
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: admin/class-quick-featured-images-admin.php:213
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
29 |
"استبدالها أو حذفها بمجموعات دفعة واحدة، وبإمكانك تحديد صور افتراضية، والحصول "
|
30 |
"على قوائم استعراضية."
|
31 |
|
32 |
-
#: admin/class-quick-featured-images-admin.php:
|
33 |
#, php-format
|
34 |
msgid ""
|
35 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
@@ -39,7 +39,7 @@ msgstr ""
|
|
39 |
"الإضافة تتطلب نسخة ووردبريس %s أو أعلى. لذلك، ووردبريس لم تقم بتفعيلها. إذا "
|
40 |
"أرد استخدام الإضافة قم بتحديث ملفات ووردبريس للنسخة الأخيرة."
|
41 |
|
42 |
-
#: admin/class-quick-featured-images-admin.php:
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
|
@@ -72,7 +72,7 @@ msgid "No changes were saved."
|
|
72 |
msgstr "لم يتمّ حفظ تغييرات."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
-
#: admin/class-quick-featured-images-settings.php:
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "صور بارزة مجهّزة مسبقاً."
|
78 |
|
@@ -80,47 +80,47 @@ msgstr "صور بارزة مجهّزة مسبقاً."
|
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "اختيار صورة بارزة افتراضية للمقالات المستقبلية."
|
82 |
|
83 |
-
#: admin/class-quick-featured-images-settings.php:
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr "ضبط ظهور أعمدة الصور البارزة في قائمة المقالات."
|
86 |
|
87 |
-
#: admin/class-quick-featured-images-settings.php:
|
88 |
msgid "Columns for featured images in posts lists"
|
89 |
msgstr "أعمدة للصور البارزة في قائمة المقالات."
|
90 |
|
91 |
-
#: admin/class-quick-featured-images-settings.php:
|
92 |
msgid "Show additional column for featured images in lists of"
|
93 |
msgstr "أظهر عمود إضافي للصور البارزة لقوائم"
|
94 |
|
95 |
-
#: admin/class-quick-featured-images-settings.php:
|
96 |
msgid "Posts list with image column"
|
97 |
msgstr "قائمة المقالات مع عمود الصورة"
|
98 |
|
99 |
-
#: admin/class-quick-featured-images-settings.php:
|
100 |
msgid "Visibility of the plugin"
|
101 |
msgstr "رؤية البرنامج المساعد"
|
102 |
|
103 |
-
#: admin/class-quick-featured-images-settings.php:
|
104 |
msgid "Which user role may see the plugin?"
|
105 |
msgstr "الدور الذي المستخدم قد ترى المساعد"
|
106 |
|
107 |
-
#: admin/class-quick-featured-images-settings.php:
|
108 |
msgid ""
|
109 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
110 |
"post lists."
|
111 |
msgstr ""
|
112 |
"فعّل مربعات الاختيار لكل نوع مقالة لإظهار أعمدة إضافية في قائمة المقالات."
|
113 |
|
114 |
-
#: admin/class-quick-featured-images-settings.php:
|
115 |
msgid "Minimum user role to see the plugin in the backend"
|
116 |
msgstr "دور المستخدم الحد الأدنى لرؤية المساعد في الخلفية"
|
117 |
|
118 |
-
#: admin/class-quick-featured-images-settings.php:
|
119 |
msgid "Select the minimum user role a user must have to see the plugin."
|
120 |
msgstr ""
|
121 |
"حدد دور المستخدم الحد الأدنى يجب أن يكون المستخدم لمعرفة البرنامج المساعد."
|
122 |
|
123 |
-
#: admin/class-quick-featured-images-settings.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"The rules as set in “%s” work on posts independently of this "
|
@@ -128,7 +128,7 @@ msgid ""
|
|
128 |
msgstr ""
|
129 |
"قواعد النحو المنصوص في أعمال%s على المشاركات بشكل مستقل من هذا الإعداد."
|
130 |
|
131 |
-
#: admin/class-quick-featured-images-settings.php:
|
132 |
msgid ""
|
133 |
"This setting controls as well whether a user will see in an image column the "
|
134 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
@@ -138,11 +138,11 @@ msgstr ""
|
|
138 |
"وصلات عمل أو الصور المصغرة فقط. للتبديل صورة الأعمدة وإيقاف استخدام المقطع "
|
139 |
"أعلاه."
|
140 |
|
141 |
-
#: admin/class-quick-featured-images-settings.php:
|
142 |
msgid "This page is accessible for administrators only."
|
143 |
msgstr "هذه الصفحة غير متاحة للمسؤولين فقط."
|
144 |
|
145 |
-
#: admin/class-quick-featured-images-settings.php:
|
146 |
msgid ""
|
147 |
"The additional columns give you a quick overview about all used featured "
|
148 |
"images for every post. The Featured Image column is sortable."
|
@@ -150,7 +150,7 @@ msgstr ""
|
|
150 |
"الأعمدة الإضافية تعطيك نظرة سريعة على كل الصور البارزة لكل مقالة. عمود الصور "
|
151 |
"البارزة قابل للفرز."
|
152 |
|
153 |
-
#: admin/class-quick-featured-images-settings.php:
|
154 |
msgid "Controls which minimum user role can see the plugin."
|
155 |
msgstr "الضوابط التي دورا الحد الأدنى يمكن للمستخدم رؤية البرنامج المساعد."
|
156 |
|
@@ -403,20 +403,20 @@ msgstr ""
|
|
403 |
"القائمة مرتبة أبجدياً وفقاً لعنوان المقالة. بإمكانك تعديل مقالة في نافذة جديدة "
|
404 |
"بالضغط على رابطها في القائمة."
|
405 |
|
406 |
-
#: admin/views/form_confirm.php:
|
407 |
msgid "Confirm the change"
|
408 |
msgstr "تأكيد التغيير"
|
409 |
|
410 |
-
#: admin/views/form_confirm.php:
|
411 |
msgid "You can not undo the operation!"
|
412 |
msgstr "لا يمكنك التراجع عن الإجراء !"
|
413 |
|
414 |
-
#: admin/views/form_confirm.php:
|
415 |
#: admin/views/section_results.php:86
|
416 |
msgid "Start again"
|
417 |
msgstr "ابدأ مرة أخرى"
|
418 |
|
419 |
-
#: admin/views/form_confirm.php:
|
420 |
msgid "or refine your selection with the following form fields."
|
421 |
msgstr "أو قم بتنقيح اختيارك بواسطة حقول النموذج التالي."
|
422 |
|
@@ -532,14 +532,14 @@ msgstr "أزل الصور البارزة الفائضة بعد استخدام ج
|
|
532 |
|
533 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
534 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
535 |
-
#: admin/views/section_defaults.php:
|
536 |
#: admin/views/section_overview.php:91
|
537 |
msgid "Get the premium version"
|
538 |
msgstr "أحصل على النسخة المدفوعة"
|
539 |
|
540 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
541 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
542 |
-
#: admin/views/section_defaults.php:
|
543 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
544 |
msgid "/"
|
545 |
msgstr "\\"
|
@@ -803,19 +803,29 @@ msgstr ""
|
|
803 |
"الأولى في المحتوى - إذا كانت موجودة في مكتبة الوسائط - كصورة بارزة للمقالة. "
|
804 |
"إذا لم يكن هناك صور في المقالة سيتم تطبيق القاعدة التالية."
|
805 |
|
806 |
-
#: admin/views/section_defaults.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
msgid "Add rule"
|
808 |
msgstr "إضافة قاعدة"
|
809 |
|
810 |
-
#: admin/views/section_defaults.php:
|
811 |
msgid "Are you sure to remove this rule?"
|
812 |
msgstr "هل أنت متأكد من إزالة القاعدة؟"
|
813 |
|
814 |
-
#: admin/views/section_defaults.php:
|
815 |
msgid "How the rules work"
|
816 |
msgstr "كيف تعمل القواعد"
|
817 |
|
818 |
-
#: admin/views/section_defaults.php:
|
819 |
msgid ""
|
820 |
"Every time you save a post the post get the featured image if one of the "
|
821 |
"following rules match a property of the post. You can also set rules for "
|
@@ -825,7 +835,7 @@ msgstr ""
|
|
825 |
"القواعد التالية تطابق خصائص المقالة. بإمكانك أيضاً تحديد قواعد للصفحات وكل "
|
826 |
"أنواع المقالات التي تدعم الصور البارزة."
|
827 |
|
828 |
-
#: admin/views/section_defaults.php:
|
829 |
msgid ""
|
830 |
"Regardless of the order in the list the rules are applied in the following "
|
831 |
"order until a rule and a property of the post fit together:"
|
@@ -833,35 +843,35 @@ msgstr ""
|
|
833 |
"بغض النظر عن الترتيب في القائمة، يتمّ تطبيق القواعد وفقاً للترتيب التالي إلى "
|
834 |
"أن تتوافق قاعدة مع خاصية من خصائص المقالة معاً:"
|
835 |
|
836 |
-
#: admin/views/section_defaults.php:
|
837 |
msgid "found first content image. If not then..."
|
838 |
msgstr "العثور على أول صورة في المحتوى. إذا لم يتحقق ذلك فسيتم..."
|
839 |
|
840 |
-
#: admin/views/section_defaults.php:
|
841 |
msgid "matched custom taxonomy. If not then..."
|
842 |
msgstr "توافق الفئة المخصصة. إذا لم يتحقق ذلك فسيتم..."
|
843 |
|
844 |
-
#: admin/views/section_defaults.php:
|
845 |
msgid "matched tag. If not then..."
|
846 |
msgstr "توافق الوسم. إذا لم يتحقق ذلك فسيتم..."
|
847 |
|
848 |
-
#: admin/views/section_defaults.php:
|
849 |
msgid "matched category. If not then..."
|
850 |
msgstr "توافق التصنيف. إذا لم يتحقق ذلك فسيتم..."
|
851 |
|
852 |
-
#: admin/views/section_defaults.php:
|
853 |
msgid "matched author. If not then..."
|
854 |
msgstr "توافق الكاتب. إذا لم يتحقق ذلك فسيتم..."
|
855 |
|
856 |
-
#: admin/views/section_defaults.php:
|
857 |
msgid "matched post type. If not then..."
|
858 |
msgstr "توافق نوع المقالة. إذا لم يتحقق ذلك فسيتم..."
|
859 |
|
860 |
-
#: admin/views/section_defaults.php:
|
861 |
msgid "no featured image."
|
862 |
msgstr "لا يوجد صورة بارزة."
|
863 |
|
864 |
-
#: admin/views/section_defaults.php:
|
865 |
msgid ""
|
866 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
867 |
"the post it is unforeseeable which image will become the featured image."
|
@@ -869,19 +879,19 @@ msgstr ""
|
|
869 |
"خذ بعين الاعتبار أنه إذا كان اثنتين أو واحدة من القواعد بنفس الفئة يمكن أن "
|
870 |
"تتناسب مع المقالة فإنه من غير المتوقع أي صورة سيتم اختيارها كصورة بارزة."
|
871 |
|
872 |
-
#: admin/views/section_defaults.php:
|
873 |
msgid "Additional rules in the premium version"
|
874 |
msgstr "هناك قواعد إضافية في النسخة المدفوعة"
|
875 |
|
876 |
-
#: admin/views/section_defaults.php:
|
877 |
msgid "Multiple images to set them randomly as featured image"
|
878 |
msgstr "صور متعددة لضبط بشكل عشوائي كصورة مميزة"
|
879 |
|
880 |
-
#: admin/views/section_defaults.php:
|
881 |
msgid "Random featured images at each page load"
|
882 |
msgstr "صور مميزة عشوائية في كل تحميل الصفحة"
|
883 |
|
884 |
-
#: admin/views/section_defaults.php:
|
885 |
msgid ""
|
886 |
"The first content image can be also an image from an external server to set "
|
887 |
"it as automated featured image"
|
@@ -889,25 +899,25 @@ msgstr ""
|
|
889 |
"الصورة الأولى في المحتوى يمكن أيضاً أن تكون صورة من خادم -سيرفر- خارجي "
|
890 |
"لاستخدامها كصورة بارزة آلياً"
|
891 |
|
892 |
-
#: admin/views/section_defaults.php:
|
893 |
msgid ""
|
894 |
"Remove the first content image automatically after the featured image was "
|
895 |
"set successfully"
|
896 |
msgstr "إزالة الصورة الأولى المحتوى تلقائيا بعد وضع صورة مميزة بنجاح"
|
897 |
|
898 |
-
#: admin/views/section_defaults.php:
|
899 |
msgid "Match with a search string in post title"
|
900 |
msgstr "مطابقة مع نصّ البحث في عنوان المقالة"
|
901 |
|
902 |
-
#: admin/views/section_defaults.php:
|
903 |
msgid "Match with a selected post format"
|
904 |
msgstr "مطابقة مع بنية المقالة المحددة"
|
905 |
|
906 |
-
#: admin/views/section_defaults.php:
|
907 |
msgid "User defined order of rules"
|
908 |
msgstr "قاعدة ترتيب محددة من قبل المستخدم"
|
909 |
|
910 |
-
#: admin/views/section_defaults.php:
|
911 |
msgid "Import your rules from this plugin into the premium plugin"
|
912 |
msgstr ""
|
913 |
"استيراد القواعد الخاصة بك من هذا البرنامج المساعد في البرنامج المساعد قسط"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images Pro\n"
|
6 |
"Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
|
7 |
+
"POT-Creation-Date: 2017-07-23 22:35+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-07-23 22:36+0200\n"
|
9 |
+
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: ar\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.3\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
20 |
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: admin/class-quick-featured-images-admin.php:213
|
29 |
"استبدالها أو حذفها بمجموعات دفعة واحدة، وبإمكانك تحديد صور افتراضية، والحصول "
|
30 |
"على قوائم استعراضية."
|
31 |
|
32 |
+
#: admin/class-quick-featured-images-admin.php:276
|
33 |
#, php-format
|
34 |
msgid ""
|
35 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
39 |
"الإضافة تتطلب نسخة ووردبريس %s أو أعلى. لذلك، ووردبريس لم تقم بتفعيلها. إذا "
|
40 |
"أرد استخدام الإضافة قم بتحديث ملفات ووردبريس للنسخة الأخيرة."
|
41 |
|
42 |
+
#: admin/class-quick-featured-images-admin.php:482
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
|
72 |
msgstr "لم يتمّ حفظ تغييرات."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
+
#: admin/class-quick-featured-images-settings.php:605
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "صور بارزة مجهّزة مسبقاً."
|
78 |
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "اختيار صورة بارزة افتراضية للمقالات المستقبلية."
|
82 |
|
83 |
+
#: admin/class-quick-featured-images-settings.php:230
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr "ضبط ظهور أعمدة الصور البارزة في قائمة المقالات."
|
86 |
|
87 |
+
#: admin/class-quick-featured-images-settings.php:380
|
88 |
msgid "Columns for featured images in posts lists"
|
89 |
msgstr "أعمدة للصور البارزة في قائمة المقالات."
|
90 |
|
91 |
+
#: admin/class-quick-featured-images-settings.php:388
|
92 |
msgid "Show additional column for featured images in lists of"
|
93 |
msgstr "أظهر عمود إضافي للصور البارزة لقوائم"
|
94 |
|
95 |
+
#: admin/class-quick-featured-images-settings.php:393
|
96 |
msgid "Posts list with image column"
|
97 |
msgstr "قائمة المقالات مع عمود الصورة"
|
98 |
|
99 |
+
#: admin/class-quick-featured-images-settings.php:416
|
100 |
msgid "Visibility of the plugin"
|
101 |
msgstr "رؤية البرنامج المساعد"
|
102 |
|
103 |
+
#: admin/class-quick-featured-images-settings.php:424
|
104 |
msgid "Which user role may see the plugin?"
|
105 |
msgstr "الدور الذي المستخدم قد ترى المساعد"
|
106 |
|
107 |
+
#: admin/class-quick-featured-images-settings.php:556
|
108 |
msgid ""
|
109 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
110 |
"post lists."
|
111 |
msgstr ""
|
112 |
"فعّل مربعات الاختيار لكل نوع مقالة لإظهار أعمدة إضافية في قائمة المقالات."
|
113 |
|
114 |
+
#: admin/class-quick-featured-images-settings.php:568
|
115 |
msgid "Minimum user role to see the plugin in the backend"
|
116 |
msgstr "دور المستخدم الحد الأدنى لرؤية المساعد في الخلفية"
|
117 |
|
118 |
+
#: admin/class-quick-featured-images-settings.php:604
|
119 |
msgid "Select the minimum user role a user must have to see the plugin."
|
120 |
msgstr ""
|
121 |
"حدد دور المستخدم الحد الأدنى يجب أن يكون المستخدم لمعرفة البرنامج المساعد."
|
122 |
|
123 |
+
#: admin/class-quick-featured-images-settings.php:605
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"The rules as set in “%s” work on posts independently of this "
|
128 |
msgstr ""
|
129 |
"قواعد النحو المنصوص في أعمال%s على المشاركات بشكل مستقل من هذا الإعداد."
|
130 |
|
131 |
+
#: admin/class-quick-featured-images-settings.php:606
|
132 |
msgid ""
|
133 |
"This setting controls as well whether a user will see in an image column the "
|
134 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
138 |
"وصلات عمل أو الصور المصغرة فقط. للتبديل صورة الأعمدة وإيقاف استخدام المقطع "
|
139 |
"أعلاه."
|
140 |
|
141 |
+
#: admin/class-quick-featured-images-settings.php:607
|
142 |
msgid "This page is accessible for administrators only."
|
143 |
msgstr "هذه الصفحة غير متاحة للمسؤولين فقط."
|
144 |
|
145 |
+
#: admin/class-quick-featured-images-settings.php:617
|
146 |
msgid ""
|
147 |
"The additional columns give you a quick overview about all used featured "
|
148 |
"images for every post. The Featured Image column is sortable."
|
150 |
"الأعمدة الإضافية تعطيك نظرة سريعة على كل الصور البارزة لكل مقالة. عمود الصور "
|
151 |
"البارزة قابل للفرز."
|
152 |
|
153 |
+
#: admin/class-quick-featured-images-settings.php:626
|
154 |
msgid "Controls which minimum user role can see the plugin."
|
155 |
msgstr "الضوابط التي دورا الحد الأدنى يمكن للمستخدم رؤية البرنامج المساعد."
|
156 |
|
403 |
"القائمة مرتبة أبجدياً وفقاً لعنوان المقالة. بإمكانك تعديل مقالة في نافذة جديدة "
|
404 |
"بالضغط على رابطها في القائمة."
|
405 |
|
406 |
+
#: admin/views/form_confirm.php:121
|
407 |
msgid "Confirm the change"
|
408 |
msgstr "تأكيد التغيير"
|
409 |
|
410 |
+
#: admin/views/form_confirm.php:122
|
411 |
msgid "You can not undo the operation!"
|
412 |
msgstr "لا يمكنك التراجع عن الإجراء !"
|
413 |
|
414 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
415 |
#: admin/views/section_results.php:86
|
416 |
msgid "Start again"
|
417 |
msgstr "ابدأ مرة أخرى"
|
418 |
|
419 |
+
#: admin/views/form_confirm.php:183
|
420 |
msgid "or refine your selection with the following form fields."
|
421 |
msgstr "أو قم بتنقيح اختيارك بواسطة حقول النموذج التالي."
|
422 |
|
532 |
|
533 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
534 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
535 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
536 |
#: admin/views/section_overview.php:91
|
537 |
msgid "Get the premium version"
|
538 |
msgstr "أحصل على النسخة المدفوعة"
|
539 |
|
540 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
541 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
542 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
543 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
544 |
msgid "/"
|
545 |
msgstr "\\"
|
803 |
"الأولى في المحتوى - إذا كانت موجودة في مكتبة الوسائط - كصورة بارزة للمقالة. "
|
804 |
"إذا لم يكن هناك صور في المقالة سيتم تطبيق القاعدة التالية."
|
805 |
|
806 |
+
#: admin/views/section_defaults.php:255
|
807 |
+
msgid "For which post types should this rule be applied?"
|
808 |
+
msgstr "ما هي أنواع المشاركات التي يجب تطبيق هذه القاعدة عليها؟"
|
809 |
+
|
810 |
+
#: admin/views/section_defaults.php:282
|
811 |
+
msgid ""
|
812 |
+
"Select at least one post type, otherwise all post types will be considered."
|
813 |
+
msgstr ""
|
814 |
+
"حدد نوع مشاركة واحد على الأقل، وإلا سيتم النظر في جميع أنواع المنشورات."
|
815 |
+
|
816 |
+
#: admin/views/section_defaults.php:488
|
817 |
msgid "Add rule"
|
818 |
msgstr "إضافة قاعدة"
|
819 |
|
820 |
+
#: admin/views/section_defaults.php:493
|
821 |
msgid "Are you sure to remove this rule?"
|
822 |
msgstr "هل أنت متأكد من إزالة القاعدة؟"
|
823 |
|
824 |
+
#: admin/views/section_defaults.php:496
|
825 |
msgid "How the rules work"
|
826 |
msgstr "كيف تعمل القواعد"
|
827 |
|
828 |
+
#: admin/views/section_defaults.php:497
|
829 |
msgid ""
|
830 |
"Every time you save a post the post get the featured image if one of the "
|
831 |
"following rules match a property of the post. You can also set rules for "
|
835 |
"القواعد التالية تطابق خصائص المقالة. بإمكانك أيضاً تحديد قواعد للصفحات وكل "
|
836 |
"أنواع المقالات التي تدعم الصور البارزة."
|
837 |
|
838 |
+
#: admin/views/section_defaults.php:498
|
839 |
msgid ""
|
840 |
"Regardless of the order in the list the rules are applied in the following "
|
841 |
"order until a rule and a property of the post fit together:"
|
843 |
"بغض النظر عن الترتيب في القائمة، يتمّ تطبيق القواعد وفقاً للترتيب التالي إلى "
|
844 |
"أن تتوافق قاعدة مع خاصية من خصائص المقالة معاً:"
|
845 |
|
846 |
+
#: admin/views/section_defaults.php:500
|
847 |
msgid "found first content image. If not then..."
|
848 |
msgstr "العثور على أول صورة في المحتوى. إذا لم يتحقق ذلك فسيتم..."
|
849 |
|
850 |
+
#: admin/views/section_defaults.php:501
|
851 |
msgid "matched custom taxonomy. If not then..."
|
852 |
msgstr "توافق الفئة المخصصة. إذا لم يتحقق ذلك فسيتم..."
|
853 |
|
854 |
+
#: admin/views/section_defaults.php:502
|
855 |
msgid "matched tag. If not then..."
|
856 |
msgstr "توافق الوسم. إذا لم يتحقق ذلك فسيتم..."
|
857 |
|
858 |
+
#: admin/views/section_defaults.php:503
|
859 |
msgid "matched category. If not then..."
|
860 |
msgstr "توافق التصنيف. إذا لم يتحقق ذلك فسيتم..."
|
861 |
|
862 |
+
#: admin/views/section_defaults.php:504
|
863 |
msgid "matched author. If not then..."
|
864 |
msgstr "توافق الكاتب. إذا لم يتحقق ذلك فسيتم..."
|
865 |
|
866 |
+
#: admin/views/section_defaults.php:505
|
867 |
msgid "matched post type. If not then..."
|
868 |
msgstr "توافق نوع المقالة. إذا لم يتحقق ذلك فسيتم..."
|
869 |
|
870 |
+
#: admin/views/section_defaults.php:506
|
871 |
msgid "no featured image."
|
872 |
msgstr "لا يوجد صورة بارزة."
|
873 |
|
874 |
+
#: admin/views/section_defaults.php:508
|
875 |
msgid ""
|
876 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
877 |
"the post it is unforeseeable which image will become the featured image."
|
879 |
"خذ بعين الاعتبار أنه إذا كان اثنتين أو واحدة من القواعد بنفس الفئة يمكن أن "
|
880 |
"تتناسب مع المقالة فإنه من غير المتوقع أي صورة سيتم اختيارها كصورة بارزة."
|
881 |
|
882 |
+
#: admin/views/section_defaults.php:509
|
883 |
msgid "Additional rules in the premium version"
|
884 |
msgstr "هناك قواعد إضافية في النسخة المدفوعة"
|
885 |
|
886 |
+
#: admin/views/section_defaults.php:511
|
887 |
msgid "Multiple images to set them randomly as featured image"
|
888 |
msgstr "صور متعددة لضبط بشكل عشوائي كصورة مميزة"
|
889 |
|
890 |
+
#: admin/views/section_defaults.php:512
|
891 |
msgid "Random featured images at each page load"
|
892 |
msgstr "صور مميزة عشوائية في كل تحميل الصفحة"
|
893 |
|
894 |
+
#: admin/views/section_defaults.php:513
|
895 |
msgid ""
|
896 |
"The first content image can be also an image from an external server to set "
|
897 |
"it as automated featured image"
|
899 |
"الصورة الأولى في المحتوى يمكن أيضاً أن تكون صورة من خادم -سيرفر- خارجي "
|
900 |
"لاستخدامها كصورة بارزة آلياً"
|
901 |
|
902 |
+
#: admin/views/section_defaults.php:514
|
903 |
msgid ""
|
904 |
"Remove the first content image automatically after the featured image was "
|
905 |
"set successfully"
|
906 |
msgstr "إزالة الصورة الأولى المحتوى تلقائيا بعد وضع صورة مميزة بنجاح"
|
907 |
|
908 |
+
#: admin/views/section_defaults.php:515
|
909 |
msgid "Match with a search string in post title"
|
910 |
msgstr "مطابقة مع نصّ البحث في عنوان المقالة"
|
911 |
|
912 |
+
#: admin/views/section_defaults.php:516
|
913 |
msgid "Match with a selected post format"
|
914 |
msgstr "مطابقة مع بنية المقالة المحددة"
|
915 |
|
916 |
+
#: admin/views/section_defaults.php:517
|
917 |
msgid "User defined order of rules"
|
918 |
msgstr "قاعدة ترتيب محددة من قبل المستخدم"
|
919 |
|
920 |
+
#: admin/views/section_defaults.php:518
|
921 |
msgid "Import your rules from this plugin into the premium plugin"
|
922 |
msgstr ""
|
923 |
"استيراد القواعد الخاصة بك من هذا البرنامج المساعد في البرنامج المساعد قسط"
|
languages/quick-featured-images-de_DE.mo
CHANGED
Binary file
|
languages/quick-featured-images-de_DE.po
CHANGED
@@ -4,15 +4,15 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
-
"PO-Revision-Date: 2017-07-
|
9 |
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: de_DE\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 2.0.
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
@@ -28,7 +28,7 @@ msgstr ""
|
|
28 |
"sie massenhaft, in Beitragslisten und definiere Standardbilder für "
|
29 |
"zukünftige Beiträge."
|
30 |
|
31 |
-
#: admin/class-quick-featured-images-admin.php:
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
@@ -39,7 +39,7 @@ msgstr ""
|
|
39 |
"es nicht aktiviert. Falls du dieses Plugin nutzen willst, aktualisiere die "
|
40 |
"WordPress-Dateien auf die neueste Version."
|
41 |
|
42 |
-
#: admin/class-quick-featured-images-admin.php:
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
|
@@ -72,7 +72,7 @@ msgid "No changes were saved."
|
|
72 |
msgstr "Keine Änderungen gespeichert."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
-
#: admin/class-quick-featured-images-settings.php:
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Voreingestellte Beitragsbilder"
|
78 |
|
@@ -80,33 +80,33 @@ msgstr "Voreingestellte Beitragsbilder"
|
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "Stelle vorgegebene Beitragsbilder für zukünftige Inhalte ein"
|
82 |
|
83 |
-
#: admin/class-quick-featured-images-settings.php:
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr ""
|
86 |
"Stelle die Sichtbarkeit der Spalten für Beitragsbilder in "
|
87 |
"Beitragsübersichten ein"
|
88 |
|
89 |
-
#: admin/class-quick-featured-images-settings.php:
|
90 |
msgid "Columns for featured images in posts lists"
|
91 |
msgstr "Spalten für Beitragsbilder in Beitragsübersichten"
|
92 |
|
93 |
-
#: admin/class-quick-featured-images-settings.php:
|
94 |
msgid "Show additional column for featured images in lists of"
|
95 |
msgstr "Zeige eine zusätzliche Spalte für Beitragsbilder in Übersichten"
|
96 |
|
97 |
-
#: admin/class-quick-featured-images-settings.php:
|
98 |
msgid "Posts list with image column"
|
99 |
msgstr "Inhaltsliste mit Bildspalte"
|
100 |
|
101 |
-
#: admin/class-quick-featured-images-settings.php:
|
102 |
msgid "Visibility of the plugin"
|
103 |
msgstr "Sichtbarkeit des Plugins"
|
104 |
|
105 |
-
#: admin/class-quick-featured-images-settings.php:
|
106 |
msgid "Which user role may see the plugin?"
|
107 |
msgstr "Welche Nutzerrolle darf das Plugin sehen?"
|
108 |
|
109 |
-
#: admin/class-quick-featured-images-settings.php:
|
110 |
msgid ""
|
111 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
112 |
"post lists."
|
@@ -114,17 +114,17 @@ msgstr ""
|
|
114 |
"Aktiviere die Checkboxen bei jedem Inhaltstyp, um die zusätzliche Spalte in "
|
115 |
"den Beitragsübersichten anzuzeigen."
|
116 |
|
117 |
-
#: admin/class-quick-featured-images-settings.php:
|
118 |
msgid "Minimum user role to see the plugin in the backend"
|
119 |
msgstr "Mindestrolle, um das Plugin im Backend zu sehen"
|
120 |
|
121 |
-
#: admin/class-quick-featured-images-settings.php:
|
122 |
msgid "Select the minimum user role a user must have to see the plugin."
|
123 |
msgstr ""
|
124 |
"Stelle die Mindestrolle ein, die ein Nutzer haben muss, um das Plugin zu "
|
125 |
"sehen."
|
126 |
|
127 |
-
#: admin/class-quick-featured-images-settings.php:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"The rules as set in “%s” work on posts independently of this "
|
@@ -133,7 +133,7 @@ msgstr ""
|
|
133 |
"Die Regeln, wie in “%s” eingestellt, funktionieren unabhängig "
|
134 |
"von dieser Einstellung."
|
135 |
|
136 |
-
#: admin/class-quick-featured-images-settings.php:
|
137 |
msgid ""
|
138 |
"This setting controls as well whether a user will see in an image column the "
|
139 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
@@ -143,11 +143,11 @@ msgstr ""
|
|
143 |
"Vorschaubilder mit zusätzlichen Optionen oder nur die Vorschaubilder sehen "
|
144 |
"wird. Um die Bilderspalten an- und auszuschalten, nutze den oberen Abschnitt."
|
145 |
|
146 |
-
#: admin/class-quick-featured-images-settings.php:
|
147 |
msgid "This page is accessible for administrators only."
|
148 |
msgstr "Diese Seite ist nur Administratoren zugänglich."
|
149 |
|
150 |
-
#: admin/class-quick-featured-images-settings.php:
|
151 |
msgid ""
|
152 |
"The additional columns give you a quick overview about all used featured "
|
153 |
"images for every post. The Featured Image column is sortable."
|
@@ -156,7 +156,7 @@ msgstr ""
|
|
156 |
"verwendeten Beitragsbilder eines jeden Beitrags. Die Spalte der "
|
157 |
"Beitragsbilder ist sortierbar."
|
158 |
|
159 |
-
#: admin/class-quick-featured-images-settings.php:
|
160 |
msgid "Controls which minimum user role can see the plugin."
|
161 |
msgstr "Regelt, welche Mindestrolle das Plugin sehen kann."
|
162 |
|
@@ -422,20 +422,20 @@ msgstr ""
|
|
422 |
"Die Liste ist alphabetisch nach Titel sortiert. Du kannst einen Beitrag in "
|
423 |
"einem neuen Fenster bearbeiten per Klick auf seinen Link in der Liste."
|
424 |
|
425 |
-
#: admin/views/form_confirm.php:
|
426 |
msgid "Confirm the change"
|
427 |
msgstr "Änderung bestätigen"
|
428 |
|
429 |
-
#: admin/views/form_confirm.php:
|
430 |
msgid "You can not undo the operation!"
|
431 |
msgstr "Du kannst die Aktion nicht rückgängig machen!"
|
432 |
|
433 |
-
#: admin/views/form_confirm.php:
|
434 |
#: admin/views/section_results.php:86
|
435 |
msgid "Start again"
|
436 |
msgstr "Beginne neu"
|
437 |
|
438 |
-
#: admin/views/form_confirm.php:
|
439 |
msgid "or refine your selection with the following form fields."
|
440 |
msgstr "oder verfeinere deine Auswahl mit dem folgenden Feldern."
|
441 |
|
@@ -562,7 +562,7 @@ msgstr ""
|
|
562 |
|
563 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
564 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
565 |
-
#: admin/views/section_defaults.php:
|
566 |
#: admin/views/section_overview.php:91
|
567 |
msgid "Get the premium version"
|
568 |
msgstr "Hole dir die Premium-Version"
|
@@ -570,7 +570,7 @@ msgstr "Hole dir die Premium-Version"
|
|
570 |
# Path to language site
|
571 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
572 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
573 |
-
#: admin/views/section_defaults.php:
|
574 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
575 |
msgid "/"
|
576 |
msgstr "/de"
|
@@ -858,19 +858,30 @@ msgstr ""
|
|
858 |
"als Beitragsbild des Beitrags zu setzen. Sollte der Inhalt kein Bild "
|
859 |
"enthalten, werden die nächsten Regeln angewandt."
|
860 |
|
861 |
-
#: admin/views/section_defaults.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
862 |
msgid "Add rule"
|
863 |
msgstr "Regel hinzufügen"
|
864 |
|
865 |
-
#: admin/views/section_defaults.php:
|
866 |
msgid "Are you sure to remove this rule?"
|
867 |
msgstr "Willst du diese Regel wirklich löschen?"
|
868 |
|
869 |
-
#: admin/views/section_defaults.php:
|
870 |
msgid "How the rules work"
|
871 |
msgstr "Wie die Regeln funktionieren"
|
872 |
|
873 |
-
#: admin/views/section_defaults.php:
|
874 |
msgid ""
|
875 |
"Every time you save a post the post get the featured image if one of the "
|
876 |
"following rules match a property of the post. You can also set rules for "
|
@@ -881,7 +892,7 @@ msgstr ""
|
|
881 |
"zutrifft. Du kannst die Regeln auch für Seiten und alle anderen "
|
882 |
"Inhaltstypen, die Beitragsbilder unterstützen, setzen."
|
883 |
|
884 |
-
#: admin/views/section_defaults.php:
|
885 |
msgid ""
|
886 |
"Regardless of the order in the list the rules are applied in the following "
|
887 |
"order until a rule and a property of the post fit together:"
|
@@ -890,35 +901,35 @@ msgstr ""
|
|
890 |
"Reihenfolge angewandt, bis eine Regel und eine Eigenschaft des Beitrags "
|
891 |
"übereinstimmen:"
|
892 |
|
893 |
-
#: admin/views/section_defaults.php:
|
894 |
msgid "found first content image. If not then..."
|
895 |
msgstr "erstes gefundenes Bild im Beitrag. Wenn nicht, dann..."
|
896 |
|
897 |
-
#: admin/views/section_defaults.php:
|
898 |
msgid "matched custom taxonomy. If not then..."
|
899 |
msgstr "passende eigene Taxonomie. Wenn nicht, dann..."
|
900 |
|
901 |
-
#: admin/views/section_defaults.php:
|
902 |
msgid "matched tag. If not then..."
|
903 |
msgstr "passendes Schlagwort. Wenn nicht, dann..."
|
904 |
|
905 |
-
#: admin/views/section_defaults.php:
|
906 |
msgid "matched category. If not then..."
|
907 |
msgstr "passende Kategorie. Wenn nicht, dann..."
|
908 |
|
909 |
-
#: admin/views/section_defaults.php:
|
910 |
msgid "matched author. If not then..."
|
911 |
msgstr "passender Autor. Wenn nicht, dann..."
|
912 |
|
913 |
-
#: admin/views/section_defaults.php:
|
914 |
msgid "matched post type. If not then..."
|
915 |
msgstr "passender Inhaltstyp. Wenn nicht, dann..."
|
916 |
|
917 |
-
#: admin/views/section_defaults.php:
|
918 |
msgid "no featured image."
|
919 |
msgstr "kein Beitragsbild."
|
920 |
|
921 |
-
#: admin/views/section_defaults.php:
|
922 |
msgid ""
|
923 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
924 |
"the post it is unforeseeable which image will become the featured image."
|
@@ -927,19 +938,19 @@ msgstr ""
|
|
927 |
"zu einen Beitrag passen sollten, es nicht voraussagbar ist, welches Bild zum "
|
928 |
"Beitragsbild wird."
|
929 |
|
930 |
-
#: admin/views/section_defaults.php:
|
931 |
msgid "Additional rules in the premium version"
|
932 |
msgstr "Zusätzliche Regeln in der Premium-Version"
|
933 |
|
934 |
-
#: admin/views/section_defaults.php:
|
935 |
msgid "Multiple images to set them randomly as featured image"
|
936 |
msgstr "Mehrere Bilder als zufällige neue Beitragsbilder einstellen"
|
937 |
|
938 |
-
#: admin/views/section_defaults.php:
|
939 |
msgid "Random featured images at each page load"
|
940 |
msgstr "Zufällige Beitragsbilder bei jedem Seitenaufruf"
|
941 |
|
942 |
-
#: admin/views/section_defaults.php:
|
943 |
msgid ""
|
944 |
"The first content image can be also an image from an external server to set "
|
945 |
"it as automated featured image"
|
@@ -947,7 +958,7 @@ msgstr ""
|
|
947 |
"Das erste Bild im Beitrag kann auch von einem externen Server sein, um es "
|
948 |
"als Beitragsbild zu setzen"
|
949 |
|
950 |
-
#: admin/views/section_defaults.php:
|
951 |
msgid ""
|
952 |
"Remove the first content image automatically after the featured image was "
|
953 |
"set successfully"
|
@@ -955,19 +966,19 @@ msgstr ""
|
|
955 |
"Entferne das erste Bild im Inhalt automatisch, nachdem es erfolgreich als "
|
956 |
"Beitragsbild gesetzt wurde"
|
957 |
|
958 |
-
#: admin/views/section_defaults.php:
|
959 |
msgid "Match with a search string in post title"
|
960 |
msgstr "Passend zum Suchbegriff im Beitragstitel"
|
961 |
|
962 |
-
#: admin/views/section_defaults.php:
|
963 |
msgid "Match with a selected post format"
|
964 |
msgstr "Passend zum ausgewählten Beitragsformat"
|
965 |
|
966 |
-
#: admin/views/section_defaults.php:
|
967 |
msgid "User defined order of rules"
|
968 |
msgstr "Benutzerdefinierte Reihenfolge der Regeln"
|
969 |
|
970 |
-
#: admin/views/section_defaults.php:
|
971 |
msgid "Import your rules from this plugin into the premium plugin"
|
972 |
msgstr "Importiere deine Regeln von diesem Plugin in das Premium-Plugin"
|
973 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
+
"POT-Creation-Date: 2017-07-23 22:33+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-07-23 22:35+0200\n"
|
9 |
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: de_DE\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.3\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
28 |
"sie massenhaft, in Beitragslisten und definiere Standardbilder für "
|
29 |
"zukünftige Beiträge."
|
30 |
|
31 |
+
#: admin/class-quick-featured-images-admin.php:276
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
39 |
"es nicht aktiviert. Falls du dieses Plugin nutzen willst, aktualisiere die "
|
40 |
"WordPress-Dateien auf die neueste Version."
|
41 |
|
42 |
+
#: admin/class-quick-featured-images-admin.php:482
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
|
72 |
msgstr "Keine Änderungen gespeichert."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
+
#: admin/class-quick-featured-images-settings.php:605
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Voreingestellte Beitragsbilder"
|
78 |
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "Stelle vorgegebene Beitragsbilder für zukünftige Inhalte ein"
|
82 |
|
83 |
+
#: admin/class-quick-featured-images-settings.php:230
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr ""
|
86 |
"Stelle die Sichtbarkeit der Spalten für Beitragsbilder in "
|
87 |
"Beitragsübersichten ein"
|
88 |
|
89 |
+
#: admin/class-quick-featured-images-settings.php:380
|
90 |
msgid "Columns for featured images in posts lists"
|
91 |
msgstr "Spalten für Beitragsbilder in Beitragsübersichten"
|
92 |
|
93 |
+
#: admin/class-quick-featured-images-settings.php:388
|
94 |
msgid "Show additional column for featured images in lists of"
|
95 |
msgstr "Zeige eine zusätzliche Spalte für Beitragsbilder in Übersichten"
|
96 |
|
97 |
+
#: admin/class-quick-featured-images-settings.php:393
|
98 |
msgid "Posts list with image column"
|
99 |
msgstr "Inhaltsliste mit Bildspalte"
|
100 |
|
101 |
+
#: admin/class-quick-featured-images-settings.php:416
|
102 |
msgid "Visibility of the plugin"
|
103 |
msgstr "Sichtbarkeit des Plugins"
|
104 |
|
105 |
+
#: admin/class-quick-featured-images-settings.php:424
|
106 |
msgid "Which user role may see the plugin?"
|
107 |
msgstr "Welche Nutzerrolle darf das Plugin sehen?"
|
108 |
|
109 |
+
#: admin/class-quick-featured-images-settings.php:556
|
110 |
msgid ""
|
111 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
112 |
"post lists."
|
114 |
"Aktiviere die Checkboxen bei jedem Inhaltstyp, um die zusätzliche Spalte in "
|
115 |
"den Beitragsübersichten anzuzeigen."
|
116 |
|
117 |
+
#: admin/class-quick-featured-images-settings.php:568
|
118 |
msgid "Minimum user role to see the plugin in the backend"
|
119 |
msgstr "Mindestrolle, um das Plugin im Backend zu sehen"
|
120 |
|
121 |
+
#: admin/class-quick-featured-images-settings.php:604
|
122 |
msgid "Select the minimum user role a user must have to see the plugin."
|
123 |
msgstr ""
|
124 |
"Stelle die Mindestrolle ein, die ein Nutzer haben muss, um das Plugin zu "
|
125 |
"sehen."
|
126 |
|
127 |
+
#: admin/class-quick-featured-images-settings.php:605
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"The rules as set in “%s” work on posts independently of this "
|
133 |
"Die Regeln, wie in “%s” eingestellt, funktionieren unabhängig "
|
134 |
"von dieser Einstellung."
|
135 |
|
136 |
+
#: admin/class-quick-featured-images-settings.php:606
|
137 |
msgid ""
|
138 |
"This setting controls as well whether a user will see in an image column the "
|
139 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
143 |
"Vorschaubilder mit zusätzlichen Optionen oder nur die Vorschaubilder sehen "
|
144 |
"wird. Um die Bilderspalten an- und auszuschalten, nutze den oberen Abschnitt."
|
145 |
|
146 |
+
#: admin/class-quick-featured-images-settings.php:607
|
147 |
msgid "This page is accessible for administrators only."
|
148 |
msgstr "Diese Seite ist nur Administratoren zugänglich."
|
149 |
|
150 |
+
#: admin/class-quick-featured-images-settings.php:617
|
151 |
msgid ""
|
152 |
"The additional columns give you a quick overview about all used featured "
|
153 |
"images for every post. The Featured Image column is sortable."
|
156 |
"verwendeten Beitragsbilder eines jeden Beitrags. Die Spalte der "
|
157 |
"Beitragsbilder ist sortierbar."
|
158 |
|
159 |
+
#: admin/class-quick-featured-images-settings.php:626
|
160 |
msgid "Controls which minimum user role can see the plugin."
|
161 |
msgstr "Regelt, welche Mindestrolle das Plugin sehen kann."
|
162 |
|
422 |
"Die Liste ist alphabetisch nach Titel sortiert. Du kannst einen Beitrag in "
|
423 |
"einem neuen Fenster bearbeiten per Klick auf seinen Link in der Liste."
|
424 |
|
425 |
+
#: admin/views/form_confirm.php:121
|
426 |
msgid "Confirm the change"
|
427 |
msgstr "Änderung bestätigen"
|
428 |
|
429 |
+
#: admin/views/form_confirm.php:122
|
430 |
msgid "You can not undo the operation!"
|
431 |
msgstr "Du kannst die Aktion nicht rückgängig machen!"
|
432 |
|
433 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
434 |
#: admin/views/section_results.php:86
|
435 |
msgid "Start again"
|
436 |
msgstr "Beginne neu"
|
437 |
|
438 |
+
#: admin/views/form_confirm.php:183
|
439 |
msgid "or refine your selection with the following form fields."
|
440 |
msgstr "oder verfeinere deine Auswahl mit dem folgenden Feldern."
|
441 |
|
562 |
|
563 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
564 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
565 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
566 |
#: admin/views/section_overview.php:91
|
567 |
msgid "Get the premium version"
|
568 |
msgstr "Hole dir die Premium-Version"
|
570 |
# Path to language site
|
571 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
572 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
573 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
574 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
575 |
msgid "/"
|
576 |
msgstr "/de"
|
858 |
"als Beitragsbild des Beitrags zu setzen. Sollte der Inhalt kein Bild "
|
859 |
"enthalten, werden die nächsten Regeln angewandt."
|
860 |
|
861 |
+
#: admin/views/section_defaults.php:255
|
862 |
+
msgid "For which post types should this rule be applied?"
|
863 |
+
msgstr "Für welche Inhaltstypen sollte diese Regel angewendet werden?"
|
864 |
+
|
865 |
+
#: admin/views/section_defaults.php:282
|
866 |
+
msgid ""
|
867 |
+
"Select at least one post type, otherwise all post types will be considered."
|
868 |
+
msgstr ""
|
869 |
+
"Wähle mindestens einen Inhaltstyp, sonst werden alle Inhaltstypen "
|
870 |
+
"berücksichtigt."
|
871 |
+
|
872 |
+
#: admin/views/section_defaults.php:488
|
873 |
msgid "Add rule"
|
874 |
msgstr "Regel hinzufügen"
|
875 |
|
876 |
+
#: admin/views/section_defaults.php:493
|
877 |
msgid "Are you sure to remove this rule?"
|
878 |
msgstr "Willst du diese Regel wirklich löschen?"
|
879 |
|
880 |
+
#: admin/views/section_defaults.php:496
|
881 |
msgid "How the rules work"
|
882 |
msgstr "Wie die Regeln funktionieren"
|
883 |
|
884 |
+
#: admin/views/section_defaults.php:497
|
885 |
msgid ""
|
886 |
"Every time you save a post the post get the featured image if one of the "
|
887 |
"following rules match a property of the post. You can also set rules for "
|
892 |
"zutrifft. Du kannst die Regeln auch für Seiten und alle anderen "
|
893 |
"Inhaltstypen, die Beitragsbilder unterstützen, setzen."
|
894 |
|
895 |
+
#: admin/views/section_defaults.php:498
|
896 |
msgid ""
|
897 |
"Regardless of the order in the list the rules are applied in the following "
|
898 |
"order until a rule and a property of the post fit together:"
|
901 |
"Reihenfolge angewandt, bis eine Regel und eine Eigenschaft des Beitrags "
|
902 |
"übereinstimmen:"
|
903 |
|
904 |
+
#: admin/views/section_defaults.php:500
|
905 |
msgid "found first content image. If not then..."
|
906 |
msgstr "erstes gefundenes Bild im Beitrag. Wenn nicht, dann..."
|
907 |
|
908 |
+
#: admin/views/section_defaults.php:501
|
909 |
msgid "matched custom taxonomy. If not then..."
|
910 |
msgstr "passende eigene Taxonomie. Wenn nicht, dann..."
|
911 |
|
912 |
+
#: admin/views/section_defaults.php:502
|
913 |
msgid "matched tag. If not then..."
|
914 |
msgstr "passendes Schlagwort. Wenn nicht, dann..."
|
915 |
|
916 |
+
#: admin/views/section_defaults.php:503
|
917 |
msgid "matched category. If not then..."
|
918 |
msgstr "passende Kategorie. Wenn nicht, dann..."
|
919 |
|
920 |
+
#: admin/views/section_defaults.php:504
|
921 |
msgid "matched author. If not then..."
|
922 |
msgstr "passender Autor. Wenn nicht, dann..."
|
923 |
|
924 |
+
#: admin/views/section_defaults.php:505
|
925 |
msgid "matched post type. If not then..."
|
926 |
msgstr "passender Inhaltstyp. Wenn nicht, dann..."
|
927 |
|
928 |
+
#: admin/views/section_defaults.php:506
|
929 |
msgid "no featured image."
|
930 |
msgstr "kein Beitragsbild."
|
931 |
|
932 |
+
#: admin/views/section_defaults.php:508
|
933 |
msgid ""
|
934 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
935 |
"the post it is unforeseeable which image will become the featured image."
|
938 |
"zu einen Beitrag passen sollten, es nicht voraussagbar ist, welches Bild zum "
|
939 |
"Beitragsbild wird."
|
940 |
|
941 |
+
#: admin/views/section_defaults.php:509
|
942 |
msgid "Additional rules in the premium version"
|
943 |
msgstr "Zusätzliche Regeln in der Premium-Version"
|
944 |
|
945 |
+
#: admin/views/section_defaults.php:511
|
946 |
msgid "Multiple images to set them randomly as featured image"
|
947 |
msgstr "Mehrere Bilder als zufällige neue Beitragsbilder einstellen"
|
948 |
|
949 |
+
#: admin/views/section_defaults.php:512
|
950 |
msgid "Random featured images at each page load"
|
951 |
msgstr "Zufällige Beitragsbilder bei jedem Seitenaufruf"
|
952 |
|
953 |
+
#: admin/views/section_defaults.php:513
|
954 |
msgid ""
|
955 |
"The first content image can be also an image from an external server to set "
|
956 |
"it as automated featured image"
|
958 |
"Das erste Bild im Beitrag kann auch von einem externen Server sein, um es "
|
959 |
"als Beitragsbild zu setzen"
|
960 |
|
961 |
+
#: admin/views/section_defaults.php:514
|
962 |
msgid ""
|
963 |
"Remove the first content image automatically after the featured image was "
|
964 |
"set successfully"
|
966 |
"Entferne das erste Bild im Inhalt automatisch, nachdem es erfolgreich als "
|
967 |
"Beitragsbild gesetzt wurde"
|
968 |
|
969 |
+
#: admin/views/section_defaults.php:515
|
970 |
msgid "Match with a search string in post title"
|
971 |
msgstr "Passend zum Suchbegriff im Beitragstitel"
|
972 |
|
973 |
+
#: admin/views/section_defaults.php:516
|
974 |
msgid "Match with a selected post format"
|
975 |
msgstr "Passend zum ausgewählten Beitragsformat"
|
976 |
|
977 |
+
#: admin/views/section_defaults.php:517
|
978 |
msgid "User defined order of rules"
|
979 |
msgstr "Benutzerdefinierte Reihenfolge der Regeln"
|
980 |
|
981 |
+
#: admin/views/section_defaults.php:518
|
982 |
msgid "Import your rules from this plugin into the premium plugin"
|
983 |
msgstr "Importiere deine Regeln von diesem Plugin in das Premium-Plugin"
|
984 |
|
languages/quick-featured-images-es_ES.mo
CHANGED
Binary file
|
languages/quick-featured-images-es_ES.po
CHANGED
@@ -4,19 +4,19 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images Pro\n"
|
6 |
"Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
-
"PO-Revision-Date: 2017-07-
|
|
|
9 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language: es_ES\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.0.
|
15 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
16 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
19 |
-
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
@@ -28,7 +28,7 @@ msgstr ""
|
|
28 |
"Establécelas, reemplázalas y bórralas a granel, en la lista de mensajes y "
|
29 |
"configurar imágenes por defecto para mensajes futuros."
|
30 |
|
31 |
-
#: admin/class-quick-featured-images-admin.php:
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
@@ -39,7 +39,7 @@ msgstr ""
|
|
39 |
"WordPress no lo ha activado. Si quieres usar este plugin debes actualizar "
|
40 |
"los archivos de Word Press a la última versión."
|
41 |
|
42 |
-
#: admin/class-quick-featured-images-admin.php:
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
|
@@ -72,7 +72,7 @@ msgid "No changes were saved."
|
|
72 |
msgstr "No hay ningún cambio guardado."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
-
#: admin/class-quick-featured-images-settings.php:
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Restablece las imágenes destacadas"
|
78 |
|
@@ -81,54 +81,54 @@ msgid "Set default featured images for future posts"
|
|
81 |
msgstr ""
|
82 |
"Establece las imágenes destacadas predeterminadas para los futuros posts"
|
83 |
|
84 |
-
#: admin/class-quick-featured-images-settings.php:
|
85 |
msgid "Set the visibility of columns of featured images in posts lists"
|
86 |
msgstr ""
|
87 |
"Establece la visibilidad de las columnas de imágenes destacadas en las "
|
88 |
"listas de post"
|
89 |
|
90 |
-
#: admin/class-quick-featured-images-settings.php:
|
91 |
msgid "Columns for featured images in posts lists"
|
92 |
msgstr "Las columnas para las imágenes destacadas en las listas de posts"
|
93 |
|
94 |
-
#: admin/class-quick-featured-images-settings.php:
|
95 |
msgid "Show additional column for featured images in lists of"
|
96 |
msgstr ""
|
97 |
"Muestra las columnas adicionales para las imágenes destacadas en las listas "
|
98 |
"de"
|
99 |
|
100 |
-
#: admin/class-quick-featured-images-settings.php:
|
101 |
msgid "Posts list with image column"
|
102 |
msgstr ""
|
103 |
"Muestra las columnas adicionales para las imágenes destacadas en las listas "
|
104 |
"de"
|
105 |
|
106 |
-
#: admin/class-quick-featured-images-settings.php:
|
107 |
msgid "Visibility of the plugin"
|
108 |
msgstr "Visibilidad del plugin"
|
109 |
|
110 |
-
#: admin/class-quick-featured-images-settings.php:
|
111 |
msgid "Which user role may see the plugin?"
|
112 |
msgstr "¿Qué rol de usuario puede ver el plugin?"
|
113 |
|
114 |
-
#: admin/class-quick-featured-images-settings.php:
|
115 |
msgid ""
|
116 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
117 |
"post lists."
|
118 |
msgstr ""
|
119 |
-
"Activa las casillas de verificación (los checkboxes) en cada tipo de
|
120 |
-
"para mostrar las columnas extras en las listas de post."
|
121 |
|
122 |
-
#: admin/class-quick-featured-images-settings.php:
|
123 |
msgid "Minimum user role to see the plugin in the backend"
|
124 |
msgstr "Papel del usuario mínima para ver el plugin en el backend"
|
125 |
|
126 |
-
#: admin/class-quick-featured-images-settings.php:
|
127 |
msgid "Select the minimum user role a user must have to see the plugin."
|
128 |
msgstr ""
|
129 |
"Selecciona el rol de usuario mínimo un usuario debe tener para ver el plugin."
|
130 |
|
131 |
-
#: admin/class-quick-featured-images-settings.php:
|
132 |
#, php-format
|
133 |
msgid ""
|
134 |
"The rules as set in “%s” work on posts independently of this "
|
@@ -137,7 +137,7 @@ msgstr ""
|
|
137 |
"Las normas que figuran en “%s” funciona en los mensajes "
|
138 |
"independientemente de este ajuste."
|
139 |
|
140 |
-
#: admin/class-quick-featured-images-settings.php:
|
141 |
msgid ""
|
142 |
"This setting controls as well whether a user will see in an image column the "
|
143 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
@@ -147,11 +147,11 @@ msgstr ""
|
|
147 |
"destacada con los enlaces de acción o sólo las imágenes destacadas. Para "
|
148 |
"controlar la columna usando la porción superior."
|
149 |
|
150 |
-
#: admin/class-quick-featured-images-settings.php:
|
151 |
msgid "This page is accessible for administrators only."
|
152 |
msgstr "Esta página es accesible sólo para los administradores."
|
153 |
|
154 |
-
#: admin/class-quick-featured-images-settings.php:
|
155 |
msgid ""
|
156 |
"The additional columns give you a quick overview about all used featured "
|
157 |
"images for every post. The Featured Image column is sortable."
|
@@ -160,7 +160,7 @@ msgstr ""
|
|
160 |
"imágenes destacadas usadas por cada post La columna de la imagen destacada "
|
161 |
"es clasificable."
|
162 |
|
163 |
-
#: admin/class-quick-featured-images-settings.php:
|
164 |
msgid "Controls which minimum user role can see the plugin."
|
165 |
msgstr "Controla qué papel mínimo el usuario puede ver el plugin."
|
166 |
|
@@ -224,7 +224,7 @@ msgstr "Considera solamente posts sin cualquier imagen destacada"
|
|
224 |
|
225 |
#: admin/class-quick-featured-images-tools.php:599
|
226 |
msgid "Post Type Filter"
|
227 |
-
msgstr "El filtro de tipo de
|
228 |
|
229 |
#: admin/class-quick-featured-images-tools.php:600
|
230 |
msgid "Category Filter"
|
@@ -310,7 +310,7 @@ msgstr "Selecciona la categoría"
|
|
310 |
|
311 |
#: admin/views/filter_post_types.php:2
|
312 |
msgid "Select post types"
|
313 |
-
msgstr "Selecciona el tipo de
|
314 |
|
315 |
#: admin/views/filter_post_types.php:2
|
316 |
msgid "You can select posts and pages."
|
@@ -429,20 +429,20 @@ msgstr ""
|
|
429 |
"La lista está ordenada alfabéticamente por el titulo de post. Puedes editar "
|
430 |
"post en una ventana nueva al hacer clic en su enlace en la lista."
|
431 |
|
432 |
-
#: admin/views/form_confirm.php:
|
433 |
msgid "Confirm the change"
|
434 |
msgstr "Confirma el cambio"
|
435 |
|
436 |
-
#: admin/views/form_confirm.php:
|
437 |
msgid "You can not undo the operation!"
|
438 |
msgstr "¡No puedes deshacer la operación!"
|
439 |
|
440 |
-
#: admin/views/form_confirm.php:
|
441 |
#: admin/views/section_results.php:86
|
442 |
msgid "Start again"
|
443 |
msgstr "Empieza de nuevo"
|
444 |
|
445 |
-
#: admin/views/form_confirm.php:
|
446 |
msgid "or refine your selection with the following form fields."
|
447 |
msgstr "o refina su selección con los siguientes campos del formulario."
|
448 |
|
@@ -567,17 +567,17 @@ msgstr "Reemplaza las imágenes destacadas por la imagen seleccionada"
|
|
567 |
|
568 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
569 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
570 |
-
#: admin/views/section_defaults.php:
|
571 |
#: admin/views/section_overview.php:91
|
572 |
msgid "Get the premium version"
|
573 |
msgstr "Obtener la Pro versión"
|
574 |
|
575 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
576 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
577 |
-
#: admin/views/section_defaults.php:
|
578 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
579 |
msgid "/"
|
580 |
-
msgstr "/
|
581 |
|
582 |
#: admin/views/form_select.php:86
|
583 |
msgid "Optional: Add a filter"
|
@@ -606,8 +606,8 @@ msgstr ""
|
|
606 |
#: admin/views/form_select.php:95
|
607 |
msgid "Search by post type. By default all posts and pages will be affected."
|
608 |
msgstr ""
|
609 |
-
"Busca por el tipo de
|
610 |
-
"serán afectados."
|
611 |
|
612 |
#: admin/views/form_select.php:98
|
613 |
msgid "Search posts by category"
|
@@ -792,7 +792,7 @@ msgstr "coincide con"
|
|
792 |
|
793 |
#: admin/views/section_defaults.php:59
|
794 |
msgid "Post Type"
|
795 |
-
msgstr "El tipo de
|
796 |
|
797 |
#: admin/views/section_defaults.php:204
|
798 |
msgid "Default featured images for future posts"
|
@@ -863,19 +863,30 @@ msgstr ""
|
|
863 |
"el post no tiene las imágenes del contenido se aplicarán las reglas "
|
864 |
"siguientes."
|
865 |
|
866 |
-
#: admin/views/section_defaults.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
msgid "Add rule"
|
868 |
msgstr "Añade la regla"
|
869 |
|
870 |
-
#: admin/views/section_defaults.php:
|
871 |
msgid "Are you sure to remove this rule?"
|
872 |
msgstr "¿Estás seguro de que deseas eliminar esta regla?"
|
873 |
|
874 |
-
#: admin/views/section_defaults.php:
|
875 |
msgid "How the rules work"
|
876 |
msgstr "Cómo funcionan las reglas"
|
877 |
|
878 |
-
#: admin/views/section_defaults.php:
|
879 |
msgid ""
|
880 |
"Every time you save a post the post get the featured image if one of the "
|
881 |
"following rules match a property of the post. You can also set rules for "
|
@@ -883,10 +894,10 @@ msgid ""
|
|
883 |
msgstr ""
|
884 |
"Cada vez que guardas el post, el post obtiene la imagen destacada si una de "
|
885 |
"las reglas siguientes coincide con la propiedad del post. También puedes "
|
886 |
-
"establecer las reglas para las páginas y todos otros
|
887 |
-
"soportan imágenes destacadas."
|
888 |
|
889 |
-
#: admin/views/section_defaults.php:
|
890 |
msgid ""
|
891 |
"Regardless of the order in the list the rules are applied in the following "
|
892 |
"order until a rule and a property of the post fit together:"
|
@@ -894,35 +905,35 @@ msgstr ""
|
|
894 |
"Independientemente del orden de la lista, las reglas se aplican en el orden "
|
895 |
"siguiente hasta que la regla y la propiedad encajen bien:"
|
896 |
|
897 |
-
#: admin/views/section_defaults.php:
|
898 |
msgid "found first content image. If not then..."
|
899 |
msgstr "la primera imagen del contenido encontrada. Si no es así, entonces…."
|
900 |
|
901 |
-
#: admin/views/section_defaults.php:
|
902 |
msgid "matched custom taxonomy. If not then..."
|
903 |
msgstr "la taxonomía correspondiente personalizada. Si no es así entonces…."
|
904 |
|
905 |
-
#: admin/views/section_defaults.php:
|
906 |
msgid "matched tag. If not then..."
|
907 |
msgstr "la etiqueta correspondiente. Si no es así, entonces…."
|
908 |
|
909 |
-
#: admin/views/section_defaults.php:
|
910 |
msgid "matched category. If not then..."
|
911 |
msgstr "la categoría correspondiente. Si no es así, entonces…."
|
912 |
|
913 |
-
#: admin/views/section_defaults.php:
|
914 |
msgid "matched author. If not then..."
|
915 |
msgstr "el autor correspondiente. Si no es así, entonces….."
|
916 |
|
917 |
-
#: admin/views/section_defaults.php:
|
918 |
msgid "matched post type. If not then..."
|
919 |
-
msgstr "el
|
920 |
|
921 |
-
#: admin/views/section_defaults.php:
|
922 |
msgid "no featured image."
|
923 |
msgstr "no hay ninguna imagen destacada."
|
924 |
|
925 |
-
#: admin/views/section_defaults.php:
|
926 |
msgid ""
|
927 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
928 |
"the post it is unforeseeable which image will become the featured image."
|
@@ -930,20 +941,20 @@ msgstr ""
|
|
930 |
"Ten en cuenta que si dos reglas o más de misma taxonomía encajan en el post, "
|
931 |
"es imprevisible cual imagen llegará a ser la imagen destacada."
|
932 |
|
933 |
-
#: admin/views/section_defaults.php:
|
934 |
msgid "Additional rules in the premium version"
|
935 |
msgstr "Reglas adicionales en la Pro versión"
|
936 |
|
937 |
-
#: admin/views/section_defaults.php:
|
938 |
msgid "Multiple images to set them randomly as featured image"
|
939 |
msgstr ""
|
940 |
"Múltiples imágenes para definirlas aleatoriamente como imagen destacada"
|
941 |
|
942 |
-
#: admin/views/section_defaults.php:
|
943 |
msgid "Random featured images at each page load"
|
944 |
msgstr "Imágenes aleatorias en cada carga de página"
|
945 |
|
946 |
-
#: admin/views/section_defaults.php:
|
947 |
msgid ""
|
948 |
"The first content image can be also an image from an external server to set "
|
949 |
"it as automated featured image"
|
@@ -951,7 +962,7 @@ msgstr ""
|
|
951 |
"La primera imagen de contenido puede ser también una imagen desde un "
|
952 |
"servidor externo para configurarlo como automatizado imágen destacada"
|
953 |
|
954 |
-
#: admin/views/section_defaults.php:
|
955 |
msgid ""
|
956 |
"Remove the first content image automatically after the featured image was "
|
957 |
"set successfully"
|
@@ -959,19 +970,19 @@ msgstr ""
|
|
959 |
"Eliminar la primera imagen de contenido automáticamente después de que la "
|
960 |
"imagen destacada se haya configurado correctamente"
|
961 |
|
962 |
-
#: admin/views/section_defaults.php:
|
963 |
msgid "Match with a search string in post title"
|
964 |
msgstr "El término de búsqueda en el título de la entrada"
|
965 |
|
966 |
-
#: admin/views/section_defaults.php:
|
967 |
msgid "Match with a selected post format"
|
968 |
msgstr "Coincide con un formato de entrada seleccionado"
|
969 |
|
970 |
-
#: admin/views/section_defaults.php:
|
971 |
msgid "User defined order of rules"
|
972 |
msgstr "La orden de encargo de las reglas"
|
973 |
|
974 |
-
#: admin/views/section_defaults.php:
|
975 |
msgid "Import your rules from this plugin into the premium plugin"
|
976 |
msgstr "Importe sus reglas desde este complemento al complemento premium"
|
977 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images Pro\n"
|
6 |
"Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
|
7 |
+
"POT-Creation-Date: 2017-07-23 22:26+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-07-23 22:32+0200\n"
|
9 |
+
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: es_ES\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.3\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
28 |
"Establécelas, reemplázalas y bórralas a granel, en la lista de mensajes y "
|
29 |
"configurar imágenes por defecto para mensajes futuros."
|
30 |
|
31 |
+
#: admin/class-quick-featured-images-admin.php:276
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
39 |
"WordPress no lo ha activado. Si quieres usar este plugin debes actualizar "
|
40 |
"los archivos de Word Press a la última versión."
|
41 |
|
42 |
+
#: admin/class-quick-featured-images-admin.php:482
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
|
72 |
msgstr "No hay ningún cambio guardado."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
+
#: admin/class-quick-featured-images-settings.php:605
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Restablece las imágenes destacadas"
|
78 |
|
81 |
msgstr ""
|
82 |
"Establece las imágenes destacadas predeterminadas para los futuros posts"
|
83 |
|
84 |
+
#: admin/class-quick-featured-images-settings.php:230
|
85 |
msgid "Set the visibility of columns of featured images in posts lists"
|
86 |
msgstr ""
|
87 |
"Establece la visibilidad de las columnas de imágenes destacadas en las "
|
88 |
"listas de post"
|
89 |
|
90 |
+
#: admin/class-quick-featured-images-settings.php:380
|
91 |
msgid "Columns for featured images in posts lists"
|
92 |
msgstr "Las columnas para las imágenes destacadas en las listas de posts"
|
93 |
|
94 |
+
#: admin/class-quick-featured-images-settings.php:388
|
95 |
msgid "Show additional column for featured images in lists of"
|
96 |
msgstr ""
|
97 |
"Muestra las columnas adicionales para las imágenes destacadas en las listas "
|
98 |
"de"
|
99 |
|
100 |
+
#: admin/class-quick-featured-images-settings.php:393
|
101 |
msgid "Posts list with image column"
|
102 |
msgstr ""
|
103 |
"Muestra las columnas adicionales para las imágenes destacadas en las listas "
|
104 |
"de"
|
105 |
|
106 |
+
#: admin/class-quick-featured-images-settings.php:416
|
107 |
msgid "Visibility of the plugin"
|
108 |
msgstr "Visibilidad del plugin"
|
109 |
|
110 |
+
#: admin/class-quick-featured-images-settings.php:424
|
111 |
msgid "Which user role may see the plugin?"
|
112 |
msgstr "¿Qué rol de usuario puede ver el plugin?"
|
113 |
|
114 |
+
#: admin/class-quick-featured-images-settings.php:556
|
115 |
msgid ""
|
116 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
117 |
"post lists."
|
118 |
msgstr ""
|
119 |
+
"Activa las casillas de verificación (los checkboxes) en cada tipo de "
|
120 |
+
"contenido para mostrar las columnas extras en las listas de post."
|
121 |
|
122 |
+
#: admin/class-quick-featured-images-settings.php:568
|
123 |
msgid "Minimum user role to see the plugin in the backend"
|
124 |
msgstr "Papel del usuario mínima para ver el plugin en el backend"
|
125 |
|
126 |
+
#: admin/class-quick-featured-images-settings.php:604
|
127 |
msgid "Select the minimum user role a user must have to see the plugin."
|
128 |
msgstr ""
|
129 |
"Selecciona el rol de usuario mínimo un usuario debe tener para ver el plugin."
|
130 |
|
131 |
+
#: admin/class-quick-featured-images-settings.php:605
|
132 |
#, php-format
|
133 |
msgid ""
|
134 |
"The rules as set in “%s” work on posts independently of this "
|
137 |
"Las normas que figuran en “%s” funciona en los mensajes "
|
138 |
"independientemente de este ajuste."
|
139 |
|
140 |
+
#: admin/class-quick-featured-images-settings.php:606
|
141 |
msgid ""
|
142 |
"This setting controls as well whether a user will see in an image column the "
|
143 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
147 |
"destacada con los enlaces de acción o sólo las imágenes destacadas. Para "
|
148 |
"controlar la columna usando la porción superior."
|
149 |
|
150 |
+
#: admin/class-quick-featured-images-settings.php:607
|
151 |
msgid "This page is accessible for administrators only."
|
152 |
msgstr "Esta página es accesible sólo para los administradores."
|
153 |
|
154 |
+
#: admin/class-quick-featured-images-settings.php:617
|
155 |
msgid ""
|
156 |
"The additional columns give you a quick overview about all used featured "
|
157 |
"images for every post. The Featured Image column is sortable."
|
160 |
"imágenes destacadas usadas por cada post La columna de la imagen destacada "
|
161 |
"es clasificable."
|
162 |
|
163 |
+
#: admin/class-quick-featured-images-settings.php:626
|
164 |
msgid "Controls which minimum user role can see the plugin."
|
165 |
msgstr "Controla qué papel mínimo el usuario puede ver el plugin."
|
166 |
|
224 |
|
225 |
#: admin/class-quick-featured-images-tools.php:599
|
226 |
msgid "Post Type Filter"
|
227 |
+
msgstr "El filtro de tipo de contenido"
|
228 |
|
229 |
#: admin/class-quick-featured-images-tools.php:600
|
230 |
msgid "Category Filter"
|
310 |
|
311 |
#: admin/views/filter_post_types.php:2
|
312 |
msgid "Select post types"
|
313 |
+
msgstr "Selecciona el tipo de contenido"
|
314 |
|
315 |
#: admin/views/filter_post_types.php:2
|
316 |
msgid "You can select posts and pages."
|
429 |
"La lista está ordenada alfabéticamente por el titulo de post. Puedes editar "
|
430 |
"post en una ventana nueva al hacer clic en su enlace en la lista."
|
431 |
|
432 |
+
#: admin/views/form_confirm.php:121
|
433 |
msgid "Confirm the change"
|
434 |
msgstr "Confirma el cambio"
|
435 |
|
436 |
+
#: admin/views/form_confirm.php:122
|
437 |
msgid "You can not undo the operation!"
|
438 |
msgstr "¡No puedes deshacer la operación!"
|
439 |
|
440 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
441 |
#: admin/views/section_results.php:86
|
442 |
msgid "Start again"
|
443 |
msgstr "Empieza de nuevo"
|
444 |
|
445 |
+
#: admin/views/form_confirm.php:183
|
446 |
msgid "or refine your selection with the following form fields."
|
447 |
msgstr "o refina su selección con los siguientes campos del formulario."
|
448 |
|
567 |
|
568 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
569 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
570 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
571 |
#: admin/views/section_overview.php:91
|
572 |
msgid "Get the premium version"
|
573 |
msgstr "Obtener la Pro versión"
|
574 |
|
575 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
576 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
577 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
578 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
579 |
msgid "/"
|
580 |
+
msgstr "/"
|
581 |
|
582 |
#: admin/views/form_select.php:86
|
583 |
msgid "Optional: Add a filter"
|
606 |
#: admin/views/form_select.php:95
|
607 |
msgid "Search by post type. By default all posts and pages will be affected."
|
608 |
msgstr ""
|
609 |
+
"Busca por el tipo de contenido. De forma predeterminada todos los post y "
|
610 |
+
"páginas serán afectados."
|
611 |
|
612 |
#: admin/views/form_select.php:98
|
613 |
msgid "Search posts by category"
|
792 |
|
793 |
#: admin/views/section_defaults.php:59
|
794 |
msgid "Post Type"
|
795 |
+
msgstr "El tipo de contenido"
|
796 |
|
797 |
#: admin/views/section_defaults.php:204
|
798 |
msgid "Default featured images for future posts"
|
863 |
"el post no tiene las imágenes del contenido se aplicarán las reglas "
|
864 |
"siguientes."
|
865 |
|
866 |
+
#: admin/views/section_defaults.php:255
|
867 |
+
msgid "For which post types should this rule be applied?"
|
868 |
+
msgstr "¿Para qué tipos de contenidos debe aplicarse esta regla?"
|
869 |
+
|
870 |
+
#: admin/views/section_defaults.php:282
|
871 |
+
msgid ""
|
872 |
+
"Select at least one post type, otherwise all post types will be considered."
|
873 |
+
msgstr ""
|
874 |
+
"Seleccione al menos un tipo de contenido, de lo contrario se considerarán "
|
875 |
+
"todos los tipos de contenidos."
|
876 |
+
|
877 |
+
#: admin/views/section_defaults.php:488
|
878 |
msgid "Add rule"
|
879 |
msgstr "Añade la regla"
|
880 |
|
881 |
+
#: admin/views/section_defaults.php:493
|
882 |
msgid "Are you sure to remove this rule?"
|
883 |
msgstr "¿Estás seguro de que deseas eliminar esta regla?"
|
884 |
|
885 |
+
#: admin/views/section_defaults.php:496
|
886 |
msgid "How the rules work"
|
887 |
msgstr "Cómo funcionan las reglas"
|
888 |
|
889 |
+
#: admin/views/section_defaults.php:497
|
890 |
msgid ""
|
891 |
"Every time you save a post the post get the featured image if one of the "
|
892 |
"following rules match a property of the post. You can also set rules for "
|
894 |
msgstr ""
|
895 |
"Cada vez que guardas el post, el post obtiene la imagen destacada si una de "
|
896 |
"las reglas siguientes coincide con la propiedad del post. También puedes "
|
897 |
+
"establecer las reglas para las páginas y todos otros tipos de contenidos "
|
898 |
+
"actuales que soportan imágenes destacadas."
|
899 |
|
900 |
+
#: admin/views/section_defaults.php:498
|
901 |
msgid ""
|
902 |
"Regardless of the order in the list the rules are applied in the following "
|
903 |
"order until a rule and a property of the post fit together:"
|
905 |
"Independientemente del orden de la lista, las reglas se aplican en el orden "
|
906 |
"siguiente hasta que la regla y la propiedad encajen bien:"
|
907 |
|
908 |
+
#: admin/views/section_defaults.php:500
|
909 |
msgid "found first content image. If not then..."
|
910 |
msgstr "la primera imagen del contenido encontrada. Si no es así, entonces…."
|
911 |
|
912 |
+
#: admin/views/section_defaults.php:501
|
913 |
msgid "matched custom taxonomy. If not then..."
|
914 |
msgstr "la taxonomía correspondiente personalizada. Si no es así entonces…."
|
915 |
|
916 |
+
#: admin/views/section_defaults.php:502
|
917 |
msgid "matched tag. If not then..."
|
918 |
msgstr "la etiqueta correspondiente. Si no es así, entonces…."
|
919 |
|
920 |
+
#: admin/views/section_defaults.php:503
|
921 |
msgid "matched category. If not then..."
|
922 |
msgstr "la categoría correspondiente. Si no es así, entonces…."
|
923 |
|
924 |
+
#: admin/views/section_defaults.php:504
|
925 |
msgid "matched author. If not then..."
|
926 |
msgstr "el autor correspondiente. Si no es así, entonces….."
|
927 |
|
928 |
+
#: admin/views/section_defaults.php:505
|
929 |
msgid "matched post type. If not then..."
|
930 |
+
msgstr "el tipo de contenido correspondiente. Si no es así, entonces….."
|
931 |
|
932 |
+
#: admin/views/section_defaults.php:506
|
933 |
msgid "no featured image."
|
934 |
msgstr "no hay ninguna imagen destacada."
|
935 |
|
936 |
+
#: admin/views/section_defaults.php:508
|
937 |
msgid ""
|
938 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
939 |
"the post it is unforeseeable which image will become the featured image."
|
941 |
"Ten en cuenta que si dos reglas o más de misma taxonomía encajan en el post, "
|
942 |
"es imprevisible cual imagen llegará a ser la imagen destacada."
|
943 |
|
944 |
+
#: admin/views/section_defaults.php:509
|
945 |
msgid "Additional rules in the premium version"
|
946 |
msgstr "Reglas adicionales en la Pro versión"
|
947 |
|
948 |
+
#: admin/views/section_defaults.php:511
|
949 |
msgid "Multiple images to set them randomly as featured image"
|
950 |
msgstr ""
|
951 |
"Múltiples imágenes para definirlas aleatoriamente como imagen destacada"
|
952 |
|
953 |
+
#: admin/views/section_defaults.php:512
|
954 |
msgid "Random featured images at each page load"
|
955 |
msgstr "Imágenes aleatorias en cada carga de página"
|
956 |
|
957 |
+
#: admin/views/section_defaults.php:513
|
958 |
msgid ""
|
959 |
"The first content image can be also an image from an external server to set "
|
960 |
"it as automated featured image"
|
962 |
"La primera imagen de contenido puede ser también una imagen desde un "
|
963 |
"servidor externo para configurarlo como automatizado imágen destacada"
|
964 |
|
965 |
+
#: admin/views/section_defaults.php:514
|
966 |
msgid ""
|
967 |
"Remove the first content image automatically after the featured image was "
|
968 |
"set successfully"
|
970 |
"Eliminar la primera imagen de contenido automáticamente después de que la "
|
971 |
"imagen destacada se haya configurado correctamente"
|
972 |
|
973 |
+
#: admin/views/section_defaults.php:515
|
974 |
msgid "Match with a search string in post title"
|
975 |
msgstr "El término de búsqueda en el título de la entrada"
|
976 |
|
977 |
+
#: admin/views/section_defaults.php:516
|
978 |
msgid "Match with a selected post format"
|
979 |
msgstr "Coincide con un formato de entrada seleccionado"
|
980 |
|
981 |
+
#: admin/views/section_defaults.php:517
|
982 |
msgid "User defined order of rules"
|
983 |
msgstr "La orden de encargo de las reglas"
|
984 |
|
985 |
+
#: admin/views/section_defaults.php:518
|
986 |
msgid "Import your rules from this plugin into the premium plugin"
|
987 |
msgstr "Importe sus reglas desde este complemento al complemento premium"
|
988 |
|
languages/quick-featured-images-fr_FR.mo
CHANGED
Binary file
|
languages/quick-featured-images-fr_FR.po
CHANGED
@@ -4,19 +4,19 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
-
"PO-Revision-Date: 2017-07-
|
|
|
9 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language: fr_FR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.0.
|
15 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
16 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
-
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
@@ -28,7 +28,7 @@ msgstr ""
|
|
28 |
"supprimer en batch dans les listes d'articles, et installer les \"images à "
|
29 |
"la Une\" pour les futurs articles."
|
30 |
|
31 |
-
#: admin/class-quick-featured-images-admin.php:
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
@@ -38,7 +38,7 @@ msgstr ""
|
|
38 |
"Ce plugin nécessite au minimum la version %s de WordPress. Il n'a donc pas "
|
39 |
"été activé. Pour l'utiliser, mettez WordPress à jour."
|
40 |
|
41 |
-
#: admin/class-quick-featured-images-admin.php:
|
42 |
#, php-format
|
43 |
msgid "Welcome to %s! You can find the plugin at %s."
|
44 |
msgstr "Bienvenue, %s! Vous pouvez trouver le plugin à %s."
|
@@ -71,7 +71,7 @@ msgid "No changes were saved."
|
|
71 |
msgstr "Aucune modification n'a été enregistrée."
|
72 |
|
73 |
#: admin/class-quick-featured-images-defaults.php:253
|
74 |
-
#: admin/class-quick-featured-images-settings.php:
|
75 |
msgid "Preset Featured Images"
|
76 |
msgstr "Préparer les images en avant"
|
77 |
|
@@ -79,51 +79,51 @@ msgstr "Préparer les images en avant"
|
|
79 |
msgid "Set default featured images for future posts"
|
80 |
msgstr "Définir l' image en avant par défaut pour les futurs articles"
|
81 |
|
82 |
-
#: admin/class-quick-featured-images-settings.php:
|
83 |
msgid "Set the visibility of columns of featured images in posts lists"
|
84 |
msgstr "Afficher la colonne des \"images en avant\" dans la liste des articles"
|
85 |
|
86 |
-
#: admin/class-quick-featured-images-settings.php:
|
87 |
msgid "Columns for featured images in posts lists"
|
88 |
msgstr "Colonnes pour les \"images en avant\" dans les listes d'articles"
|
89 |
|
90 |
-
#: admin/class-quick-featured-images-settings.php:
|
91 |
msgid "Show additional column for featured images in lists of"
|
92 |
msgstr ""
|
93 |
"Afficher une colonne supplémentaire pour les \"images en avant\" dans les "
|
94 |
"listes de"
|
95 |
|
96 |
-
#: admin/class-quick-featured-images-settings.php:
|
97 |
msgid "Posts list with image column"
|
98 |
msgstr "Liste des articles avec la colonne d'images"
|
99 |
|
100 |
-
#: admin/class-quick-featured-images-settings.php:
|
101 |
msgid "Visibility of the plugin"
|
102 |
msgstr "Visibilité du plugin"
|
103 |
|
104 |
-
#: admin/class-quick-featured-images-settings.php:
|
105 |
msgid "Which user role may see the plugin?"
|
106 |
msgstr "Qui (niveau) peut voir le plugin?"
|
107 |
|
108 |
-
#: admin/class-quick-featured-images-settings.php:
|
109 |
msgid ""
|
110 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
111 |
"post lists."
|
112 |
msgstr ""
|
113 |
-
"Activer les checkboxes dans chaque
|
114 |
-
"supplémentaires dans
|
115 |
|
116 |
-
#: admin/class-quick-featured-images-settings.php:
|
117 |
msgid "Minimum user role to see the plugin in the backend"
|
118 |
msgstr "Niveau minimum requis pour voir le plugin"
|
119 |
|
120 |
-
#: admin/class-quick-featured-images-settings.php:
|
121 |
msgid "Select the minimum user role a user must have to see the plugin."
|
122 |
msgstr ""
|
123 |
"Sélectionner le niveau minimum que doit avoir l'utilisateur pour voir le "
|
124 |
"plugin."
|
125 |
|
126 |
-
#: admin/class-quick-featured-images-settings.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"The rules as set in “%s” work on posts independently of this "
|
@@ -132,7 +132,7 @@ msgstr ""
|
|
132 |
"Les règles telles que définies à “%s” sont appliquées aux "
|
133 |
"articles indépendement de ce règlage."
|
134 |
|
135 |
-
#: admin/class-quick-featured-images-settings.php:
|
136 |
msgid ""
|
137 |
"This setting controls as well whether a user will see in an image column the "
|
138 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
@@ -142,14 +142,11 @@ msgstr ""
|
|
142 |
"modification dans la colonne d'images, ou bien la vignette seule. Pour "
|
143 |
"afficher/supprimer la colonne d'images, utiliser la section ci-dessus."
|
144 |
|
145 |
-
#: admin/class-quick-featured-images-settings.php:
|
146 |
-
#| msgid ""
|
147 |
-
#| "This page and the page “%s” are accessible for administrators "
|
148 |
-
#| "only."
|
149 |
msgid "This page is accessible for administrators only."
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#: admin/class-quick-featured-images-settings.php:
|
153 |
msgid ""
|
154 |
"The additional columns give you a quick overview about all used featured "
|
155 |
"images for every post. The Featured Image column is sortable."
|
@@ -157,7 +154,7 @@ msgstr ""
|
|
157 |
"Les colonnes additionnelles vous montrent les \"images en avant\"pour chaque "
|
158 |
"article. La colonne de l' \"image en avant\" peut être tréee."
|
159 |
|
160 |
-
#: admin/class-quick-featured-images-settings.php:
|
161 |
msgid "Controls which minimum user role can see the plugin."
|
162 |
msgstr "Controle quels niveaux d'autorisation peuvent voir le plugin."
|
163 |
|
@@ -220,7 +217,7 @@ msgstr "Ne considérer que les articles sans image en avant"
|
|
220 |
|
221 |
#: admin/class-quick-featured-images-tools.php:599
|
222 |
msgid "Post Type Filter"
|
223 |
-
msgstr "Filtre de type
|
224 |
|
225 |
#: admin/class-quick-featured-images-tools.php:600
|
226 |
msgid "Category Filter"
|
@@ -306,12 +303,11 @@ msgstr "Choisissez une catégorie"
|
|
306 |
|
307 |
#: admin/views/filter_post_types.php:2
|
308 |
msgid "Select post types"
|
309 |
-
msgstr "Choisir le type
|
310 |
|
311 |
#: admin/views/filter_post_types.php:2
|
312 |
-
#| msgid "You can select posts formats."
|
313 |
msgid "You can select posts and pages."
|
314 |
-
msgstr ""
|
315 |
|
316 |
#: admin/views/filter_tag.php:7
|
317 |
msgid "Select a tag"
|
@@ -427,20 +423,20 @@ msgstr ""
|
|
427 |
"Vous pouvez éditer un article dans une nouvelle fenêtre en cliquant sur son "
|
428 |
"lien dans la liste."
|
429 |
|
430 |
-
#: admin/views/form_confirm.php:
|
431 |
msgid "Confirm the change"
|
432 |
msgstr "Confirmer le changement"
|
433 |
|
434 |
-
#: admin/views/form_confirm.php:
|
435 |
msgid "You can not undo the operation!"
|
436 |
msgstr "Vous ne pouvez pas annuler l'opération!"
|
437 |
|
438 |
-
#: admin/views/form_confirm.php:
|
439 |
#: admin/views/section_results.php:86
|
440 |
msgid "Start again"
|
441 |
msgstr "Recommencer"
|
442 |
|
443 |
-
#: admin/views/form_confirm.php:
|
444 |
msgid "or refine your selection with the following form fields."
|
445 |
msgstr "ou affinez votre sélection avec les champs suivants."
|
446 |
|
@@ -553,26 +549,29 @@ msgstr ""
|
|
553 |
#: admin/views/form_select.php:72
|
554 |
msgid "There are two more options in the premium version for random images:"
|
555 |
msgstr ""
|
|
|
|
|
556 |
|
557 |
#: admin/views/form_select.php:74
|
558 |
msgid "Use each selected image only once"
|
559 |
msgstr "N'utiliser qu'une seule fois chaque image sélectionnée"
|
560 |
|
561 |
#: admin/views/form_select.php:75
|
562 |
-
#| msgid "Replace featured images by the selected image"
|
563 |
msgid "Remove excess featured images after all selected images are used"
|
564 |
msgstr ""
|
|
|
|
|
565 |
|
566 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
567 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
568 |
-
#: admin/views/section_defaults.php:
|
569 |
#: admin/views/section_overview.php:91
|
570 |
msgid "Get the premium version"
|
571 |
-
msgstr ""
|
572 |
|
573 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
574 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
575 |
-
#: admin/views/section_defaults.php:
|
576 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
577 |
msgid "/"
|
578 |
msgstr "/"
|
@@ -600,11 +599,10 @@ msgid ""
|
|
600 |
msgstr "Vous pouvez choisir plusieurs filtres."
|
601 |
|
602 |
#: admin/views/form_select.php:95
|
603 |
-
#| msgid ""
|
604 |
-
#| "Search by post type. By default all posts, pages and custom post types "
|
605 |
-
#| "will be affected."
|
606 |
msgid "Search by post type. By default all posts and pages will be affected."
|
607 |
msgstr ""
|
|
|
|
|
608 |
|
609 |
#: admin/views/form_select.php:98
|
610 |
msgid "Search posts by category"
|
@@ -616,7 +614,7 @@ msgstr "Recherche des articles par étiquette"
|
|
616 |
|
617 |
#: admin/views/form_select.php:115 admin/views/section_overview.php:91
|
618 |
msgid "Are you looking for more options and more filters?"
|
619 |
-
msgstr ""
|
620 |
|
621 |
#: admin/views/form_select.php:116
|
622 |
msgid "If you encounter a white, blank page, read this"
|
@@ -772,9 +770,8 @@ msgid "These actions do not require a selected image."
|
|
772 |
msgstr "Ces actions ne nécessitent pas de sélectionner une image."
|
773 |
|
774 |
#: admin/views/form_start.php:113
|
775 |
-
#| msgid "Do you want to store the settings?"
|
776 |
msgid "Do you want to assign the first image of each post?"
|
777 |
-
msgstr ""
|
778 |
|
779 |
#: admin/views/section_defaults.php:16
|
780 |
msgid "matches"
|
@@ -782,7 +779,7 @@ msgstr "corresponds"
|
|
782 |
|
783 |
#: admin/views/section_defaults.php:59
|
784 |
msgid "Post Type"
|
785 |
-
msgstr "Type
|
786 |
|
787 |
#: admin/views/section_defaults.php:204
|
788 |
msgid "Default featured images for future posts"
|
@@ -832,48 +829,61 @@ msgid "Text with images in WordPress editor"
|
|
832 |
msgstr "Texte avec des images dans l'editeur WordPress"
|
833 |
|
834 |
#: admin/views/section_defaults.php:252
|
835 |
-
#| msgid ""
|
836 |
-
#| "Activate to automatically overwrite an existing featured image while "
|
837 |
-
#| "saving a post"
|
838 |
msgid ""
|
839 |
"Activate to automatically use the first content image if available in the "
|
840 |
"media library as featured image while saving a post"
|
841 |
msgstr ""
|
|
|
|
|
|
|
842 |
|
843 |
#: admin/views/section_defaults.php:254
|
844 |
-
#| msgid ""
|
845 |
-
#| "If activated the rule is used automatically while saving a post to set "
|
846 |
-
#| "the first image - if available in the media library or from external "
|
847 |
-
#| "server - as the featured image of the post. If an image was not found the "
|
848 |
-
#| "next rules will be applied."
|
849 |
msgid ""
|
850 |
"If activated the rule is used automatically while saving a post to set the "
|
851 |
"first content image - if available in the media library - as the featured "
|
852 |
"image of the post. If the post has no content images the next rules will be "
|
853 |
"applied."
|
854 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
855 |
|
856 |
-
#: admin/views/section_defaults.php:
|
857 |
msgid "Add rule"
|
858 |
msgstr "Ajouter une règle"
|
859 |
|
860 |
-
#: admin/views/section_defaults.php:
|
861 |
msgid "Are you sure to remove this rule?"
|
862 |
msgstr "Voulez-vous vraiment détruire cette règle?"
|
863 |
|
864 |
-
#: admin/views/section_defaults.php:
|
865 |
-
#| msgid "Set rules order"
|
866 |
msgid "How the rules work"
|
867 |
-
msgstr ""
|
868 |
|
869 |
-
#: admin/views/section_defaults.php:
|
870 |
msgid ""
|
871 |
"Every time you save a post the post get the featured image if one of the "
|
872 |
"following rules match a property of the post. You can also set rules for "
|
873 |
"pages and all other current post types which support featured images."
|
874 |
msgstr ""
|
|
|
|
|
|
|
|
|
875 |
|
876 |
-
#: admin/views/section_defaults.php:
|
877 |
msgid ""
|
878 |
"Regardless of the order in the list the rules are applied in the following "
|
879 |
"order until a rule and a property of the post fit together:"
|
@@ -881,36 +891,35 @@ msgstr ""
|
|
881 |
"Quelque soit l'ordre dans la liste, les règles sont appliquées dans l'ordre "
|
882 |
"jusqu'à ce que la condition nécessaire soit remplie:"
|
883 |
|
884 |
-
#: admin/views/section_defaults.php:
|
885 |
-
#| msgid "found first image. If not then..."
|
886 |
msgid "found first content image. If not then..."
|
887 |
-
msgstr ""
|
888 |
|
889 |
-
#: admin/views/section_defaults.php:
|
890 |
msgid "matched custom taxonomy. If not then..."
|
891 |
msgstr "corresponde avec la taxonomie voulue. Sinon, alors..."
|
892 |
|
893 |
-
#: admin/views/section_defaults.php:
|
894 |
msgid "matched tag. If not then..."
|
895 |
msgstr "corresponde avec l'étiquette. Sinon, alors..."
|
896 |
|
897 |
-
#: admin/views/section_defaults.php:
|
898 |
msgid "matched category. If not then..."
|
899 |
msgstr "corresponde avec la catégorie. Sinon, alors..."
|
900 |
|
901 |
-
#: admin/views/section_defaults.php:
|
902 |
msgid "matched author. If not then..."
|
903 |
msgstr "corresponde avec l'auteur. Sinon, alors..."
|
904 |
|
905 |
-
#: admin/views/section_defaults.php:
|
906 |
msgid "matched post type. If not then..."
|
907 |
-
msgstr "corresponde avec le type de
|
908 |
|
909 |
-
#: admin/views/section_defaults.php:
|
910 |
msgid "no featured image."
|
911 |
msgstr "pas d'image sélectionnée."
|
912 |
|
913 |
-
#: admin/views/section_defaults.php:
|
914 |
msgid ""
|
915 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
916 |
"the post it is unforeseeable which image will become the featured image."
|
@@ -919,52 +928,50 @@ msgstr ""
|
|
919 |
"correspondaient à l'article, il est imprévisible de savoir quelle image sera "
|
920 |
"installée en image en avant."
|
921 |
|
922 |
-
#: admin/views/section_defaults.php:
|
923 |
msgid "Additional rules in the premium version"
|
924 |
-
msgstr ""
|
925 |
|
926 |
-
#: admin/views/section_defaults.php:
|
927 |
-
#| msgid "Set multiple images randomly as featured images"
|
928 |
msgid "Multiple images to set them randomly as featured image"
|
929 |
msgstr ""
|
|
|
930 |
|
931 |
-
#: admin/views/section_defaults.php:
|
932 |
-
#| msgid "Replace featured images by the selected image"
|
933 |
msgid "Random featured images at each page load"
|
934 |
-
msgstr ""
|
935 |
|
936 |
-
#: admin/views/section_defaults.php:
|
937 |
msgid ""
|
938 |
"The first content image can be also an image from an external server to set "
|
939 |
"it as automated featured image"
|
940 |
msgstr ""
|
|
|
|
|
941 |
|
942 |
-
#: admin/views/section_defaults.php:
|
943 |
-
#| msgid ""
|
944 |
-
#| "Remove the first image in the post content after the featured image was "
|
945 |
-
#| "set successfully"
|
946 |
msgid ""
|
947 |
"Remove the first content image automatically after the featured image was "
|
948 |
"set successfully"
|
949 |
msgstr ""
|
|
|
|
|
950 |
|
951 |
-
#: admin/views/section_defaults.php:
|
952 |
-
#| msgid "Search string in post title"
|
953 |
msgid "Match with a search string in post title"
|
954 |
-
msgstr ""
|
955 |
|
956 |
-
#: admin/views/section_defaults.php:
|
957 |
-
#| msgid "You can select posts formats."
|
958 |
msgid "Match with a selected post format"
|
959 |
-
msgstr ""
|
960 |
|
961 |
-
#: admin/views/section_defaults.php:
|
962 |
msgid "User defined order of rules"
|
963 |
-
msgstr ""
|
964 |
|
965 |
-
#: admin/views/section_defaults.php:
|
966 |
msgid "Import your rules from this plugin into the premium plugin"
|
967 |
-
msgstr ""
|
968 |
|
969 |
#: admin/views/section_errormsg.php:1
|
970 |
msgid "Error"
|
@@ -987,35 +994,35 @@ msgid "Do you like the plugin?"
|
|
987 |
msgstr "Aimez-vous ce plugin?"
|
988 |
|
989 |
#: admin/views/section_footer.php:54 admin/views/section_results.php:88
|
990 |
-
#| msgid "Please rate it at quickfeaturedimages.com!"
|
991 |
msgid "Please rate it at wordpress.org!"
|
992 |
-
msgstr ""
|
993 |
|
994 |
#: admin/views/section_footer.php:55
|
995 |
msgid ""
|
996 |
"The plugin is for free. But the plugin author would be delighted to your "
|
997 |
"small contribution."
|
998 |
msgstr ""
|
|
|
999 |
|
1000 |
#: admin/views/section_footer.php:55
|
1001 |
msgid "Donation Button"
|
1002 |
-
msgstr ""
|
1003 |
|
1004 |
#: admin/views/section_footer.php:55
|
1005 |
msgid "Donate with PayPal"
|
1006 |
-
msgstr ""
|
1007 |
|
1008 |
#: admin/views/section_footer.php:56
|
1009 |
msgid "Do you need support or have an idea for the plugin?"
|
1010 |
msgstr "Avez-vous besoin d'aide ou avez-vous une suggestion pour ce plugin?"
|
1011 |
|
1012 |
#: admin/views/section_footer.php:56
|
1013 |
-
#| msgid ""
|
1014 |
-
#| "Post your questions and ideas in the forum at at quickfeaturedimages.com!"
|
1015 |
msgid ""
|
1016 |
"Post your questions and ideas about Quick Featured Images in the forum at "
|
1017 |
"wordpress.org!"
|
1018 |
msgstr ""
|
|
|
|
|
1019 |
|
1020 |
#: admin/views/section_footer.php:57
|
1021 |
msgid "Special thanks for the fine frontend style of the plugin go to"
|
@@ -1026,11 +1033,13 @@ msgid ""
|
|
1026 |
"Let the thumbnails appear in the widget of the most recent posts with this "
|
1027 |
"fast plugin"
|
1028 |
msgstr ""
|
|
|
|
|
1029 |
|
1030 |
#: admin/views/section_footer.php:58
|
1031 |
#, php-format
|
1032 |
msgid "Download plugin %s at %s!"
|
1033 |
-
msgstr ""
|
1034 |
|
1035 |
#: admin/views/section_header_progress.php:15
|
1036 |
msgid "Progress bar"
|
@@ -1090,7 +1099,7 @@ msgstr "Gérer les images en avant de manière rapide"
|
|
1090 |
|
1091 |
#: admin/views/section_overview.php:89
|
1092 |
msgid "The premium version"
|
1093 |
-
msgstr ""
|
1094 |
|
1095 |
#: admin/views/section_results.php:1
|
1096 |
msgid "Results of the action"
|
@@ -1107,767 +1116,3 @@ msgstr "Inchangés"
|
|
1107 |
#: admin/views/section_results.php:82
|
1108 |
msgid "No matches found."
|
1109 |
msgstr "Rien de trouvé."
|
1110 |
-
|
1111 |
-
#~ msgid "Do not use the first image"
|
1112 |
-
#~ msgstr "Ne pas utiliser la première image"
|
1113 |
-
|
1114 |
-
#~ msgid "Use first content image"
|
1115 |
-
#~ msgstr "Utiliser la première image incluse"
|
1116 |
-
|
1117 |
-
#~ msgid "Use first attached image"
|
1118 |
-
#~ msgstr "Utiliser la première image attachée"
|
1119 |
-
|
1120 |
-
#~ msgid ""
|
1121 |
-
#~ "If first image should be used and no image was found: Attempt to use the "
|
1122 |
-
#~ "thumbnail of the first embedded remote content based on a provided URL, "
|
1123 |
-
#~ "upload it into the media library and set it as featured image"
|
1124 |
-
#~ msgstr ""
|
1125 |
-
#~ "Si la première image doit être utilisée mais est manquante: Essayer "
|
1126 |
-
#~ "d'utiliser la vignette de la première image depuis une URL donnée, la "
|
1127 |
-
#~ "sauvegarder dans la bibliothèque de médias et l'installer comme image en "
|
1128 |
-
#~ "avant"
|
1129 |
-
|
1130 |
-
#~ msgid "License Activation"
|
1131 |
-
#~ msgstr "Activer la licence"
|
1132 |
-
|
1133 |
-
#~ msgid "Enter the license key to get automatic upgrades of the plugin."
|
1134 |
-
#~ msgstr ""
|
1135 |
-
#~ "Indiquer la clé de licence pour bénéficier des mises à jour automatiques."
|
1136 |
-
|
1137 |
-
#~ msgid "The license is disabled."
|
1138 |
-
#~ msgstr "Cette licence est désactivée."
|
1139 |
-
|
1140 |
-
#~ msgid "The license is expired."
|
1141 |
-
#~ msgstr "Cette licence est expirée."
|
1142 |
-
|
1143 |
-
#~ msgid "The license is inactive."
|
1144 |
-
#~ msgstr "Cette licence est inactive."
|
1145 |
-
|
1146 |
-
#~ msgid "The license is invalid."
|
1147 |
-
#~ msgstr "Cette licence est invalide."
|
1148 |
-
|
1149 |
-
#~ msgid "This appears to be an invalid product for this license key."
|
1150 |
-
#~ msgstr "Le plugin ne correspond pas à cette licence."
|
1151 |
-
|
1152 |
-
#~ msgid "The license key does not match."
|
1153 |
-
#~ msgstr "Cette licence ne correspond pas."
|
1154 |
-
|
1155 |
-
#~ msgid "This appears to be an invalid product name for this license key."
|
1156 |
-
#~ msgstr "Le nom de plugin ne correspond pas à cette licence."
|
1157 |
-
|
1158 |
-
#~ msgid "The license is not activatable."
|
1159 |
-
#~ msgstr "Cette licence n'est pas activable."
|
1160 |
-
|
1161 |
-
#~ msgid "The license key does not exist."
|
1162 |
-
#~ msgstr "Cette clé de licence n'existe pas."
|
1163 |
-
|
1164 |
-
#~ msgid "The license has reached its activation limit."
|
1165 |
-
#~ msgstr "Limite d'activation de la licence atteinte."
|
1166 |
-
|
1167 |
-
#~ msgid "The license has been revoked."
|
1168 |
-
#~ msgstr "La licence a été révoquée."
|
1169 |
-
|
1170 |
-
#~ msgid "The license is not active for the site address %s."
|
1171 |
-
#~ msgstr "Cette licence n'est pas valide pour le site %s."
|
1172 |
-
|
1173 |
-
#~ msgid "The license is valid and active."
|
1174 |
-
#~ msgstr "La licence est valide et a été activée."
|
1175 |
-
|
1176 |
-
#~ msgid "The license status is: %s."
|
1177 |
-
#~ msgstr "Statut de la licence: %s."
|
1178 |
-
|
1179 |
-
#~ msgid "Names of presets"
|
1180 |
-
#~ msgstr "Noms des présélections"
|
1181 |
-
|
1182 |
-
#~ msgid "All stored presets of “%s”"
|
1183 |
-
#~ msgstr "Présélections enregistrées de “%s”"
|
1184 |
-
|
1185 |
-
#~ msgid ""
|
1186 |
-
#~ "There are no presets. You can add a preset at the end of the process in "
|
1187 |
-
#~ "“%s”."
|
1188 |
-
#~ msgstr ""
|
1189 |
-
#~ "Il n'y a aucune présélection. Vous pouvez en ajouter à la fin du process "
|
1190 |
-
#~ "sous “%s”."
|
1191 |
-
|
1192 |
-
#~ msgid "Deactivate the checkboxes at each preset name to delete them."
|
1193 |
-
#~ msgstr ""
|
1194 |
-
#~ "Désactiver les boites de choix à chaque présélection pour les supprimer "
|
1195 |
-
#~ "de la base de données."
|
1196 |
-
|
1197 |
-
#~ msgid "Manage the presets for the bulk edit section."
|
1198 |
-
#~ msgstr "Règler les présélections pour le traitement en masse."
|
1199 |
-
|
1200 |
-
#~ msgid "Set the first image as featured image"
|
1201 |
-
#~ msgstr "Installer la première image comme image en avant"
|
1202 |
-
|
1203 |
-
#~ msgid "Take the first post image if available in the media library"
|
1204 |
-
#~ msgstr ""
|
1205 |
-
#~ "Utiliser la première image de l'article présente dans la bibliothèque de "
|
1206 |
-
#~ "médias"
|
1207 |
-
|
1208 |
-
#~ msgid ""
|
1209 |
-
#~ "Take the first post image from current site domain, copy and add it to "
|
1210 |
-
#~ "the media library if not available there"
|
1211 |
-
#~ msgstr ""
|
1212 |
-
#~ "Prendre la première image du site actuel et la copier dans la "
|
1213 |
-
#~ "bibliothèque de médias si elle n'existe pas déjà"
|
1214 |
-
|
1215 |
-
#~ msgid ""
|
1216 |
-
#~ "Take the first external post image, download it and add it to the media "
|
1217 |
-
#~ "library"
|
1218 |
-
#~ msgstr ""
|
1219 |
-
#~ "Prendre la première image externe de l'article et la copier dans la "
|
1220 |
-
#~ "bibliothèque de médias"
|
1221 |
-
|
1222 |
-
#~ msgid "Take the first attached image of a post"
|
1223 |
-
#~ msgstr "Utiliser la première image attachée d'un article"
|
1224 |
-
|
1225 |
-
#~ msgid "Take the first image of a WordPress standard gallery"
|
1226 |
-
#~ msgstr "Prendre la première image d'une gallerie standard WordPress"
|
1227 |
-
|
1228 |
-
#~ msgid ""
|
1229 |
-
#~ "Take the first thumbnail of the embedded remote content based on a "
|
1230 |
-
#~ "provided URL, download it and add it to the media library"
|
1231 |
-
#~ msgstr ""
|
1232 |
-
#~ "Prendre la première vignette d'une URL donnée et la copier dans la "
|
1233 |
-
#~ "bibliothèque de médias"
|
1234 |
-
|
1235 |
-
#~ msgid "Take the first image of a NextGen Gallery"
|
1236 |
-
#~ msgstr "Prendre la première image dùune collection NextGen"
|
1237 |
-
|
1238 |
-
#~ msgid "Remove first embedded image"
|
1239 |
-
#~ msgstr "Supprimer la première image attachée"
|
1240 |
-
|
1241 |
-
#~ msgid "Remove excess featured images"
|
1242 |
-
#~ msgstr "Supprimer les images en avant en excès"
|
1243 |
-
|
1244 |
-
#~ msgid "Forced removal"
|
1245 |
-
#~ msgstr "Forcer la suppression"
|
1246 |
-
|
1247 |
-
#~ msgid "Attach image to post after set as featured"
|
1248 |
-
#~ msgstr ""
|
1249 |
-
#~ "Attacher l'image à l'article après l'avoir définie en tant qu'image en "
|
1250 |
-
#~ "avant"
|
1251 |
-
|
1252 |
-
#~ msgid "Detach image from post after removed as featured"
|
1253 |
-
#~ msgstr ""
|
1254 |
-
#~ "Détacher l'image de l'article après l'avoir supprimée en tant qu'image en "
|
1255 |
-
#~ "avant"
|
1256 |
-
|
1257 |
-
#~ msgid "Post Format Filter"
|
1258 |
-
#~ msgstr "Filtre de format d'article"
|
1259 |
-
|
1260 |
-
#~ msgid "Multimedia File Filter"
|
1261 |
-
#~ msgstr "Filtre de fichier multimédia"
|
1262 |
-
|
1263 |
-
#~ msgid "Status Filter"
|
1264 |
-
#~ msgstr "Filtre de statut"
|
1265 |
-
|
1266 |
-
#~ msgid "Search Filter"
|
1267 |
-
#~ msgstr "Filtre de recherche"
|
1268 |
-
|
1269 |
-
#~ msgid "Time Filter"
|
1270 |
-
#~ msgstr "Filtre d'heure"
|
1271 |
-
|
1272 |
-
#~ msgid "Author Filter"
|
1273 |
-
#~ msgstr "Filtre d'auteur"
|
1274 |
-
|
1275 |
-
#~ msgid "Custom Taxonomy Filter"
|
1276 |
-
#~ msgstr "Filtre personnalisé de Taxonomy"
|
1277 |
-
|
1278 |
-
#~ msgid "Featured Image Size Filter"
|
1279 |
-
#~ msgstr "Filtre de taille d'image en avant"
|
1280 |
-
|
1281 |
-
#~ msgid "Parent Page Filter"
|
1282 |
-
#~ msgstr "Filtre de page parent"
|
1283 |
-
|
1284 |
-
#~ msgid "Audio files"
|
1285 |
-
#~ msgstr "Fichiers audio"
|
1286 |
-
|
1287 |
-
#~ msgid "Video files"
|
1288 |
-
#~ msgstr "Fichiers vidéo"
|
1289 |
-
|
1290 |
-
#~ msgid "Start Month"
|
1291 |
-
#~ msgstr "Début du mois"
|
1292 |
-
|
1293 |
-
#~ msgid "End Month"
|
1294 |
-
#~ msgstr "Fin du mois"
|
1295 |
-
|
1296 |
-
#~ msgid "Day in the start month"
|
1297 |
-
#~ msgstr "Date dans le mois de départ"
|
1298 |
-
|
1299 |
-
#~ msgid "Day in the end month"
|
1300 |
-
#~ msgstr "Date dans le mois de fin"
|
1301 |
-
|
1302 |
-
#~ msgid "Include the posts of the selected dates"
|
1303 |
-
#~ msgstr "Inclure les articles des dates sélectionnées"
|
1304 |
-
|
1305 |
-
#~ msgid "Custom field name"
|
1306 |
-
#~ msgstr "Champ personnalisé"
|
1307 |
-
|
1308 |
-
#~ msgid "Operator to test with the value in the custom field"
|
1309 |
-
#~ msgstr "Opérateur à tester avec la valeur dans le champ personnalisé"
|
1310 |
-
|
1311 |
-
#~ msgid "Custom field value to compare with"
|
1312 |
-
#~ msgstr "Valeur du champ personnalisé à tester avec"
|
1313 |
-
|
1314 |
-
#~ msgid "Custom field type"
|
1315 |
-
#~ msgstr "Champ personnalisé"
|
1316 |
-
|
1317 |
-
#~ msgid "Search in post titles only"
|
1318 |
-
#~ msgstr "Chercher dans les titres des articles seulement"
|
1319 |
-
|
1320 |
-
#~ msgid "Select an author"
|
1321 |
-
#~ msgstr "Choisissez un auteur"
|
1322 |
-
|
1323 |
-
#~ msgid "is equal"
|
1324 |
-
#~ msgstr "est égal"
|
1325 |
-
|
1326 |
-
#~ msgid "is not equal"
|
1327 |
-
#~ msgstr "n'est pas égal"
|
1328 |
-
|
1329 |
-
#~ msgid "is greater than"
|
1330 |
-
#~ msgstr "est plus grand que"
|
1331 |
-
|
1332 |
-
#~ msgid "is lower than"
|
1333 |
-
#~ msgstr "est plus petit que"
|
1334 |
-
|
1335 |
-
#~ msgid "contains"
|
1336 |
-
#~ msgstr "contient"
|
1337 |
-
|
1338 |
-
#~ msgid "Select the custom field to find the associated posts/pages."
|
1339 |
-
#~ msgstr ""
|
1340 |
-
#~ "Choisissez le champ personnalisé pour trouver les pages/articles associés."
|
1341 |
-
|
1342 |
-
#~ msgid ""
|
1343 |
-
#~ "Optional: Type in the value which will be compared with the value of the "
|
1344 |
-
#~ "selected custom field."
|
1345 |
-
#~ msgstr ""
|
1346 |
-
#~ "Option: Entrez la valeur qui sera comparée à celle du champ personnalisé."
|
1347 |
-
|
1348 |
-
#~ msgid ""
|
1349 |
-
#~ "Leave it empty if you just want to test the existence of the custom field "
|
1350 |
-
#~ "per post/page."
|
1351 |
-
#~ msgstr ""
|
1352 |
-
#~ "Laissez vide pour seulement tester l'existence du champ personnalisé par "
|
1353 |
-
#~ "page/article."
|
1354 |
-
|
1355 |
-
#~ msgid ""
|
1356 |
-
#~ "Optional: Change the operator of the comparison. The default is to "
|
1357 |
-
#~ "compare equality with the value you type in the 'value' field."
|
1358 |
-
#~ msgstr ""
|
1359 |
-
#~ "Option: Change l'opérateur de comparaison. Par défaut compare l'égalité "
|
1360 |
-
#~ "avec la valeur que vous indiquez dans le champ \"valeur\"."
|
1361 |
-
|
1362 |
-
#~ msgid "There are no custom fields in use."
|
1363 |
-
#~ msgstr "Aucun champ personnalisé n'est utilisé."
|
1364 |
-
|
1365 |
-
#~ msgid "Registered terms of the taxonomy <strong>%s</strong>"
|
1366 |
-
#~ msgstr "Conditions de taxonomie <strong>%s</strong>"
|
1367 |
-
|
1368 |
-
#~ msgid "There are no terms of the taxonomy <strong>%s</strong>."
|
1369 |
-
#~ msgstr "Il n'y a pas de conditions de taxonomie <strong>%s</strong>."
|
1370 |
-
|
1371 |
-
#~ msgid "Strange search result with custom taxonomies?"
|
1372 |
-
#~ msgstr "Recherche étrange avec des taxonomies personnalisées?"
|
1373 |
-
|
1374 |
-
#~ msgid ""
|
1375 |
-
#~ "The search for custom taxonomy terms could lead to surprising results. "
|
1376 |
-
#~ "The reason is custom taxonomies can be used in many different ways. It is "
|
1377 |
-
#~ "not possible to catch them all in one single code expression. If you "
|
1378 |
-
#~ "should be unsatisfied with the result try other filters to get the result "
|
1379 |
-
#~ "you want."
|
1380 |
-
#~ msgstr ""
|
1381 |
-
#~ "La recherche de termes de termes personnalisés de taxonomie peut amener "
|
1382 |
-
#~ "des résultats surprenants car les taxonomies personnalisées peuvent être "
|
1383 |
-
#~ "utilisées de diverses manières et ne peuvent être codées entre elles de "
|
1384 |
-
#~ "manière simple. Si le résultat obtenu n'est pas satisfaisant, essayez "
|
1385 |
-
#~ "d'autres filtres pour obtenir le resultat souhaité."
|
1386 |
-
|
1387 |
-
#~ msgid "There are no custom taxonomies."
|
1388 |
-
#~ msgstr "Il n'y a pas de taxonomies personnalisées."
|
1389 |
-
|
1390 |
-
#~ msgid ""
|
1391 |
-
#~ "The search will find posts with an already added featured image which its "
|
1392 |
-
#~ "original image file is smaller than one of the given dimensions."
|
1393 |
-
#~ msgstr ""
|
1394 |
-
#~ "Cette recherche va sélectionner les articles contenant déjà une image en "
|
1395 |
-
#~ "avant dont la taille originale est plus petite que celle des dimensions "
|
1396 |
-
#~ "indiquées."
|
1397 |
-
|
1398 |
-
#~ msgid "For example you can search for posts with too small featured images."
|
1399 |
-
#~ msgstr ""
|
1400 |
-
#~ "Par exemple vous pouvez chercher les articles ayant des images en avant "
|
1401 |
-
#~ "trop petites."
|
1402 |
-
|
1403 |
-
#~ msgid ""
|
1404 |
-
#~ "Only positive integers from %d to %d are allowed. By default the "
|
1405 |
-
#~ "thumbnail dimensions as defined in %s are used."
|
1406 |
-
#~ msgstr ""
|
1407 |
-
#~ "Seuls les nombres entiers positifs entre %d et %d sont autorisés. Par "
|
1408 |
-
#~ "défaut les dimensions de la vignette seront celles définies en %s."
|
1409 |
-
|
1410 |
-
#~ msgid "Select multimedia file types"
|
1411 |
-
#~ msgstr "Choisir le type de fichier multimédia"
|
1412 |
-
|
1413 |
-
#~ msgid ""
|
1414 |
-
#~ "You can select two multimedia files types: audios and videos. If you "
|
1415 |
-
#~ "check at least one of both all other post types (posts, pages, etc.) will "
|
1416 |
-
#~ "be ignored."
|
1417 |
-
#~ msgstr ""
|
1418 |
-
#~ "Vous pouvez choisir 2 types de fichiers multimédia: Audio et vidéo. Si "
|
1419 |
-
#~ "vous en sélectionnez au moins un, les autres types (articles, pages etc) "
|
1420 |
-
#~ "seront ignorés."
|
1421 |
-
|
1422 |
-
#~ msgid "Include parent page of %s"
|
1423 |
-
#~ msgstr "Inclure la page père de %s"
|
1424 |
-
|
1425 |
-
#~ msgid "Select a parent page of %s"
|
1426 |
-
#~ msgstr "Choisir une page père de %s"
|
1427 |
-
|
1428 |
-
#~ msgid "There are no pages with child pages."
|
1429 |
-
#~ msgstr "Il n'y a pas de pages avec des pages-enfants."
|
1430 |
-
|
1431 |
-
#~ msgid "Select post formats"
|
1432 |
-
#~ msgstr "Choisir le format d'article"
|
1433 |
-
|
1434 |
-
#~ msgid "You can select posts, pages and available custom posts types."
|
1435 |
-
#~ msgstr "Vous pouvez choisir des articles, pages, et types personnalisés."
|
1436 |
-
|
1437 |
-
#~ msgid "There are no custom post types."
|
1438 |
-
#~ msgstr "Il n'y a pas de type personnalisés d'articles."
|
1439 |
-
|
1440 |
-
#~ msgid ""
|
1441 |
-
#~ "If you want to search for an exact phrase surround it with double quotes."
|
1442 |
-
#~ msgstr "Pour chercher une phrase exacte, mettez la entre guillemets."
|
1443 |
-
|
1444 |
-
#~ msgid "Type in a search term"
|
1445 |
-
#~ msgstr "Indiquez un critère de recherche"
|
1446 |
-
|
1447 |
-
#~ msgid "Select the statuses of the posts/pages:"
|
1448 |
-
#~ msgstr "Choisir le status des articles/pages:"
|
1449 |
-
|
1450 |
-
#~ msgid "Date range"
|
1451 |
-
#~ msgstr "Intervalle de date"
|
1452 |
-
|
1453 |
-
#~ msgid ""
|
1454 |
-
#~ "To define a time segment select both the start date and the end date."
|
1455 |
-
#~ msgstr ""
|
1456 |
-
#~ "Pour définir un intervalle de temps choisissez les dates de début et de "
|
1457 |
-
#~ "fin."
|
1458 |
-
|
1459 |
-
#~ msgid ""
|
1460 |
-
#~ "You can also define a time period by selecting only one date as the "
|
1461 |
-
#~ "limiting value of the period."
|
1462 |
-
#~ msgstr ""
|
1463 |
-
#~ "Vous pouvez aussi définir un intervalle de temps en indiquant une seule "
|
1464 |
-
#~ "date comme limite de l'intervalle."
|
1465 |
-
|
1466 |
-
#~ msgid "The listed dates are the date of the publication of stored posts."
|
1467 |
-
#~ msgstr ""
|
1468 |
-
#~ "Les dates indiquées sont la date de publication des articles enregistrés."
|
1469 |
-
|
1470 |
-
#~ msgid ""
|
1471 |
-
#~ "You can limit the filter to the exact day within the months. The day "
|
1472 |
-
#~ "options are optional and only work if a month has been selected."
|
1473 |
-
#~ msgstr ""
|
1474 |
-
#~ "Vous pouvez limiter le filtre à un jour exact dans le mois. Les options "
|
1475 |
-
#~ "de jour sont optionnelles et ne fonctionnent que si un mois a été "
|
1476 |
-
#~ "sélectionné."
|
1477 |
-
|
1478 |
-
#~ msgid "What sort of first image?"
|
1479 |
-
#~ msgstr "Quel type de première image?"
|
1480 |
-
|
1481 |
-
#~ msgid "See a list of all supported services in a new window."
|
1482 |
-
#~ msgstr ""
|
1483 |
-
#~ "Voir une liste de tous les services supportés dans une nouvelle fenêtre."
|
1484 |
-
|
1485 |
-
#~ msgid ""
|
1486 |
-
#~ "Remove the first embedded image from the post content after this image "
|
1487 |
-
#~ "was set as featured image. This does not affect galleries or attached "
|
1488 |
-
#~ "images. <strong>There is no undo function. Be careful with this option "
|
1489 |
-
#~ "and please create a backup of the database of this website before you use "
|
1490 |
-
#~ "this!</strong>"
|
1491 |
-
#~ msgstr ""
|
1492 |
-
#~ "Supprimer la première image attachée dans le message après que l'image "
|
1493 |
-
#~ "ait été installée comme image en avant. Ceci n'affecte pas la collection "
|
1494 |
-
#~ "d'images. <strong> Pas de retour possible. Soyez prudent avec cette "
|
1495 |
-
#~ "option et faites une copie de la database avant d'utiliser cette fonction!"
|
1496 |
-
#~ "</strong>"
|
1497 |
-
|
1498 |
-
#~ msgid ""
|
1499 |
-
#~ "Remove first content image even if the featured image was not changed "
|
1500 |
-
#~ "successfully. Works only if 'Remove first embedded image' is activated."
|
1501 |
-
#~ msgstr ""
|
1502 |
-
#~ "Supprimer la première image de l'article même si l'image en avant n'a pas "
|
1503 |
-
#~ "été installée avec succès. Possible seulement si 'supprimer la première "
|
1504 |
-
#~ "image' est selectionné."
|
1505 |
-
|
1506 |
-
#~ msgid ""
|
1507 |
-
#~ "By default the selected images will be used multiple times in random "
|
1508 |
-
#~ "order. If you check this option each selected image will be used only "
|
1509 |
-
#~ "once. If there are more posts than images the remaining posts will not be "
|
1510 |
-
#~ "changed. If you want to remove the featured images of remaining posts "
|
1511 |
-
#~ "check the next option additionally."
|
1512 |
-
#~ msgstr ""
|
1513 |
-
#~ "Par défaut l'image choisie sera utilisée plusieurs fois au hasard. Si "
|
1514 |
-
#~ "vous choisissez cette option, chaque image selectionnée sera utilisée une "
|
1515 |
-
#~ "fois seulement. S'il y a plus d'articles que d'images, les articles en "
|
1516 |
-
#~ "surplus ne seront pas modifiés. Pour supprimer l'image en dans ces "
|
1517 |
-
#~ "articles sélectionnez l'option suivante en plus."
|
1518 |
-
|
1519 |
-
#~ msgid ""
|
1520 |
-
#~ "Remove existing featured images of remaining posts if all selected images "
|
1521 |
-
#~ "are used. This option works only with the previous option."
|
1522 |
-
#~ msgstr ""
|
1523 |
-
#~ "Supprimer l'image en avant des articles en surplus si toutes les images "
|
1524 |
-
#~ "sélectionnées ont été utilisées. Cette option ne fonctionne que si "
|
1525 |
-
#~ "l'option précédente a été sélectionnée."
|
1526 |
-
|
1527 |
-
#~ msgid ""
|
1528 |
-
#~ "This will overwrite existing entries in the media library column \"%s\". "
|
1529 |
-
#~ "If an image will be set as featured image for multiple posts it will be "
|
1530 |
-
#~ "attached to the last of these posts."
|
1531 |
-
#~ msgstr ""
|
1532 |
-
#~ "Ceci remplacera les entrées existantes dans la colonne de la bibliothèque "
|
1533 |
-
#~ "de médias \"%s\". Si une image sera utilisée comme image en avant dans "
|
1534 |
-
#~ "plusieurs articles elle sera attachée au dernier des articles."
|
1535 |
-
|
1536 |
-
#~ msgid ""
|
1537 |
-
#~ "Search by post format. By default the standard post format is affected."
|
1538 |
-
#~ msgstr ""
|
1539 |
-
#~ "Recherche par format d'article. Par défaut le format standard est affecté."
|
1540 |
-
|
1541 |
-
#~ msgid ""
|
1542 |
-
#~ "Search for audios and videos. This filter will ignore all other post "
|
1543 |
-
#~ "types automatically."
|
1544 |
-
#~ msgstr "Recherche par audio et vidéo. Tous les autres types seront ignorés."
|
1545 |
-
|
1546 |
-
#~ msgid ""
|
1547 |
-
#~ "Search by several statuses (published, draft, private etc.). By default "
|
1548 |
-
#~ "all statuses will be affected."
|
1549 |
-
#~ msgstr ""
|
1550 |
-
#~ "Recherche par status (publié, brouillon, privé etc). Par défaut tous les "
|
1551 |
-
#~ "status sont affectés."
|
1552 |
-
|
1553 |
-
#~ msgid "Search by search term"
|
1554 |
-
#~ msgstr "Recherche par mot"
|
1555 |
-
|
1556 |
-
#~ msgid "Search by time specifications"
|
1557 |
-
#~ msgstr "Recherche par date"
|
1558 |
-
|
1559 |
-
#~ msgid "Search by author"
|
1560 |
-
#~ msgstr "Recherche par autheur"
|
1561 |
-
|
1562 |
-
#~ msgid "Search by other taxonomies like plugin categories etc."
|
1563 |
-
#~ msgstr "Recherche par autres taxonomies, comme catégorie de plugin, etc."
|
1564 |
-
|
1565 |
-
#~ msgid "Search by original dimensions of added featured image"
|
1566 |
-
#~ msgstr "Recherche par taille originale des images en avant ajoutées"
|
1567 |
-
|
1568 |
-
#~ msgid "Search child pages by parent page"
|
1569 |
-
#~ msgstr "Recherche des articles enfants par articles parents"
|
1570 |
-
|
1571 |
-
#~ msgid "Some advices from experience"
|
1572 |
-
#~ msgstr "Quelques recommendations"
|
1573 |
-
|
1574 |
-
#~ msgid ""
|
1575 |
-
#~ "Looking for external images can take a long time. Please be patient for "
|
1576 |
-
#~ "at least one minute and do not reload the page! If you would see a "
|
1577 |
-
#~ "timeout message please start again with a filter that limits the number "
|
1578 |
-
#~ "of posts."
|
1579 |
-
#~ msgstr ""
|
1580 |
-
#~ "La recherche des images externes peut prendre longtemps. Soyez patient et "
|
1581 |
-
#~ "ne rechargez pas la page! Vous pouvez limiter le nombre d'articles dans "
|
1582 |
-
#~ "un filtre."
|
1583 |
-
|
1584 |
-
#~ msgid ""
|
1585 |
-
#~ "If you would be unsatisfied with the next results of the search for first "
|
1586 |
-
#~ "embedded images try the option for external images. Maybe that result "
|
1587 |
-
#~ "could meet your expectations better."
|
1588 |
-
#~ msgstr ""
|
1589 |
-
#~ "Si vous n'êtes pas satisfait du résultat de la recherche pour les "
|
1590 |
-
#~ "premieres images, essayez la fonction pour les images externes."
|
1591 |
-
|
1592 |
-
#~ msgid "In case of external images: Respect copyrights of external works"
|
1593 |
-
#~ msgstr "Pour les images externes, veuillez respecter les droits d'auteur"
|
1594 |
-
|
1595 |
-
#~ msgid ""
|
1596 |
-
#~ "Although embedding contents from other authors into the website is so "
|
1597 |
-
#~ "easy it does not mean that it is allowed to do that! Do you have the "
|
1598 |
-
#~ "rights to use the works of other authors in your website? If you are not "
|
1599 |
-
#~ "sure read the copyright licenses of that works or ask the author."
|
1600 |
-
#~ msgstr ""
|
1601 |
-
#~ "Il n'est pas toujours autorisé d'utiliser les contenus d'autres auteurs. "
|
1602 |
-
#~ "Informez-vous sur les droits que vous avez sur ces contenus."
|
1603 |
-
|
1604 |
-
#~ msgid "In case of embedded contents: Thumbnail not always available"
|
1605 |
-
#~ msgstr "Pour les contenus externes la vignette n'est pas toujours possible"
|
1606 |
-
|
1607 |
-
#~ msgid ""
|
1608 |
-
#~ "There are some providers which let their users upload images but do not "
|
1609 |
-
#~ "give informations about the images to other servers. In such cases a "
|
1610 |
-
#~ "featured image can not be set."
|
1611 |
-
#~ msgstr ""
|
1612 |
-
#~ "Certains providers autorisent le téléchargement d'images mais sans donner "
|
1613 |
-
#~ "d'information sur ces images. Dans ce cas on ne peut pas les utiliser en "
|
1614 |
-
#~ "images en avant."
|
1615 |
-
|
1616 |
-
#~ msgid ""
|
1617 |
-
#~ "The plugin will try to find the first image embedded in the content, in a "
|
1618 |
-
#~ "WordPress standard gallery or attached to a post."
|
1619 |
-
#~ msgstr ""
|
1620 |
-
#~ "Le plugin va essayer de trouver la première image du contenu, dans une "
|
1621 |
-
#~ "gallerie standard WordPress ou attachée à un article."
|
1622 |
-
|
1623 |
-
#~ msgid "It will also search in NextGen galleries."
|
1624 |
-
#~ msgstr "Il cherchera aussi dans les galleries NextGen."
|
1625 |
-
|
1626 |
-
#~ msgid "Presets"
|
1627 |
-
#~ msgstr "Préselections"
|
1628 |
-
|
1629 |
-
#~ msgid ""
|
1630 |
-
#~ "You can reuse previous settings using presets. Select one of the "
|
1631 |
-
#~ "following presets."
|
1632 |
-
#~ msgstr ""
|
1633 |
-
#~ "Avec les présélections vous pouvez réutiliser des règlages précédents. "
|
1634 |
-
#~ "Choisissez un des règlages suivants."
|
1635 |
-
|
1636 |
-
#~ msgid "Select a preset"
|
1637 |
-
#~ msgstr "Choisissez une présélection"
|
1638 |
-
|
1639 |
-
#~ msgid "Manage the presets on page %s."
|
1640 |
-
#~ msgstr "Gérer les présélections sur la page %s."
|
1641 |
-
|
1642 |
-
#~ msgid "Search string"
|
1643 |
-
#~ msgstr "Chaine à rechercher"
|
1644 |
-
|
1645 |
-
#~ msgid "Choose random images"
|
1646 |
-
#~ msgstr "Choisir des images au hasard"
|
1647 |
-
|
1648 |
-
#~ msgid ""
|
1649 |
-
#~ "Set the featured image randomly at each page load. That works only for "
|
1650 |
-
#~ "multiple images and will always overwrite existing featured images!"
|
1651 |
-
#~ msgstr ""
|
1652 |
-
#~ "Installer l'image en avant de maniere aléatoire pour chaque affichage de "
|
1653 |
-
#~ "la page. Ceci ne fonctionne que pour les images multiples et remplacera "
|
1654 |
-
#~ "toujours l'image en avant existante!"
|
1655 |
-
|
1656 |
-
#~ msgid "works only if “%s” is set to “%s”"
|
1657 |
-
#~ msgstr ""
|
1658 |
-
#~ "ne fonctionne que si “%s” est règlé sur “%s”"
|
1659 |
-
|
1660 |
-
#~ msgid ""
|
1661 |
-
#~ "The current theme does not support featured images. Anyway you can use "
|
1662 |
-
#~ "this plugin. The rules are stored and will be visible in a theme which "
|
1663 |
-
#~ "supports featured images."
|
1664 |
-
#~ msgstr ""
|
1665 |
-
#~ "Le thème actuel ne supporte pas les images an avant. Vous pouvez malgré "
|
1666 |
-
#~ "cela utiliser ce plugin, les règles seront enregistrées et seront "
|
1667 |
-
#~ "appliquées sur un thème acceptant les images en avant."
|
1668 |
-
|
1669 |
-
#~ msgid ""
|
1670 |
-
#~ "The current theme does not support post formats. Anyway you can use this "
|
1671 |
-
#~ "plugin. The rules are stored and will be visible in a theme which "
|
1672 |
-
#~ "supports post formats."
|
1673 |
-
#~ msgstr ""
|
1674 |
-
#~ "Le thème actuel ne supporte pas les formats d'articles. Vous pouvez "
|
1675 |
-
#~ "malgré cela utiliser ce plugin, les règles seront enregistrées et seront "
|
1676 |
-
#~ "appliquées sur un thème acceptant les formats d'articles."
|
1677 |
-
|
1678 |
-
#~ msgid ""
|
1679 |
-
#~ "Define the rules in two steps: First set the rules, second set the order "
|
1680 |
-
#~ "of the rules. After that click on the button %s."
|
1681 |
-
#~ msgstr ""
|
1682 |
-
#~ "Définissez les règles en 2 étapes: D'abord les règles, plus l'ordre des "
|
1683 |
-
#~ "règles. Ensuite cliquez sur le bouton %s."
|
1684 |
-
|
1685 |
-
#~ msgid "Import presets from Quick Featured Images"
|
1686 |
-
#~ msgstr "Importer les présélections depuis les Quick Featured Images"
|
1687 |
-
|
1688 |
-
#~ msgid ""
|
1689 |
-
#~ "Presets from the free plugin Quick Featured Images are available. Click "
|
1690 |
-
#~ "on the button to import and apply them here."
|
1691 |
-
#~ msgstr ""
|
1692 |
-
#~ "Les présélections depuis le plugin gratuit Quick Featured Images sont "
|
1693 |
-
#~ "disponibles. Cliquez sur le bouton pour les importer et les appliquer."
|
1694 |
-
|
1695 |
-
#~ msgid "The import will overwrite already existing settings and rules!"
|
1696 |
-
#~ msgstr "Les importations remplaceront les règlages et règles actuelles!"
|
1697 |
-
|
1698 |
-
#~ msgid ""
|
1699 |
-
#~ "If you want to dismiss this section please deinstall Quick Featured "
|
1700 |
-
#~ "Images."
|
1701 |
-
#~ msgstr ""
|
1702 |
-
#~ "Si vous voulez ne pas utiliser cette section, désinstallez le plugin "
|
1703 |
-
#~ "Quick Featured Images."
|
1704 |
-
|
1705 |
-
#~ msgid "Import presets"
|
1706 |
-
#~ msgstr "Importer les présélections"
|
1707 |
-
|
1708 |
-
#~ msgid "Set rules"
|
1709 |
-
#~ msgstr "Definir les règles"
|
1710 |
-
|
1711 |
-
#~ msgid ""
|
1712 |
-
#~ "Set the order of the rules by selecting the number in the selection "
|
1713 |
-
#~ "fields. 1 means in the first place, 2 means in the second place etc. If "
|
1714 |
-
#~ "some rules have the same number it is unforeseeable in which order they "
|
1715 |
-
#~ "will be applied. So set the order uniquely."
|
1716 |
-
#~ msgstr ""
|
1717 |
-
#~ "Définir l'ordre des règles en attribuant leur ordre dans la liste. "
|
1718 |
-
#~ "1=première règle, etc. L'ordre doit être unique."
|
1719 |
-
|
1720 |
-
#~ msgid "matched search string in post title. If not then..."
|
1721 |
-
#~ msgstr "chaine recherchée dans le titre de l'article. Sinon, alors..."
|
1722 |
-
|
1723 |
-
#~ msgid "matched post format. If not then..."
|
1724 |
-
#~ msgstr "corresponde avec le format de l'article. Sinon, alors..."
|
1725 |
-
|
1726 |
-
#~ msgid "/reviews/"
|
1727 |
-
#~ msgstr "/reviews/"
|
1728 |
-
|
1729 |
-
#~ msgid "Your selected approach"
|
1730 |
-
#~ msgstr "Votre méthode sélectionnée"
|
1731 |
-
|
1732 |
-
#~ msgid "License Settings"
|
1733 |
-
#~ msgstr "Paramètres de licence"
|
1734 |
-
|
1735 |
-
#~ msgid "License Key"
|
1736 |
-
#~ msgstr "Clé de licence"
|
1737 |
-
|
1738 |
-
#~ msgid "Enter your license key. Then click on the button."
|
1739 |
-
#~ msgstr "Entrez votre clé de licence et cliquez sur le bouton."
|
1740 |
-
|
1741 |
-
#~ msgid "License Status"
|
1742 |
-
#~ msgstr "Statut de licence"
|
1743 |
-
|
1744 |
-
#~ msgid "The license will expire on %1$s at %2$s."
|
1745 |
-
#~ msgstr "Votre licence expirera le %1$s à %2$s."
|
1746 |
-
|
1747 |
-
#~ msgid "There are %d activations left"
|
1748 |
-
#~ msgstr "Encore %d activations possibles"
|
1749 |
-
|
1750 |
-
#~ msgid "Deactivate License"
|
1751 |
-
#~ msgstr "Désactiver la licence"
|
1752 |
-
|
1753 |
-
#~ msgid ""
|
1754 |
-
#~ "Click to deactivate the license if you do not want to use it on this "
|
1755 |
-
#~ "server."
|
1756 |
-
#~ msgstr ""
|
1757 |
-
#~ "Cliquez pour désactiver la licence si vous ne voulez pas l'utiliser sur "
|
1758 |
-
#~ "ce serveur."
|
1759 |
-
|
1760 |
-
#~ msgid "The license expired on %1$s at %2$s."
|
1761 |
-
#~ msgstr "La licence a expiré le %1$s at %2$s."
|
1762 |
-
|
1763 |
-
#~ msgid "Click here for a new license"
|
1764 |
-
#~ msgstr "Cliquez ici pour acquérir une nouvelle licence"
|
1765 |
-
|
1766 |
-
#~ msgid "Activate License"
|
1767 |
-
#~ msgstr "Activer la licence"
|
1768 |
-
|
1769 |
-
#~ msgid ""
|
1770 |
-
#~ "Click to activate the license after you have entered your license key."
|
1771 |
-
#~ msgstr ""
|
1772 |
-
#~ "Cliquez pour activer la licence après avoir entré la clé de licence."
|
1773 |
-
|
1774 |
-
#~ msgid "Manage license in your account at the online shop."
|
1775 |
-
#~ msgstr "Gérer la licence dans votre compte au magasin en ligne."
|
1776 |
-
|
1777 |
-
#~ msgid "Important advices about the license"
|
1778 |
-
#~ msgstr "Conseils importants pour votre licence"
|
1779 |
-
|
1780 |
-
#~ msgid "Why you can not upgrade the plugin"
|
1781 |
-
#~ msgstr "Pourquoi vous ne pouvez pas mettre à jour ce plugin"
|
1782 |
-
|
1783 |
-
#~ msgid ""
|
1784 |
-
#~ "If you use a Single Site License in more than one sites the plugin will "
|
1785 |
-
#~ "not upgrade automatically. A Single Site License works only in the site "
|
1786 |
-
#~ "where it was activated first."
|
1787 |
-
#~ msgstr ""
|
1788 |
-
#~ "Si vous utilisez une licence pour un seul site sur plusieurs sites, le "
|
1789 |
-
#~ "plugin ne pourra pas être mis à jour automatiquement. Une licence pour un "
|
1790 |
-
#~ "seul site ne fonctionne que pour le premier site activé."
|
1791 |
-
|
1792 |
-
#~ msgid ""
|
1793 |
-
#~ "To \"move\" a license you have to deactivate it in the old site at first "
|
1794 |
-
#~ "and after that activate it in the new site."
|
1795 |
-
#~ msgstr ""
|
1796 |
-
#~ "Pour \"déplacer\" une licence vous devez la désactiver dans l'ancien site "
|
1797 |
-
#~ "puis l'activer dans le nouveau."
|
1798 |
-
|
1799 |
-
#~ msgid "Why a license?"
|
1800 |
-
#~ msgstr "Pourquoi une licence?"
|
1801 |
-
|
1802 |
-
#~ msgid ""
|
1803 |
-
#~ "With activating the license you will receive automatic upgrades of the "
|
1804 |
-
#~ "plugin for 365 days since the day of the purchase. Each license key is "
|
1805 |
-
#~ "valid for one installation of the plugin only."
|
1806 |
-
#~ msgstr ""
|
1807 |
-
#~ "Avec une licence activée vous recevrez automatiquement les mises à jour "
|
1808 |
-
#~ "durant 365 jours. Chaque clé de licence est valide pour une seule "
|
1809 |
-
#~ "installation du plugin."
|
1810 |
-
|
1811 |
-
#~ msgid "Terms of the license"
|
1812 |
-
#~ msgstr "Conditions de la licence"
|
1813 |
-
|
1814 |
-
#~ msgid ""
|
1815 |
-
#~ "By activating this license you are also confirming your agreement to be "
|
1816 |
-
#~ "bound by the terms of the license associated with this plugin which you "
|
1817 |
-
#~ "acknowledged at the time of the purchase checkout."
|
1818 |
-
#~ msgstr ""
|
1819 |
-
#~ "En activant cette licence, vous confirmez votre accord avec les "
|
1820 |
-
#~ "conditions associées à ce plugin que vous avez validé au moment de "
|
1821 |
-
#~ "l'achat."
|
1822 |
-
|
1823 |
-
#~ msgid "https://www.quickfeaturedimages.com/terms-licence-withdrawal/"
|
1824 |
-
#~ msgstr "https://www.quickfeaturedimages.com/terms-licence-withdrawal/"
|
1825 |
-
|
1826 |
-
#~ msgid "Read the terms of the license (in new window)"
|
1827 |
-
#~ msgstr "Lire les conditions de la licence (Nouvelle fenêtre)"
|
1828 |
-
|
1829 |
-
#~ msgid ""
|
1830 |
-
#~ "This includes that the warranty offered by the plugin author is limited "
|
1831 |
-
#~ "to correcting any defects and that the plugin author will not be held "
|
1832 |
-
#~ "liable for any actions or financial loss occurring as a result of using "
|
1833 |
-
#~ "this plugin."
|
1834 |
-
#~ msgstr ""
|
1835 |
-
#~ "Cela inclut que la garantie offerte par l'auteur du plugin se limite à "
|
1836 |
-
#~ "corriger les défauts et que l'auteur du plugin ne sera pas responsable "
|
1837 |
-
#~ "des actions ou des pertes financières résultant de l'utilisation de ce "
|
1838 |
-
#~ "plugin."
|
1839 |
-
|
1840 |
-
#~ msgid "Contact"
|
1841 |
-
#~ msgstr "Contact"
|
1842 |
-
|
1843 |
-
#~ msgid ""
|
1844 |
-
#~ "If you have any issues and problems with activating you can contact the "
|
1845 |
-
#~ "plugin author for solutions."
|
1846 |
-
#~ msgstr ""
|
1847 |
-
#~ "Si vous avez des problèmes, y compris des problèmes d'activation, vous "
|
1848 |
-
#~ "pouvez contacter l'auteur du plugin pour les règler."
|
1849 |
-
|
1850 |
-
#~ msgid "https://www.quickfeaturedimages.com/contact/"
|
1851 |
-
#~ msgstr "https://www.quickfeaturedimages.com/contact/"
|
1852 |
-
|
1853 |
-
#~ msgid "Contact page (in new window)"
|
1854 |
-
#~ msgstr "Page de contact (Nouvelle fenêtre)"
|
1855 |
-
|
1856 |
-
#~ msgid "Image removed successfully from post"
|
1857 |
-
#~ msgstr "Image supprimée de l'article"
|
1858 |
-
|
1859 |
-
#~ msgid "Image not removed from post"
|
1860 |
-
#~ msgstr "Image non supprimée de l'article"
|
1861 |
-
|
1862 |
-
#~ msgid ""
|
1863 |
-
#~ "You can save the settings of this process as a preset to reuse them for "
|
1864 |
-
#~ "later processes. Enter a name and press the button. You can select the "
|
1865 |
-
#~ "preset using the name at the next pass."
|
1866 |
-
#~ msgstr ""
|
1867 |
-
#~ "Vous pouvez enregistrer les paramètres de ce processus comme préréglage "
|
1868 |
-
#~ "pour les réutiliser pour les processus ultérieurs. Indiquez un nom et "
|
1869 |
-
#~ "cliquez sur le bouton. Vous pouvez sélectionner le préréglage en "
|
1870 |
-
#~ "utilisant le nom au prochain essai."
|
1871 |
-
|
1872 |
-
#~ msgid "Enter a preset name"
|
1873 |
-
#~ msgstr "Indiquez un nom pour le préréglage"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
+
"POT-Creation-Date: 2017-07-23 22:25+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-07-23 22:25+0200\n"
|
9 |
+
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: fr_FR\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.3\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
28 |
"supprimer en batch dans les listes d'articles, et installer les \"images à "
|
29 |
"la Une\" pour les futurs articles."
|
30 |
|
31 |
+
#: admin/class-quick-featured-images-admin.php:276
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
38 |
"Ce plugin nécessite au minimum la version %s de WordPress. Il n'a donc pas "
|
39 |
"été activé. Pour l'utiliser, mettez WordPress à jour."
|
40 |
|
41 |
+
#: admin/class-quick-featured-images-admin.php:482
|
42 |
#, php-format
|
43 |
msgid "Welcome to %s! You can find the plugin at %s."
|
44 |
msgstr "Bienvenue, %s! Vous pouvez trouver le plugin à %s."
|
71 |
msgstr "Aucune modification n'a été enregistrée."
|
72 |
|
73 |
#: admin/class-quick-featured-images-defaults.php:253
|
74 |
+
#: admin/class-quick-featured-images-settings.php:605
|
75 |
msgid "Preset Featured Images"
|
76 |
msgstr "Préparer les images en avant"
|
77 |
|
79 |
msgid "Set default featured images for future posts"
|
80 |
msgstr "Définir l' image en avant par défaut pour les futurs articles"
|
81 |
|
82 |
+
#: admin/class-quick-featured-images-settings.php:230
|
83 |
msgid "Set the visibility of columns of featured images in posts lists"
|
84 |
msgstr "Afficher la colonne des \"images en avant\" dans la liste des articles"
|
85 |
|
86 |
+
#: admin/class-quick-featured-images-settings.php:380
|
87 |
msgid "Columns for featured images in posts lists"
|
88 |
msgstr "Colonnes pour les \"images en avant\" dans les listes d'articles"
|
89 |
|
90 |
+
#: admin/class-quick-featured-images-settings.php:388
|
91 |
msgid "Show additional column for featured images in lists of"
|
92 |
msgstr ""
|
93 |
"Afficher une colonne supplémentaire pour les \"images en avant\" dans les "
|
94 |
"listes de"
|
95 |
|
96 |
+
#: admin/class-quick-featured-images-settings.php:393
|
97 |
msgid "Posts list with image column"
|
98 |
msgstr "Liste des articles avec la colonne d'images"
|
99 |
|
100 |
+
#: admin/class-quick-featured-images-settings.php:416
|
101 |
msgid "Visibility of the plugin"
|
102 |
msgstr "Visibilité du plugin"
|
103 |
|
104 |
+
#: admin/class-quick-featured-images-settings.php:424
|
105 |
msgid "Which user role may see the plugin?"
|
106 |
msgstr "Qui (niveau) peut voir le plugin?"
|
107 |
|
108 |
+
#: admin/class-quick-featured-images-settings.php:556
|
109 |
msgid ""
|
110 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
111 |
"post lists."
|
112 |
msgstr ""
|
113 |
+
"Activer les checkboxes dans chaque type de contenu pour voir les colonnes "
|
114 |
+
"supplémentaires dans les listes d'articles."
|
115 |
|
116 |
+
#: admin/class-quick-featured-images-settings.php:568
|
117 |
msgid "Minimum user role to see the plugin in the backend"
|
118 |
msgstr "Niveau minimum requis pour voir le plugin"
|
119 |
|
120 |
+
#: admin/class-quick-featured-images-settings.php:604
|
121 |
msgid "Select the minimum user role a user must have to see the plugin."
|
122 |
msgstr ""
|
123 |
"Sélectionner le niveau minimum que doit avoir l'utilisateur pour voir le "
|
124 |
"plugin."
|
125 |
|
126 |
+
#: admin/class-quick-featured-images-settings.php:605
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"The rules as set in “%s” work on posts independently of this "
|
132 |
"Les règles telles que définies à “%s” sont appliquées aux "
|
133 |
"articles indépendement de ce règlage."
|
134 |
|
135 |
+
#: admin/class-quick-featured-images-settings.php:606
|
136 |
msgid ""
|
137 |
"This setting controls as well whether a user will see in an image column the "
|
138 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
142 |
"modification dans la colonne d'images, ou bien la vignette seule. Pour "
|
143 |
"afficher/supprimer la colonne d'images, utiliser la section ci-dessus."
|
144 |
|
145 |
+
#: admin/class-quick-featured-images-settings.php:607
|
|
|
|
|
|
|
146 |
msgid "This page is accessible for administrators only."
|
147 |
+
msgstr "Cette page n'est accessible qu'aux administrateurs."
|
148 |
|
149 |
+
#: admin/class-quick-featured-images-settings.php:617
|
150 |
msgid ""
|
151 |
"The additional columns give you a quick overview about all used featured "
|
152 |
"images for every post. The Featured Image column is sortable."
|
154 |
"Les colonnes additionnelles vous montrent les \"images en avant\"pour chaque "
|
155 |
"article. La colonne de l' \"image en avant\" peut être tréee."
|
156 |
|
157 |
+
#: admin/class-quick-featured-images-settings.php:626
|
158 |
msgid "Controls which minimum user role can see the plugin."
|
159 |
msgstr "Controle quels niveaux d'autorisation peuvent voir le plugin."
|
160 |
|
217 |
|
218 |
#: admin/class-quick-featured-images-tools.php:599
|
219 |
msgid "Post Type Filter"
|
220 |
+
msgstr "Filtre de type de contenu"
|
221 |
|
222 |
#: admin/class-quick-featured-images-tools.php:600
|
223 |
msgid "Category Filter"
|
303 |
|
304 |
#: admin/views/filter_post_types.php:2
|
305 |
msgid "Select post types"
|
306 |
+
msgstr "Choisir le type de contenu"
|
307 |
|
308 |
#: admin/views/filter_post_types.php:2
|
|
|
309 |
msgid "You can select posts and pages."
|
310 |
+
msgstr "Vous pouvez selectionner des articles et des pages."
|
311 |
|
312 |
#: admin/views/filter_tag.php:7
|
313 |
msgid "Select a tag"
|
423 |
"Vous pouvez éditer un article dans une nouvelle fenêtre en cliquant sur son "
|
424 |
"lien dans la liste."
|
425 |
|
426 |
+
#: admin/views/form_confirm.php:121
|
427 |
msgid "Confirm the change"
|
428 |
msgstr "Confirmer le changement"
|
429 |
|
430 |
+
#: admin/views/form_confirm.php:122
|
431 |
msgid "You can not undo the operation!"
|
432 |
msgstr "Vous ne pouvez pas annuler l'opération!"
|
433 |
|
434 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
435 |
#: admin/views/section_results.php:86
|
436 |
msgid "Start again"
|
437 |
msgstr "Recommencer"
|
438 |
|
439 |
+
#: admin/views/form_confirm.php:183
|
440 |
msgid "or refine your selection with the following form fields."
|
441 |
msgstr "ou affinez votre sélection avec les champs suivants."
|
442 |
|
549 |
#: admin/views/form_select.php:72
|
550 |
msgid "There are two more options in the premium version for random images:"
|
551 |
msgstr ""
|
552 |
+
"Il y a deux options supplémentaires dans la version premium pour les images "
|
553 |
+
"au hasard:"
|
554 |
|
555 |
#: admin/views/form_select.php:74
|
556 |
msgid "Use each selected image only once"
|
557 |
msgstr "N'utiliser qu'une seule fois chaque image sélectionnée"
|
558 |
|
559 |
#: admin/views/form_select.php:75
|
|
|
560 |
msgid "Remove excess featured images after all selected images are used"
|
561 |
msgstr ""
|
562 |
+
"Supprimer les images mises en avant en surplus après que toutes les images "
|
563 |
+
"sélectionnées aient été utilisées"
|
564 |
|
565 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
566 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
567 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
568 |
#: admin/views/section_overview.php:91
|
569 |
msgid "Get the premium version"
|
570 |
+
msgstr "Obtenir la version premium"
|
571 |
|
572 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
573 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
574 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
575 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
576 |
msgid "/"
|
577 |
msgstr "/"
|
599 |
msgstr "Vous pouvez choisir plusieurs filtres."
|
600 |
|
601 |
#: admin/views/form_select.php:95
|
|
|
|
|
|
|
602 |
msgid "Search by post type. By default all posts and pages will be affected."
|
603 |
msgstr ""
|
604 |
+
"Recherche par type de contenu. Par défaut, tous les articles et pages seront "
|
605 |
+
"affectés."
|
606 |
|
607 |
#: admin/views/form_select.php:98
|
608 |
msgid "Search posts by category"
|
614 |
|
615 |
#: admin/views/form_select.php:115 admin/views/section_overview.php:91
|
616 |
msgid "Are you looking for more options and more filters?"
|
617 |
+
msgstr "Désirez-vous plus d'options et de filtres?"
|
618 |
|
619 |
#: admin/views/form_select.php:116
|
620 |
msgid "If you encounter a white, blank page, read this"
|
770 |
msgstr "Ces actions ne nécessitent pas de sélectionner une image."
|
771 |
|
772 |
#: admin/views/form_start.php:113
|
|
|
773 |
msgid "Do you want to assign the first image of each post?"
|
774 |
+
msgstr "Souhaitez-vous assigner la première image pour chaque article?"
|
775 |
|
776 |
#: admin/views/section_defaults.php:16
|
777 |
msgid "matches"
|
779 |
|
780 |
#: admin/views/section_defaults.php:59
|
781 |
msgid "Post Type"
|
782 |
+
msgstr "Type de contenu"
|
783 |
|
784 |
#: admin/views/section_defaults.php:204
|
785 |
msgid "Default featured images for future posts"
|
829 |
msgstr "Texte avec des images dans l'editeur WordPress"
|
830 |
|
831 |
#: admin/views/section_defaults.php:252
|
|
|
|
|
|
|
832 |
msgid ""
|
833 |
"Activate to automatically use the first content image if available in the "
|
834 |
"media library as featured image while saving a post"
|
835 |
msgstr ""
|
836 |
+
"Activer pour utiliser automatiquement la première image incluse si elle "
|
837 |
+
"existe dans la bibliothèque d'images, comme image mise en avant lors de la "
|
838 |
+
"sauvegarde des articles"
|
839 |
|
840 |
#: admin/views/section_defaults.php:254
|
|
|
|
|
|
|
|
|
|
|
841 |
msgid ""
|
842 |
"If activated the rule is used automatically while saving a post to set the "
|
843 |
"first content image - if available in the media library - as the featured "
|
844 |
"image of the post. If the post has no content images the next rules will be "
|
845 |
"applied."
|
846 |
msgstr ""
|
847 |
+
"Si activée, cette règle est utilisée automatiquement lors de la sauvegarde "
|
848 |
+
"des articles pour installer la première image - si disponible dans la "
|
849 |
+
"bibliothèque de medias - comme image mise en avant de l'article. Si "
|
850 |
+
"l'article ne contient aucune image, la règle suivante sera appliquée."
|
851 |
+
|
852 |
+
#: admin/views/section_defaults.php:255
|
853 |
+
msgid "For which post types should this rule be applied?"
|
854 |
+
msgstr "Pour quels types de contenu cette règle devrait-elle être appliquée?"
|
855 |
+
|
856 |
+
#: admin/views/section_defaults.php:282
|
857 |
+
msgid ""
|
858 |
+
"Select at least one post type, otherwise all post types will be considered."
|
859 |
+
msgstr ""
|
860 |
+
"Sélectionnez au moins un type de contenu, sinon tous les types de contenu "
|
861 |
+
"seront considérés."
|
862 |
|
863 |
+
#: admin/views/section_defaults.php:488
|
864 |
msgid "Add rule"
|
865 |
msgstr "Ajouter une règle"
|
866 |
|
867 |
+
#: admin/views/section_defaults.php:493
|
868 |
msgid "Are you sure to remove this rule?"
|
869 |
msgstr "Voulez-vous vraiment détruire cette règle?"
|
870 |
|
871 |
+
#: admin/views/section_defaults.php:496
|
|
|
872 |
msgid "How the rules work"
|
873 |
+
msgstr "Comment fonctionnent les règles"
|
874 |
|
875 |
+
#: admin/views/section_defaults.php:497
|
876 |
msgid ""
|
877 |
"Every time you save a post the post get the featured image if one of the "
|
878 |
"following rules match a property of the post. You can also set rules for "
|
879 |
"pages and all other current post types which support featured images."
|
880 |
msgstr ""
|
881 |
+
"Chaque fois que vous sauvegardez un article, l'article installera l'image "
|
882 |
+
"mise en avant si une est trouvée en fonction des règles suivantes. Vous "
|
883 |
+
"pouvez également définir les règles pour les pages et autres types de "
|
884 |
+
"contenu supportant les images mises en avant."
|
885 |
|
886 |
+
#: admin/views/section_defaults.php:498
|
887 |
msgid ""
|
888 |
"Regardless of the order in the list the rules are applied in the following "
|
889 |
"order until a rule and a property of the post fit together:"
|
891 |
"Quelque soit l'ordre dans la liste, les règles sont appliquées dans l'ordre "
|
892 |
"jusqu'à ce que la condition nécessaire soit remplie:"
|
893 |
|
894 |
+
#: admin/views/section_defaults.php:500
|
|
|
895 |
msgid "found first content image. If not then..."
|
896 |
+
msgstr "a trouvé la première image incluse. Sinon, alors..."
|
897 |
|
898 |
+
#: admin/views/section_defaults.php:501
|
899 |
msgid "matched custom taxonomy. If not then..."
|
900 |
msgstr "corresponde avec la taxonomie voulue. Sinon, alors..."
|
901 |
|
902 |
+
#: admin/views/section_defaults.php:502
|
903 |
msgid "matched tag. If not then..."
|
904 |
msgstr "corresponde avec l'étiquette. Sinon, alors..."
|
905 |
|
906 |
+
#: admin/views/section_defaults.php:503
|
907 |
msgid "matched category. If not then..."
|
908 |
msgstr "corresponde avec la catégorie. Sinon, alors..."
|
909 |
|
910 |
+
#: admin/views/section_defaults.php:504
|
911 |
msgid "matched author. If not then..."
|
912 |
msgstr "corresponde avec l'auteur. Sinon, alors..."
|
913 |
|
914 |
+
#: admin/views/section_defaults.php:505
|
915 |
msgid "matched post type. If not then..."
|
916 |
+
msgstr "corresponde avec le type de contenu. Sinon, alors..."
|
917 |
|
918 |
+
#: admin/views/section_defaults.php:506
|
919 |
msgid "no featured image."
|
920 |
msgstr "pas d'image sélectionnée."
|
921 |
|
922 |
+
#: admin/views/section_defaults.php:508
|
923 |
msgid ""
|
924 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
925 |
"the post it is unforeseeable which image will become the featured image."
|
928 |
"correspondaient à l'article, il est imprévisible de savoir quelle image sera "
|
929 |
"installée en image en avant."
|
930 |
|
931 |
+
#: admin/views/section_defaults.php:509
|
932 |
msgid "Additional rules in the premium version"
|
933 |
+
msgstr "Règles supplémentaires dans la version premium"
|
934 |
|
935 |
+
#: admin/views/section_defaults.php:511
|
|
|
936 |
msgid "Multiple images to set them randomly as featured image"
|
937 |
msgstr ""
|
938 |
+
"Images multiples pour les installer au hasard comme images mises en avant"
|
939 |
|
940 |
+
#: admin/views/section_defaults.php:512
|
|
|
941 |
msgid "Random featured images at each page load"
|
942 |
+
msgstr "Image mise en avant au hasard chaque fois que la page s'affiche"
|
943 |
|
944 |
+
#: admin/views/section_defaults.php:513
|
945 |
msgid ""
|
946 |
"The first content image can be also an image from an external server to set "
|
947 |
"it as automated featured image"
|
948 |
msgstr ""
|
949 |
+
"La premiere image incluse peut 2galement provenir d'un serveur distant et "
|
950 |
+
"sera installée comme image mise en avant"
|
951 |
|
952 |
+
#: admin/views/section_defaults.php:514
|
|
|
|
|
|
|
953 |
msgid ""
|
954 |
"Remove the first content image automatically after the featured image was "
|
955 |
"set successfully"
|
956 |
msgstr ""
|
957 |
+
"Supprimer la première image incluse automatiquement après l'installation "
|
958 |
+
"réussie de l'image mise en avant"
|
959 |
|
960 |
+
#: admin/views/section_defaults.php:515
|
|
|
961 |
msgid "Match with a search string in post title"
|
962 |
+
msgstr "Correspondance avec la chaine cherchée dans le titre de l'article"
|
963 |
|
964 |
+
#: admin/views/section_defaults.php:516
|
|
|
965 |
msgid "Match with a selected post format"
|
966 |
+
msgstr "Correspondance avec le format de l'article sélectionné"
|
967 |
|
968 |
+
#: admin/views/section_defaults.php:517
|
969 |
msgid "User defined order of rules"
|
970 |
+
msgstr "Ordre des règles défini par l'utilisateur"
|
971 |
|
972 |
+
#: admin/views/section_defaults.php:518
|
973 |
msgid "Import your rules from this plugin into the premium plugin"
|
974 |
+
msgstr "Importer vos règles depuis ce plugin vers sa version premium"
|
975 |
|
976 |
#: admin/views/section_errormsg.php:1
|
977 |
msgid "Error"
|
994 |
msgstr "Aimez-vous ce plugin?"
|
995 |
|
996 |
#: admin/views/section_footer.php:54 admin/views/section_results.php:88
|
|
|
997 |
msgid "Please rate it at wordpress.org!"
|
998 |
+
msgstr "Merci de voter pour nous à wordpress.org!"
|
999 |
|
1000 |
#: admin/views/section_footer.php:55
|
1001 |
msgid ""
|
1002 |
"The plugin is for free. But the plugin author would be delighted to your "
|
1003 |
"small contribution."
|
1004 |
msgstr ""
|
1005 |
+
"Ce plugin est Gratuit, mais l'auteur apprécierait votre petite contribution."
|
1006 |
|
1007 |
#: admin/views/section_footer.php:55
|
1008 |
msgid "Donation Button"
|
1009 |
+
msgstr "Bouton Donation"
|
1010 |
|
1011 |
#: admin/views/section_footer.php:55
|
1012 |
msgid "Donate with PayPal"
|
1013 |
+
msgstr "Donation avec Paypal"
|
1014 |
|
1015 |
#: admin/views/section_footer.php:56
|
1016 |
msgid "Do you need support or have an idea for the plugin?"
|
1017 |
msgstr "Avez-vous besoin d'aide ou avez-vous une suggestion pour ce plugin?"
|
1018 |
|
1019 |
#: admin/views/section_footer.php:56
|
|
|
|
|
1020 |
msgid ""
|
1021 |
"Post your questions and ideas about Quick Featured Images in the forum at "
|
1022 |
"wordpress.org!"
|
1023 |
msgstr ""
|
1024 |
+
"Postez vos questions et suggestions sur Quick Featured Images sur le forum "
|
1025 |
+
"de wordpress.org!"
|
1026 |
|
1027 |
#: admin/views/section_footer.php:57
|
1028 |
msgid "Special thanks for the fine frontend style of the plugin go to"
|
1033 |
"Let the thumbnails appear in the widget of the most recent posts with this "
|
1034 |
"fast plugin"
|
1035 |
msgstr ""
|
1036 |
+
"Faites apparaitre la vignette dans le widget des plus récents articles avec "
|
1037 |
+
"ce plugin rapide"
|
1038 |
|
1039 |
#: admin/views/section_footer.php:58
|
1040 |
#, php-format
|
1041 |
msgid "Download plugin %s at %s!"
|
1042 |
+
msgstr "Télécharger le plugin %s sur %s!"
|
1043 |
|
1044 |
#: admin/views/section_header_progress.php:15
|
1045 |
msgid "Progress bar"
|
1099 |
|
1100 |
#: admin/views/section_overview.php:89
|
1101 |
msgid "The premium version"
|
1102 |
+
msgstr "Version premium"
|
1103 |
|
1104 |
#: admin/views/section_results.php:1
|
1105 |
msgid "Results of the action"
|
1116 |
#: admin/views/section_results.php:82
|
1117 |
msgid "No matches found."
|
1118 |
msgstr "Rien de trouvé."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/quick-featured-images-pt_BR.mo
CHANGED
Binary file
|
languages/quick-featured-images-pt_BR.po
CHANGED
@@ -4,19 +4,19 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
-
"PO-Revision-Date: 2017-07-
|
|
|
9 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language: pt_BR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.0.
|
15 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
16 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
-
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
@@ -28,7 +28,7 @@ msgstr ""
|
|
28 |
"substituir e exclui-las em massa, na lista de mensagens e definir imagens "
|
29 |
"predefinidas para mensagens futuras."
|
30 |
|
31 |
-
#: admin/class-quick-featured-images-admin.php:
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
@@ -39,7 +39,7 @@ msgstr ""
|
|
39 |
"não o ativou. Se você quiser usar este plugin atualize o seu Wordpress para "
|
40 |
"a versão mais recente."
|
41 |
|
42 |
-
#: admin/class-quick-featured-images-admin.php:
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Bem-vindo ao %s! Você pode encontrar o plugin em %s."
|
@@ -72,7 +72,7 @@ msgid "No changes were saved."
|
|
72 |
msgstr "Nenhuma alteração foi salva."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
-
#: admin/class-quick-featured-images-settings.php:
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Predefinir Imagens Destacadas"
|
78 |
|
@@ -80,32 +80,32 @@ msgstr "Predefinir Imagens Destacadas"
|
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "Definir imagem destacada padrão para posts futuros"
|
82 |
|
83 |
-
#: admin/class-quick-featured-images-settings.php:
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr ""
|
86 |
"Definir a visibilidade das colunas de imagens destacadas nas listas de posts"
|
87 |
|
88 |
-
#: admin/class-quick-featured-images-settings.php:
|
89 |
msgid "Columns for featured images in posts lists"
|
90 |
msgstr "Colunas para imagens destacadas nas listas de posts"
|
91 |
|
92 |
-
#: admin/class-quick-featured-images-settings.php:
|
93 |
msgid "Show additional column for featured images in lists of"
|
94 |
msgstr "Mostrar coluna adicional para imagens destacadas nas listas de"
|
95 |
|
96 |
-
#: admin/class-quick-featured-images-settings.php:
|
97 |
msgid "Posts list with image column"
|
98 |
msgstr "Lista de posts com coluna de imagem"
|
99 |
|
100 |
-
#: admin/class-quick-featured-images-settings.php:
|
101 |
msgid "Visibility of the plugin"
|
102 |
msgstr "Visibilidade do plugin"
|
103 |
|
104 |
-
#: admin/class-quick-featured-images-settings.php:
|
105 |
msgid "Which user role may see the plugin?"
|
106 |
msgstr "Qual função de usuário pode ver o plug-in?"
|
107 |
|
108 |
-
#: admin/class-quick-featured-images-settings.php:
|
109 |
msgid ""
|
110 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
111 |
"post lists."
|
@@ -113,17 +113,17 @@ msgstr ""
|
|
113 |
"Ative as caixas de seleção em cada tipo de post para mostrar as colunas "
|
114 |
"extras nas listas de posts."
|
115 |
|
116 |
-
#: admin/class-quick-featured-images-settings.php:
|
117 |
msgid "Minimum user role to see the plugin in the backend"
|
118 |
msgstr "Função de usuário mínima para ver o plug-in no back-end"
|
119 |
|
120 |
-
#: admin/class-quick-featured-images-settings.php:
|
121 |
msgid "Select the minimum user role a user must have to see the plugin."
|
122 |
msgstr ""
|
123 |
"Selecione a função de usuário mínima que um usuário deve ter para ver o plug-"
|
124 |
"in."
|
125 |
|
126 |
-
#: admin/class-quick-featured-images-settings.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"The rules as set in “%s” work on posts independently of this "
|
@@ -132,7 +132,7 @@ msgstr ""
|
|
132 |
"As regras definidas em “%s” funcionam em postagens "
|
133 |
"independentemente dessa configuração."
|
134 |
|
135 |
-
#: admin/class-quick-featured-images-settings.php:
|
136 |
msgid ""
|
137 |
"This setting controls as well whether a user will see in an image column the "
|
138 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
@@ -142,11 +142,11 @@ msgstr ""
|
|
142 |
"as miniaturas com links de ação ou apenas as miniaturas. Para ativar e "
|
143 |
"desativar colunas de imagem, use a seção acima."
|
144 |
|
145 |
-
#: admin/class-quick-featured-images-settings.php:
|
146 |
msgid "This page is accessible for administrators only."
|
147 |
msgstr "Esta página está acessível somente para administradores."
|
148 |
|
149 |
-
#: admin/class-quick-featured-images-settings.php:
|
150 |
msgid ""
|
151 |
"The additional columns give you a quick overview about all used featured "
|
152 |
"images for every post. The Featured Image column is sortable."
|
@@ -154,7 +154,7 @@ msgstr ""
|
|
154 |
"As colunas adicionais lhe dão uma rápida visão geral sobre todas imagens "
|
155 |
"destacadas usadas para cada post. A coluna de imagem destacada é ordenável."
|
156 |
|
157 |
-
#: admin/class-quick-featured-images-settings.php:
|
158 |
msgid "Controls which minimum user role can see the plugin."
|
159 |
msgstr "Controla qual função de usuário mínima pode ver o plug-in."
|
160 |
|
@@ -420,20 +420,20 @@ msgstr ""
|
|
420 |
"A lista está em ordem alfabética de acordo com o título do post. Você pode "
|
421 |
"editar um post em uma nova janela clicando em seu link na lista."
|
422 |
|
423 |
-
#: admin/views/form_confirm.php:
|
424 |
msgid "Confirm the change"
|
425 |
msgstr "Confirme a mudança"
|
426 |
|
427 |
-
#: admin/views/form_confirm.php:
|
428 |
msgid "You can not undo the operation!"
|
429 |
msgstr "Você não pode desfazer a operação!"
|
430 |
|
431 |
-
#: admin/views/form_confirm.php:
|
432 |
#: admin/views/section_results.php:86
|
433 |
msgid "Start again"
|
434 |
msgstr "Começar novamente"
|
435 |
|
436 |
-
#: admin/views/form_confirm.php:
|
437 |
msgid "or refine your selection with the following form fields."
|
438 |
msgstr "ou refine sua seleção com os campos a seguir."
|
439 |
|
@@ -559,7 +559,7 @@ msgstr ""
|
|
559 |
|
560 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
561 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
562 |
-
#: admin/views/section_defaults.php:
|
563 |
#: admin/views/section_overview.php:91
|
564 |
msgid "Get the premium version"
|
565 |
msgstr "Obter a versão premium"
|
@@ -567,7 +567,7 @@ msgstr "Obter a versão premium"
|
|
567 |
# Path to language site
|
568 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
569 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
570 |
-
#: admin/views/section_defaults.php:
|
571 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
572 |
msgid "/"
|
573 |
msgstr "/"
|
@@ -850,19 +850,30 @@ msgstr ""
|
|
850 |
"imagem destacada do post. Se o post não tem imagens de conteúdo as próximas "
|
851 |
"regras serão aplicadas."
|
852 |
|
853 |
-
#: admin/views/section_defaults.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgid "Add rule"
|
855 |
msgstr "Adicionar regra"
|
856 |
|
857 |
-
#: admin/views/section_defaults.php:
|
858 |
msgid "Are you sure to remove this rule?"
|
859 |
msgstr "Tem certeza que deseja remover essa regra?"
|
860 |
|
861 |
-
#: admin/views/section_defaults.php:
|
862 |
msgid "How the rules work"
|
863 |
msgstr "Como as regras funcionam"
|
864 |
|
865 |
-
#: admin/views/section_defaults.php:
|
866 |
msgid ""
|
867 |
"Every time you save a post the post get the featured image if one of the "
|
868 |
"following rules match a property of the post. You can also set rules for "
|
@@ -873,7 +884,7 @@ msgstr ""
|
|
873 |
"definir regras para páginas e todos os outros tipos de post atuais que "
|
874 |
"suportam imagens destacadas."
|
875 |
|
876 |
-
#: admin/views/section_defaults.php:
|
877 |
msgid ""
|
878 |
"Regardless of the order in the list the rules are applied in the following "
|
879 |
"order until a rule and a property of the post fit together:"
|
@@ -881,35 +892,35 @@ msgstr ""
|
|
881 |
"Independentemente da ordem na lista as regras são aplicadas na seguinte "
|
882 |
"ordem até que uma regra e uma propriedade do post se encaixem:"
|
883 |
|
884 |
-
#: admin/views/section_defaults.php:
|
885 |
msgid "found first content image. If not then..."
|
886 |
msgstr "primeira imagem de conteúdo encontrada. Se não, então..."
|
887 |
|
888 |
-
#: admin/views/section_defaults.php:
|
889 |
msgid "matched custom taxonomy. If not then..."
|
890 |
msgstr "combinou a taxonomia personalizada. Se não, então..."
|
891 |
|
892 |
-
#: admin/views/section_defaults.php:
|
893 |
msgid "matched tag. If not then..."
|
894 |
msgstr "combinou a tag. Se não, então..."
|
895 |
|
896 |
-
#: admin/views/section_defaults.php:
|
897 |
msgid "matched category. If not then..."
|
898 |
msgstr "combinou a categoria. Se não, então..."
|
899 |
|
900 |
-
#: admin/views/section_defaults.php:
|
901 |
msgid "matched author. If not then..."
|
902 |
msgstr "combinou o autor. Se não, então..."
|
903 |
|
904 |
-
#: admin/views/section_defaults.php:
|
905 |
msgid "matched post type. If not then..."
|
906 |
msgstr "combinou o tipo de post. Se não, então..."
|
907 |
|
908 |
-
#: admin/views/section_defaults.php:
|
909 |
msgid "no featured image."
|
910 |
msgstr "nenhuma imagem destacada."
|
911 |
|
912 |
-
#: admin/views/section_defaults.php:
|
913 |
msgid ""
|
914 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
915 |
"the post it is unforeseeable which image will become the featured image."
|
@@ -917,19 +928,19 @@ msgstr ""
|
|
917 |
"Tenha em mente que, se duas ou mais regras com a mesma taxonomia caberem ao "
|
918 |
"post é imprevisível qual a imagem se tornará a imagem em destaque."
|
919 |
|
920 |
-
#: admin/views/section_defaults.php:
|
921 |
msgid "Additional rules in the premium version"
|
922 |
msgstr "Regras adicionais na versão premium"
|
923 |
|
924 |
-
#: admin/views/section_defaults.php:
|
925 |
msgid "Multiple images to set them randomly as featured image"
|
926 |
msgstr "Várias imagens para defini-las aleatoriamente como imagem em destaque"
|
927 |
|
928 |
-
#: admin/views/section_defaults.php:
|
929 |
msgid "Random featured images at each page load"
|
930 |
msgstr "Imagens aleatórias em cada carga de página"
|
931 |
|
932 |
-
#: admin/views/section_defaults.php:
|
933 |
msgid ""
|
934 |
"The first content image can be also an image from an external server to set "
|
935 |
"it as automated featured image"
|
@@ -937,7 +948,7 @@ msgstr ""
|
|
937 |
"A primeira imagem do conteúdo pode ser também uma imagem de um servidor "
|
938 |
"externo para defini-la automaticamente como imagem destacada"
|
939 |
|
940 |
-
#: admin/views/section_defaults.php:
|
941 |
msgid ""
|
942 |
"Remove the first content image automatically after the featured image was "
|
943 |
"set successfully"
|
@@ -945,19 +956,19 @@ msgstr ""
|
|
945 |
"Remover a primeira imagem de conteúdo automaticamente depois que a imagem "
|
946 |
"destacada for definida com êxito"
|
947 |
|
948 |
-
#: admin/views/section_defaults.php:
|
949 |
msgid "Match with a search string in post title"
|
950 |
msgstr "Combine com uma string de pesquisa no título do post"
|
951 |
|
952 |
-
#: admin/views/section_defaults.php:
|
953 |
msgid "Match with a selected post format"
|
954 |
msgstr "Combine com um formato de post selecionado"
|
955 |
|
956 |
-
#: admin/views/section_defaults.php:
|
957 |
msgid "User defined order of rules"
|
958 |
msgstr "Ordem de regras definidas pelo usuário"
|
959 |
|
960 |
-
#: admin/views/section_defaults.php:
|
961 |
msgid "Import your rules from this plugin into the premium plugin"
|
962 |
msgstr "Importar suas regras deste plugin para o plugin premium"
|
963 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
+
"POT-Creation-Date: 2017-07-23 21:47+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-07-23 21:55+0200\n"
|
9 |
+
"Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"Language: pt_BR\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 2.0.3\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
17 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
28 |
"substituir e exclui-las em massa, na lista de mensagens e definir imagens "
|
29 |
"predefinidas para mensagens futuras."
|
30 |
|
31 |
+
#: admin/class-quick-featured-images-admin.php:276
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
39 |
"não o ativou. Se você quiser usar este plugin atualize o seu Wordpress para "
|
40 |
"a versão mais recente."
|
41 |
|
42 |
+
#: admin/class-quick-featured-images-admin.php:482
|
43 |
#, php-format
|
44 |
msgid "Welcome to %s! You can find the plugin at %s."
|
45 |
msgstr "Bem-vindo ao %s! Você pode encontrar o plugin em %s."
|
72 |
msgstr "Nenhuma alteração foi salva."
|
73 |
|
74 |
#: admin/class-quick-featured-images-defaults.php:253
|
75 |
+
#: admin/class-quick-featured-images-settings.php:605
|
76 |
msgid "Preset Featured Images"
|
77 |
msgstr "Predefinir Imagens Destacadas"
|
78 |
|
80 |
msgid "Set default featured images for future posts"
|
81 |
msgstr "Definir imagem destacada padrão para posts futuros"
|
82 |
|
83 |
+
#: admin/class-quick-featured-images-settings.php:230
|
84 |
msgid "Set the visibility of columns of featured images in posts lists"
|
85 |
msgstr ""
|
86 |
"Definir a visibilidade das colunas de imagens destacadas nas listas de posts"
|
87 |
|
88 |
+
#: admin/class-quick-featured-images-settings.php:380
|
89 |
msgid "Columns for featured images in posts lists"
|
90 |
msgstr "Colunas para imagens destacadas nas listas de posts"
|
91 |
|
92 |
+
#: admin/class-quick-featured-images-settings.php:388
|
93 |
msgid "Show additional column for featured images in lists of"
|
94 |
msgstr "Mostrar coluna adicional para imagens destacadas nas listas de"
|
95 |
|
96 |
+
#: admin/class-quick-featured-images-settings.php:393
|
97 |
msgid "Posts list with image column"
|
98 |
msgstr "Lista de posts com coluna de imagem"
|
99 |
|
100 |
+
#: admin/class-quick-featured-images-settings.php:416
|
101 |
msgid "Visibility of the plugin"
|
102 |
msgstr "Visibilidade do plugin"
|
103 |
|
104 |
+
#: admin/class-quick-featured-images-settings.php:424
|
105 |
msgid "Which user role may see the plugin?"
|
106 |
msgstr "Qual função de usuário pode ver o plug-in?"
|
107 |
|
108 |
+
#: admin/class-quick-featured-images-settings.php:556
|
109 |
msgid ""
|
110 |
"Activate the checkboxes at each post type to show the extra columns in the "
|
111 |
"post lists."
|
113 |
"Ative as caixas de seleção em cada tipo de post para mostrar as colunas "
|
114 |
"extras nas listas de posts."
|
115 |
|
116 |
+
#: admin/class-quick-featured-images-settings.php:568
|
117 |
msgid "Minimum user role to see the plugin in the backend"
|
118 |
msgstr "Função de usuário mínima para ver o plug-in no back-end"
|
119 |
|
120 |
+
#: admin/class-quick-featured-images-settings.php:604
|
121 |
msgid "Select the minimum user role a user must have to see the plugin."
|
122 |
msgstr ""
|
123 |
"Selecione a função de usuário mínima que um usuário deve ter para ver o plug-"
|
124 |
"in."
|
125 |
|
126 |
+
#: admin/class-quick-featured-images-settings.php:605
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"The rules as set in “%s” work on posts independently of this "
|
132 |
"As regras definidas em “%s” funcionam em postagens "
|
133 |
"independentemente dessa configuração."
|
134 |
|
135 |
+
#: admin/class-quick-featured-images-settings.php:606
|
136 |
msgid ""
|
137 |
"This setting controls as well whether a user will see in an image column the "
|
138 |
"thumbnails with action links or the thumbnails only. To switch image columns "
|
142 |
"as miniaturas com links de ação ou apenas as miniaturas. Para ativar e "
|
143 |
"desativar colunas de imagem, use a seção acima."
|
144 |
|
145 |
+
#: admin/class-quick-featured-images-settings.php:607
|
146 |
msgid "This page is accessible for administrators only."
|
147 |
msgstr "Esta página está acessível somente para administradores."
|
148 |
|
149 |
+
#: admin/class-quick-featured-images-settings.php:617
|
150 |
msgid ""
|
151 |
"The additional columns give you a quick overview about all used featured "
|
152 |
"images for every post. The Featured Image column is sortable."
|
154 |
"As colunas adicionais lhe dão uma rápida visão geral sobre todas imagens "
|
155 |
"destacadas usadas para cada post. A coluna de imagem destacada é ordenável."
|
156 |
|
157 |
+
#: admin/class-quick-featured-images-settings.php:626
|
158 |
msgid "Controls which minimum user role can see the plugin."
|
159 |
msgstr "Controla qual função de usuário mínima pode ver o plug-in."
|
160 |
|
420 |
"A lista está em ordem alfabética de acordo com o título do post. Você pode "
|
421 |
"editar um post em uma nova janela clicando em seu link na lista."
|
422 |
|
423 |
+
#: admin/views/form_confirm.php:121
|
424 |
msgid "Confirm the change"
|
425 |
msgstr "Confirme a mudança"
|
426 |
|
427 |
+
#: admin/views/form_confirm.php:122
|
428 |
msgid "You can not undo the operation!"
|
429 |
msgstr "Você não pode desfazer a operação!"
|
430 |
|
431 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
432 |
#: admin/views/section_results.php:86
|
433 |
msgid "Start again"
|
434 |
msgstr "Começar novamente"
|
435 |
|
436 |
+
#: admin/views/form_confirm.php:183
|
437 |
msgid "or refine your selection with the following form fields."
|
438 |
msgstr "ou refine sua seleção com os campos a seguir."
|
439 |
|
559 |
|
560 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
561 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
562 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
563 |
#: admin/views/section_overview.php:91
|
564 |
msgid "Get the premium version"
|
565 |
msgstr "Obter a versão premium"
|
567 |
# Path to language site
|
568 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
569 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
570 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
571 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
572 |
msgid "/"
|
573 |
msgstr "/"
|
850 |
"imagem destacada do post. Se o post não tem imagens de conteúdo as próximas "
|
851 |
"regras serão aplicadas."
|
852 |
|
853 |
+
#: admin/views/section_defaults.php:255
|
854 |
+
msgid "For which post types should this rule be applied?"
|
855 |
+
msgstr "Para quais tipos de post essa regra deve ser aplicada?"
|
856 |
+
|
857 |
+
#: admin/views/section_defaults.php:282
|
858 |
+
msgid ""
|
859 |
+
"Select at least one post type, otherwise all post types will be considered."
|
860 |
+
msgstr ""
|
861 |
+
"Selecione pelo menos um tipo de post, caso contrário, todos os tipos de post "
|
862 |
+
"serão considerados."
|
863 |
+
|
864 |
+
#: admin/views/section_defaults.php:488
|
865 |
msgid "Add rule"
|
866 |
msgstr "Adicionar regra"
|
867 |
|
868 |
+
#: admin/views/section_defaults.php:493
|
869 |
msgid "Are you sure to remove this rule?"
|
870 |
msgstr "Tem certeza que deseja remover essa regra?"
|
871 |
|
872 |
+
#: admin/views/section_defaults.php:496
|
873 |
msgid "How the rules work"
|
874 |
msgstr "Como as regras funcionam"
|
875 |
|
876 |
+
#: admin/views/section_defaults.php:497
|
877 |
msgid ""
|
878 |
"Every time you save a post the post get the featured image if one of the "
|
879 |
"following rules match a property of the post. You can also set rules for "
|
884 |
"definir regras para páginas e todos os outros tipos de post atuais que "
|
885 |
"suportam imagens destacadas."
|
886 |
|
887 |
+
#: admin/views/section_defaults.php:498
|
888 |
msgid ""
|
889 |
"Regardless of the order in the list the rules are applied in the following "
|
890 |
"order until a rule and a property of the post fit together:"
|
892 |
"Independentemente da ordem na lista as regras são aplicadas na seguinte "
|
893 |
"ordem até que uma regra e uma propriedade do post se encaixem:"
|
894 |
|
895 |
+
#: admin/views/section_defaults.php:500
|
896 |
msgid "found first content image. If not then..."
|
897 |
msgstr "primeira imagem de conteúdo encontrada. Se não, então..."
|
898 |
|
899 |
+
#: admin/views/section_defaults.php:501
|
900 |
msgid "matched custom taxonomy. If not then..."
|
901 |
msgstr "combinou a taxonomia personalizada. Se não, então..."
|
902 |
|
903 |
+
#: admin/views/section_defaults.php:502
|
904 |
msgid "matched tag. If not then..."
|
905 |
msgstr "combinou a tag. Se não, então..."
|
906 |
|
907 |
+
#: admin/views/section_defaults.php:503
|
908 |
msgid "matched category. If not then..."
|
909 |
msgstr "combinou a categoria. Se não, então..."
|
910 |
|
911 |
+
#: admin/views/section_defaults.php:504
|
912 |
msgid "matched author. If not then..."
|
913 |
msgstr "combinou o autor. Se não, então..."
|
914 |
|
915 |
+
#: admin/views/section_defaults.php:505
|
916 |
msgid "matched post type. If not then..."
|
917 |
msgstr "combinou o tipo de post. Se não, então..."
|
918 |
|
919 |
+
#: admin/views/section_defaults.php:506
|
920 |
msgid "no featured image."
|
921 |
msgstr "nenhuma imagem destacada."
|
922 |
|
923 |
+
#: admin/views/section_defaults.php:508
|
924 |
msgid ""
|
925 |
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
926 |
"the post it is unforeseeable which image will become the featured image."
|
928 |
"Tenha em mente que, se duas ou mais regras com a mesma taxonomia caberem ao "
|
929 |
"post é imprevisível qual a imagem se tornará a imagem em destaque."
|
930 |
|
931 |
+
#: admin/views/section_defaults.php:509
|
932 |
msgid "Additional rules in the premium version"
|
933 |
msgstr "Regras adicionais na versão premium"
|
934 |
|
935 |
+
#: admin/views/section_defaults.php:511
|
936 |
msgid "Multiple images to set them randomly as featured image"
|
937 |
msgstr "Várias imagens para defini-las aleatoriamente como imagem em destaque"
|
938 |
|
939 |
+
#: admin/views/section_defaults.php:512
|
940 |
msgid "Random featured images at each page load"
|
941 |
msgstr "Imagens aleatórias em cada carga de página"
|
942 |
|
943 |
+
#: admin/views/section_defaults.php:513
|
944 |
msgid ""
|
945 |
"The first content image can be also an image from an external server to set "
|
946 |
"it as automated featured image"
|
948 |
"A primeira imagem do conteúdo pode ser também uma imagem de um servidor "
|
949 |
"externo para defini-la automaticamente como imagem destacada"
|
950 |
|
951 |
+
#: admin/views/section_defaults.php:514
|
952 |
msgid ""
|
953 |
"Remove the first content image automatically after the featured image was "
|
954 |
"set successfully"
|
956 |
"Remover a primeira imagem de conteúdo automaticamente depois que a imagem "
|
957 |
"destacada for definida com êxito"
|
958 |
|
959 |
+
#: admin/views/section_defaults.php:515
|
960 |
msgid "Match with a search string in post title"
|
961 |
msgstr "Combine com uma string de pesquisa no título do post"
|
962 |
|
963 |
+
#: admin/views/section_defaults.php:516
|
964 |
msgid "Match with a selected post format"
|
965 |
msgstr "Combine com um formato de post selecionado"
|
966 |
|
967 |
+
#: admin/views/section_defaults.php:517
|
968 |
msgid "User defined order of rules"
|
969 |
msgstr "Ordem de regras definidas pelo usuário"
|
970 |
|
971 |
+
#: admin/views/section_defaults.php:518
|
972 |
msgid "Import your rules from this plugin into the premium plugin"
|
973 |
msgstr "Importar suas regras deste plugin para o plugin premium"
|
974 |
|
languages/quick-featured-images.pot
CHANGED
@@ -1,32 +1,39 @@
|
|
1 |
# Copyright (C) 2014
|
2 |
# This file is distributed under the same license as the plugin package.
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Quick Featured Images\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
7 |
-
"POT-Creation-Date: 2017-07-
|
8 |
"PO-Revision-Date: 2017-07-06 23:17+0200\n"
|
9 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.0.
|
14 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
15 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: admin/class-quick-featured-images-admin.php:213
|
21 |
-
msgid "
|
|
|
|
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/class-quick-featured-images-admin.php:
|
25 |
#, php-format
|
26 |
-
msgid "
|
|
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/class-quick-featured-images-admin.php:
|
30 |
#, php-format
|
31 |
msgid "Welcome to %s! You can find the plugin at %s."
|
32 |
msgstr ""
|
@@ -59,7 +66,7 @@ msgid "No changes were saved."
|
|
59 |
msgstr ""
|
60 |
|
61 |
#: admin/class-quick-featured-images-defaults.php:253
|
62 |
-
#: admin/class-quick-featured-images-settings.php:
|
63 |
msgid "Preset Featured Images"
|
64 |
msgstr ""
|
65 |
|
@@ -67,60 +74,69 @@ msgstr ""
|
|
67 |
msgid "Set default featured images for future posts"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin/class-quick-featured-images-settings.php:
|
71 |
msgid "Set the visibility of columns of featured images in posts lists"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin/class-quick-featured-images-settings.php:
|
75 |
msgid "Columns for featured images in posts lists"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin/class-quick-featured-images-settings.php:
|
79 |
msgid "Show additional column for featured images in lists of"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin/class-quick-featured-images-settings.php:
|
83 |
msgid "Posts list with image column"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin/class-quick-featured-images-settings.php:
|
87 |
msgid "Visibility of the plugin"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin/class-quick-featured-images-settings.php:
|
91 |
msgid "Which user role may see the plugin?"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin/class-quick-featured-images-settings.php:
|
95 |
-
msgid "
|
|
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin/class-quick-featured-images-settings.php:
|
99 |
msgid "Minimum user role to see the plugin in the backend"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/class-quick-featured-images-settings.php:
|
103 |
msgid "Select the minimum user role a user must have to see the plugin."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/class-quick-featured-images-settings.php:
|
107 |
#, php-format
|
108 |
-
msgid "
|
|
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: admin/class-quick-featured-images-settings.php:
|
112 |
-
msgid "
|
|
|
|
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin/class-quick-featured-images-settings.php:
|
116 |
msgid "This page is accessible for administrators only."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/class-quick-featured-images-settings.php:
|
120 |
-
msgid "
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/class-quick-featured-images-settings.php:
|
124 |
msgid "Controls which minimum user role can see the plugin."
|
125 |
msgstr ""
|
126 |
|
@@ -286,7 +302,9 @@ msgid "Select filters and options again"
|
|
286 |
msgstr ""
|
287 |
|
288 |
#: admin/views/form_back_to_selection.php:3
|
289 |
-
msgid "
|
|
|
|
|
290 |
msgstr ""
|
291 |
|
292 |
#: admin/views/form_back_to_selection.php:42
|
@@ -303,7 +321,9 @@ msgid "%d matches found"
|
|
303 |
msgstr ""
|
304 |
|
305 |
#: admin/views/form_confirm.php:12
|
306 |
-
msgid "
|
|
|
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: admin/views/form_confirm.php:15 admin/views/section_results.php:16
|
@@ -336,11 +356,15 @@ msgid "Should the selected image be set as featured image to all listed posts?"
|
|
336 |
msgstr ""
|
337 |
|
338 |
#: admin/views/form_confirm.php:38
|
339 |
-
msgid "
|
|
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
#: admin/views/form_confirm.php:41
|
343 |
-
msgid "
|
|
|
|
|
344 |
msgstr ""
|
345 |
|
346 |
#: admin/views/form_confirm.php:44
|
@@ -356,23 +380,25 @@ msgid "Should the added featured images be removed from all listed posts?"
|
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin/views/form_confirm.php:54 admin/views/section_results.php:27
|
359 |
-
msgid "
|
|
|
|
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/views/form_confirm.php:
|
363 |
msgid "Confirm the change"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/views/form_confirm.php:
|
367 |
msgid "You can not undo the operation!"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/views/form_confirm.php:
|
371 |
#: admin/views/section_results.php:86
|
372 |
msgid "Start again"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/views/form_confirm.php:
|
376 |
msgid "or refine your selection with the following form fields."
|
377 |
msgstr ""
|
378 |
|
@@ -385,7 +411,8 @@ msgid "Refine filters"
|
|
385 |
msgstr ""
|
386 |
|
387 |
#: admin/views/form_refine.php:9
|
388 |
-
msgid "
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
#: admin/views/form_refine.php:10
|
@@ -402,7 +429,9 @@ msgid "Preview filtering"
|
|
402 |
msgstr ""
|
403 |
|
404 |
#: admin/views/form_refine.php:54
|
405 |
-
msgid "
|
|
|
|
|
406 |
msgstr ""
|
407 |
|
408 |
#: admin/views/form_select.php:9 admin/views/form_start.php:4
|
@@ -411,7 +440,9 @@ msgid "Notice"
|
|
411 |
msgstr ""
|
412 |
|
413 |
#: admin/views/form_select.php:11
|
414 |
-
msgid "
|
|
|
|
|
415 |
msgstr ""
|
416 |
|
417 |
#: admin/views/form_select.php:17
|
@@ -423,7 +454,9 @@ msgid "You can select multiple images. Select at least one image."
|
|
423 |
msgstr ""
|
424 |
|
425 |
#: admin/views/form_select.php:19 admin/views/form_start.php:80
|
426 |
-
msgid "
|
|
|
|
|
427 |
msgstr ""
|
428 |
|
429 |
#: admin/views/form_select.php:23 admin/views/form_start.php:84
|
@@ -455,7 +488,9 @@ msgid "Overwrite existing featured images with new ones"
|
|
455 |
msgstr ""
|
456 |
|
457 |
#: admin/views/form_select.php:63
|
458 |
-
msgid "
|
|
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
#: admin/views/form_select.php:72
|
@@ -472,15 +507,14 @@ msgstr ""
|
|
472 |
|
473 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
474 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
475 |
-
#: admin/views/section_defaults.php:
|
476 |
#: admin/views/section_overview.php:91
|
477 |
msgid "Get the premium version"
|
478 |
msgstr ""
|
479 |
|
480 |
-
# Path to language site
|
481 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
482 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
483 |
-
#: admin/views/section_defaults.php:
|
484 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
485 |
msgid "/"
|
486 |
msgstr ""
|
@@ -494,11 +528,15 @@ msgid "Select filters"
|
|
494 |
msgstr ""
|
495 |
|
496 |
#: admin/views/form_select.php:89
|
497 |
-
msgid "
|
|
|
|
|
498 |
msgstr ""
|
499 |
|
500 |
#: admin/views/form_select.php:90
|
501 |
-
msgid "
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
#: admin/views/form_select.php:95
|
@@ -522,7 +560,11 @@ msgid "If you encounter a white, blank page, read this"
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: admin/views/form_select.php:117
|
525 |
-
msgid "
|
|
|
|
|
|
|
|
|
526 |
msgstr ""
|
527 |
|
528 |
#: admin/views/form_select.php:120
|
@@ -542,15 +584,22 @@ msgid "and repeat it with the next time range as often as needed."
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: admin/views/form_select.php:125
|
545 |
-
msgid "
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
#: admin/views/form_select.php:130
|
549 |
-
msgid "
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
#: admin/views/form_start.php:6 admin/views/section_defaults.php:215
|
553 |
-
msgid "
|
|
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
#: admin/views/form_start.php:12
|
@@ -558,7 +607,9 @@ msgid "What do you want to do?"
|
|
558 |
msgstr ""
|
559 |
|
560 |
#: admin/views/form_start.php:14
|
561 |
-
msgid "
|
|
|
|
|
562 |
msgstr ""
|
563 |
|
564 |
#: admin/views/form_start.php:15
|
@@ -570,7 +621,9 @@ msgid "Important advice"
|
|
570 |
msgstr ""
|
571 |
|
572 |
#: admin/views/form_start.php:18
|
573 |
-
msgid "
|
|
|
|
|
574 |
msgstr ""
|
575 |
|
576 |
#: admin/views/form_start.php:20
|
@@ -586,7 +639,9 @@ msgid "These actions require to select an image with the following button."
|
|
586 |
msgstr ""
|
587 |
|
588 |
#: admin/views/form_start.php:35
|
589 |
-
msgid "
|
|
|
|
|
590 |
msgstr ""
|
591 |
|
592 |
#: admin/views/form_start.php:57
|
@@ -598,11 +653,16 @@ msgid "If the button does not work, read this:"
|
|
598 |
msgstr ""
|
599 |
|
600 |
#: admin/views/form_start.php:62
|
601 |
-
msgid "
|
|
|
|
|
602 |
msgstr ""
|
603 |
|
604 |
#: admin/views/form_start.php:63
|
605 |
-
msgid "
|
|
|
|
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
#: admin/views/form_start.php:67
|
@@ -610,7 +670,8 @@ msgid "Actions with multiple images"
|
|
610 |
msgstr ""
|
611 |
|
612 |
#: admin/views/form_start.php:68
|
613 |
-
msgid "
|
|
|
614 |
msgstr ""
|
615 |
|
616 |
#: admin/views/form_start.php:101
|
@@ -638,11 +699,15 @@ msgid "Default featured images for future posts"
|
|
638 |
msgstr ""
|
639 |
|
640 |
#: admin/views/section_defaults.php:206
|
641 |
-
msgid "
|
|
|
|
|
642 |
msgstr ""
|
643 |
|
644 |
#: admin/views/section_defaults.php:207
|
645 |
-
msgid "
|
|
|
|
|
646 |
msgstr ""
|
647 |
|
648 |
#: admin/views/section_defaults.php:235
|
@@ -650,11 +715,16 @@ msgid "An image overwrites an existing image"
|
|
650 |
msgstr ""
|
651 |
|
652 |
#: admin/views/section_defaults.php:239
|
653 |
-
msgid "
|
|
|
|
|
654 |
msgstr ""
|
655 |
|
656 |
#: admin/views/section_defaults.php:241
|
657 |
-
msgid "
|
|
|
|
|
|
|
658 |
msgstr ""
|
659 |
|
660 |
#: admin/views/section_defaults.php:248
|
@@ -662,98 +732,124 @@ msgid "Text with images in WordPress editor"
|
|
662 |
msgstr ""
|
663 |
|
664 |
#: admin/views/section_defaults.php:252
|
665 |
-
msgid "
|
|
|
|
|
666 |
msgstr ""
|
667 |
|
668 |
#: admin/views/section_defaults.php:254
|
669 |
-
msgid "
|
|
|
|
|
|
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: admin/views/section_defaults.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
msgid "Add rule"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: admin/views/section_defaults.php:
|
677 |
msgid "Are you sure to remove this rule?"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: admin/views/section_defaults.php:
|
681 |
msgid "How the rules work"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: admin/views/section_defaults.php:
|
685 |
-
msgid "
|
|
|
|
|
|
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: admin/views/section_defaults.php:
|
689 |
-
msgid "
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: admin/views/section_defaults.php:
|
693 |
msgid "found first content image. If not then..."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: admin/views/section_defaults.php:
|
697 |
msgid "matched custom taxonomy. If not then..."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: admin/views/section_defaults.php:
|
701 |
msgid "matched tag. If not then..."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: admin/views/section_defaults.php:
|
705 |
msgid "matched category. If not then..."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/views/section_defaults.php:
|
709 |
msgid "matched author. If not then..."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: admin/views/section_defaults.php:
|
713 |
msgid "matched post type. If not then..."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: admin/views/section_defaults.php:
|
717 |
msgid "no featured image."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: admin/views/section_defaults.php:
|
721 |
-
msgid "
|
|
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: admin/views/section_defaults.php:
|
725 |
msgid "Additional rules in the premium version"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: admin/views/section_defaults.php:
|
729 |
msgid "Multiple images to set them randomly as featured image"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: admin/views/section_defaults.php:
|
733 |
msgid "Random featured images at each page load"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: admin/views/section_defaults.php:
|
737 |
-
msgid "
|
|
|
|
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: admin/views/section_defaults.php:
|
741 |
-
msgid "
|
|
|
|
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: admin/views/section_defaults.php:
|
745 |
msgid "Match with a search string in post title"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: admin/views/section_defaults.php:
|
749 |
msgid "Match with a selected post format"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: admin/views/section_defaults.php:
|
753 |
msgid "User defined order of rules"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: admin/views/section_defaults.php:
|
757 |
msgid "Import your rules from this plugin into the premium plugin"
|
758 |
msgstr ""
|
759 |
|
@@ -782,7 +878,9 @@ msgid "Please rate it at wordpress.org!"
|
|
782 |
msgstr ""
|
783 |
|
784 |
#: admin/views/section_footer.php:55
|
785 |
-
msgid "
|
|
|
|
|
786 |
msgstr ""
|
787 |
|
788 |
#: admin/views/section_footer.php:55
|
@@ -798,7 +896,9 @@ msgid "Do you need support or have an idea for the plugin?"
|
|
798 |
msgstr ""
|
799 |
|
800 |
#: admin/views/section_footer.php:56
|
801 |
-
msgid "
|
|
|
|
|
802 |
msgstr ""
|
803 |
|
804 |
#: admin/views/section_footer.php:57
|
@@ -806,7 +906,9 @@ msgid "Special thanks for the fine frontend style of the plugin go to"
|
|
806 |
msgstr ""
|
807 |
|
808 |
#: admin/views/section_footer.php:58
|
809 |
-
msgid "
|
|
|
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: admin/views/section_footer.php:58
|
1 |
# Copyright (C) 2014
|
2 |
# This file is distributed under the same license as the plugin package.
|
3 |
+
#, fuzzy
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Quick Featured Images\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
|
8 |
+
"POT-Creation-Date: 2017-07-23 22:36+0200\n"
|
9 |
"PO-Revision-Date: 2017-07-06 23:17+0200\n"
|
10 |
"Language-Team: Martin Stehle <m.stehle@gmx.de>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 2.0.3\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
16 |
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
+
"Last-Translator: \n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
#: admin/class-quick-featured-images-admin.php:213
|
23 |
+
msgid ""
|
24 |
+
"Your time-saving Swiss Army Knife for featured images: Set, replace and "
|
25 |
+
"delete them in bulk, in posts lists and set default images for future posts."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/class-quick-featured-images-admin.php:276
|
29 |
#, php-format
|
30 |
+
msgid ""
|
31 |
+
"The plugin requires WordPress version %s or higher. Therefore, WordPress did "
|
32 |
+
"not activate it. If you want to use this plugin update the Wordpress files "
|
33 |
+
"to the latest version."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/class-quick-featured-images-admin.php:482
|
37 |
#, php-format
|
38 |
msgid "Welcome to %s! You can find the plugin at %s."
|
39 |
msgstr ""
|
66 |
msgstr ""
|
67 |
|
68 |
#: admin/class-quick-featured-images-defaults.php:253
|
69 |
+
#: admin/class-quick-featured-images-settings.php:605
|
70 |
msgid "Preset Featured Images"
|
71 |
msgstr ""
|
72 |
|
74 |
msgid "Set default featured images for future posts"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: admin/class-quick-featured-images-settings.php:230
|
78 |
msgid "Set the visibility of columns of featured images in posts lists"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin/class-quick-featured-images-settings.php:380
|
82 |
msgid "Columns for featured images in posts lists"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin/class-quick-featured-images-settings.php:388
|
86 |
msgid "Show additional column for featured images in lists of"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/class-quick-featured-images-settings.php:393
|
90 |
msgid "Posts list with image column"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/class-quick-featured-images-settings.php:416
|
94 |
msgid "Visibility of the plugin"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/class-quick-featured-images-settings.php:424
|
98 |
msgid "Which user role may see the plugin?"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/class-quick-featured-images-settings.php:556
|
102 |
+
msgid ""
|
103 |
+
"Activate the checkboxes at each post type to show the extra columns in the "
|
104 |
+
"post lists."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/class-quick-featured-images-settings.php:568
|
108 |
msgid "Minimum user role to see the plugin in the backend"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/class-quick-featured-images-settings.php:604
|
112 |
msgid "Select the minimum user role a user must have to see the plugin."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin/class-quick-featured-images-settings.php:605
|
116 |
#, php-format
|
117 |
+
msgid ""
|
118 |
+
"The rules as set in “%s” work on posts independently of this "
|
119 |
+
"setting."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin/class-quick-featured-images-settings.php:606
|
123 |
+
msgid ""
|
124 |
+
"This setting controls as well whether a user will see in an image column the "
|
125 |
+
"thumbnails with action links or the thumbnails only. To switch image columns "
|
126 |
+
"on and off use the section above."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin/class-quick-featured-images-settings.php:607
|
130 |
msgid "This page is accessible for administrators only."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin/class-quick-featured-images-settings.php:617
|
134 |
+
msgid ""
|
135 |
+
"The additional columns give you a quick overview about all used featured "
|
136 |
+
"images for every post. The Featured Image column is sortable."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin/class-quick-featured-images-settings.php:626
|
140 |
msgid "Controls which minimum user role can see the plugin."
|
141 |
msgstr ""
|
142 |
|
302 |
msgstr ""
|
303 |
|
304 |
#: admin/views/form_back_to_selection.php:3
|
305 |
+
msgid ""
|
306 |
+
"If you want to change your former selection just go back by clicking on this "
|
307 |
+
"button."
|
308 |
msgstr ""
|
309 |
|
310 |
#: admin/views/form_back_to_selection.php:42
|
321 |
msgstr ""
|
322 |
|
323 |
#: admin/views/form_confirm.php:12
|
324 |
+
msgid ""
|
325 |
+
"Should the entries of featured images without image files be removed from "
|
326 |
+
"the database?"
|
327 |
msgstr ""
|
328 |
|
329 |
#: admin/views/form_confirm.php:15 admin/views/section_results.php:16
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin/views/form_confirm.php:38
|
359 |
+
msgid ""
|
360 |
+
"Should the selected images be set randomly as featured images to all listed "
|
361 |
+
"posts?"
|
362 |
msgstr ""
|
363 |
|
364 |
#: admin/views/form_confirm.php:41
|
365 |
+
msgid ""
|
366 |
+
"Should the current set featured image be replaced by the selected image at "
|
367 |
+
"all listed posts?"
|
368 |
msgstr ""
|
369 |
|
370 |
#: admin/views/form_confirm.php:44
|
380 |
msgstr ""
|
381 |
|
382 |
#: admin/views/form_confirm.php:54 admin/views/section_results.php:27
|
383 |
+
msgid ""
|
384 |
+
"The list is in alphabetical order according to post title. You can edit a "
|
385 |
+
"post in a new window by clicking on its link in the list."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/views/form_confirm.php:121
|
389 |
msgid "Confirm the change"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/views/form_confirm.php:122
|
393 |
msgid "You can not undo the operation!"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/views/form_confirm.php:183 admin/views/section_errormsg.php:8
|
397 |
#: admin/views/section_results.php:86
|
398 |
msgid "Start again"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/views/form_confirm.php:183
|
402 |
msgid "or refine your selection with the following form fields."
|
403 |
msgstr ""
|
404 |
|
411 |
msgstr ""
|
412 |
|
413 |
#: admin/views/form_refine.php:9
|
414 |
+
msgid ""
|
415 |
+
"Now you can find posts and pages by matching parameters. Refine them here."
|
416 |
msgstr ""
|
417 |
|
418 |
#: admin/views/form_refine.php:10
|
429 |
msgstr ""
|
430 |
|
431 |
#: admin/views/form_refine.php:54
|
432 |
+
msgid ""
|
433 |
+
"There are no selected filters. Modify your filter selection or just go on by "
|
434 |
+
"clicking on the next button."
|
435 |
msgstr ""
|
436 |
|
437 |
#: admin/views/form_select.php:9 admin/views/form_start.php:4
|
440 |
msgstr ""
|
441 |
|
442 |
#: admin/views/form_select.php:11
|
443 |
+
msgid ""
|
444 |
+
"You did not have selected an image from the list below. To go on select at "
|
445 |
+
"least one image you want to replace by the selected image."
|
446 |
msgstr ""
|
447 |
|
448 |
#: admin/views/form_select.php:17
|
454 |
msgstr ""
|
455 |
|
456 |
#: admin/views/form_select.php:19 admin/views/form_start.php:80
|
457 |
+
msgid ""
|
458 |
+
"To select multiple images click on the button and use the CTRL key while "
|
459 |
+
"clicking on the images."
|
460 |
msgstr ""
|
461 |
|
462 |
#: admin/views/form_select.php:23 admin/views/form_start.php:84
|
488 |
msgstr ""
|
489 |
|
490 |
#: admin/views/form_select.php:63
|
491 |
+
msgid ""
|
492 |
+
"Posts with featured images will be ignored, even if the Overwrite option is "
|
493 |
+
"checked"
|
494 |
msgstr ""
|
495 |
|
496 |
#: admin/views/form_select.php:72
|
507 |
|
508 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
509 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
510 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
511 |
#: admin/views/section_overview.php:91
|
512 |
msgid "Get the premium version"
|
513 |
msgstr ""
|
514 |
|
|
|
515 |
#: admin/views/form_select.php:77 admin/views/form_select.php:115
|
516 |
#: admin/views/form_select.php:119 admin/views/form_start.php:113
|
517 |
+
#: admin/views/section_defaults.php:520 admin/views/section_footer.php:59
|
518 |
#: admin/views/section_overview.php:90 admin/views/section_overview.php:91
|
519 |
msgid "/"
|
520 |
msgstr ""
|
528 |
msgstr ""
|
529 |
|
530 |
#: admin/views/form_select.php:89
|
531 |
+
msgid ""
|
532 |
+
"If you want select one of the following filters to narrow down the set of "
|
533 |
+
"concerned posts and pages."
|
534 |
msgstr ""
|
535 |
|
536 |
#: admin/views/form_select.php:90
|
537 |
+
msgid ""
|
538 |
+
"You can select multiple filters. They will return an intersection of their "
|
539 |
+
"results."
|
540 |
msgstr ""
|
541 |
|
542 |
#: admin/views/form_select.php:95
|
560 |
msgstr ""
|
561 |
|
562 |
#: admin/views/form_select.php:117
|
563 |
+
msgid ""
|
564 |
+
"Facing a white blank page while trying to treat thousands of posts is the "
|
565 |
+
"effect of limited memory capacities on the website server. Instead of "
|
566 |
+
"treating a huge amount of posts in one single go try to treat small amounts "
|
567 |
+
"of posts multiple times successively. To achieve that do:"
|
568 |
msgstr ""
|
569 |
|
570 |
#: admin/views/form_select.php:120
|
584 |
msgstr ""
|
585 |
|
586 |
#: admin/views/form_select.php:125
|
587 |
+
msgid ""
|
588 |
+
"This way is not as fast as one single run, but still much faster than "
|
589 |
+
"setting the images for each post manually."
|
590 |
msgstr ""
|
591 |
|
592 |
#: admin/views/form_select.php:130
|
593 |
+
msgid ""
|
594 |
+
"On the next page you can refine the filters. If you did not select any "
|
595 |
+
"filter you will go to the preview list directly."
|
596 |
msgstr ""
|
597 |
|
598 |
#: admin/views/form_start.php:6 admin/views/section_defaults.php:215
|
599 |
+
msgid ""
|
600 |
+
"The current theme does not support featured images. Anyway you can use this "
|
601 |
+
"plugin. The effects are stored and will be visible in a theme which supports "
|
602 |
+
"featured images."
|
603 |
msgstr ""
|
604 |
|
605 |
#: admin/views/form_start.php:12
|
607 |
msgstr ""
|
608 |
|
609 |
#: admin/views/form_start.php:14
|
610 |
+
msgid ""
|
611 |
+
"Here you can add, replace and delete featured images to your posts. Select "
|
612 |
+
"one of the following actions and, if necessary, one or more images."
|
613 |
msgstr ""
|
614 |
|
615 |
#: admin/views/form_start.php:15
|
621 |
msgstr ""
|
622 |
|
623 |
#: admin/views/form_start.php:18
|
624 |
+
msgid ""
|
625 |
+
"There is no undo function! It is strongly recommended that you make a backup "
|
626 |
+
"of the WordPress database before you perform mass changes."
|
627 |
msgstr ""
|
628 |
|
629 |
#: admin/views/form_start.php:20
|
639 |
msgstr ""
|
640 |
|
641 |
#: admin/views/form_start.php:35
|
642 |
+
msgid ""
|
643 |
+
"Select the image you want to add to, replace or delete from posts and pages "
|
644 |
+
"by clicking on the following button."
|
645 |
msgstr ""
|
646 |
|
647 |
#: admin/views/form_start.php:57
|
653 |
msgstr ""
|
654 |
|
655 |
#: admin/views/form_start.php:62
|
656 |
+
msgid ""
|
657 |
+
"Some users reported that this button would not work in some WordPress "
|
658 |
+
"installations. If this should be the case you can take another way:"
|
659 |
msgstr ""
|
660 |
|
661 |
#: admin/views/form_start.php:63
|
662 |
+
msgid ""
|
663 |
+
"1. Go to the media library. 2. Move the mouse over the desired image. "
|
664 |
+
"Further links are appearing, among them the link "Bulk set as featured "
|
665 |
+
"image". 3. After a click on it you can move on in this plugin."
|
666 |
msgstr ""
|
667 |
|
668 |
#: admin/views/form_start.php:67
|
670 |
msgstr ""
|
671 |
|
672 |
#: admin/views/form_start.php:68
|
673 |
+
msgid ""
|
674 |
+
"These actions require at least one selected image with the following button."
|
675 |
msgstr ""
|
676 |
|
677 |
#: admin/views/form_start.php:101
|
699 |
msgstr ""
|
700 |
|
701 |
#: admin/views/section_defaults.php:206
|
702 |
+
msgid ""
|
703 |
+
"Define the rules to use images as default featured images automatically "
|
704 |
+
"every time a post is saved."
|
705 |
msgstr ""
|
706 |
|
707 |
#: admin/views/section_defaults.php:207
|
708 |
+
msgid ""
|
709 |
+
"To use a rule choose the image and set both the taxonomy and the value. A "
|
710 |
+
"rule which is defined only partially will be ignored."
|
711 |
msgstr ""
|
712 |
|
713 |
#: admin/views/section_defaults.php:235
|
715 |
msgstr ""
|
716 |
|
717 |
#: admin/views/section_defaults.php:239
|
718 |
+
msgid ""
|
719 |
+
"Activate to automatically overwrite an existing featured image while saving "
|
720 |
+
"a post"
|
721 |
msgstr ""
|
722 |
|
723 |
#: admin/views/section_defaults.php:241
|
724 |
+
msgid ""
|
725 |
+
"If activated the rule is used automatically while saving a post to overwrite "
|
726 |
+
"an existing featured image with the new one based on the following rules. Do "
|
727 |
+
"not use this if you want to keep manually set featured images."
|
728 |
msgstr ""
|
729 |
|
730 |
#: admin/views/section_defaults.php:248
|
732 |
msgstr ""
|
733 |
|
734 |
#: admin/views/section_defaults.php:252
|
735 |
+
msgid ""
|
736 |
+
"Activate to automatically use the first content image if available in the "
|
737 |
+
"media library as featured image while saving a post"
|
738 |
msgstr ""
|
739 |
|
740 |
#: admin/views/section_defaults.php:254
|
741 |
+
msgid ""
|
742 |
+
"If activated the rule is used automatically while saving a post to set the "
|
743 |
+
"first content image - if available in the media library - as the featured "
|
744 |
+
"image of the post. If the post has no content images the next rules will be "
|
745 |
+
"applied."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/views/section_defaults.php:255
|
749 |
+
msgid "For which post types should this rule be applied?"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: admin/views/section_defaults.php:282
|
753 |
+
msgid ""
|
754 |
+
"Select at least one post type, otherwise all post types will be considered."
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: admin/views/section_defaults.php:488
|
758 |
msgid "Add rule"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: admin/views/section_defaults.php:493
|
762 |
msgid "Are you sure to remove this rule?"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: admin/views/section_defaults.php:496
|
766 |
msgid "How the rules work"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: admin/views/section_defaults.php:497
|
770 |
+
msgid ""
|
771 |
+
"Every time you save a post the post get the featured image if one of the "
|
772 |
+
"following rules match a property of the post. You can also set rules for "
|
773 |
+
"pages and all other current post types which support featured images."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: admin/views/section_defaults.php:498
|
777 |
+
msgid ""
|
778 |
+
"Regardless of the order in the list the rules are applied in the following "
|
779 |
+
"order until a rule and a property of the post fit together:"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: admin/views/section_defaults.php:500
|
783 |
msgid "found first content image. If not then..."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: admin/views/section_defaults.php:501
|
787 |
msgid "matched custom taxonomy. If not then..."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: admin/views/section_defaults.php:502
|
791 |
msgid "matched tag. If not then..."
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: admin/views/section_defaults.php:503
|
795 |
msgid "matched category. If not then..."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: admin/views/section_defaults.php:504
|
799 |
msgid "matched author. If not then..."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: admin/views/section_defaults.php:505
|
803 |
msgid "matched post type. If not then..."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: admin/views/section_defaults.php:506
|
807 |
msgid "no featured image."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: admin/views/section_defaults.php:508
|
811 |
+
msgid ""
|
812 |
+
"Bear in mind that if two or more rules with the same taxonomy would fit to "
|
813 |
+
"the post it is unforeseeable which image will become the featured image."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: admin/views/section_defaults.php:509
|
817 |
msgid "Additional rules in the premium version"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: admin/views/section_defaults.php:511
|
821 |
msgid "Multiple images to set them randomly as featured image"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: admin/views/section_defaults.php:512
|
825 |
msgid "Random featured images at each page load"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: admin/views/section_defaults.php:513
|
829 |
+
msgid ""
|
830 |
+
"The first content image can be also an image from an external server to set "
|
831 |
+
"it as automated featured image"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: admin/views/section_defaults.php:514
|
835 |
+
msgid ""
|
836 |
+
"Remove the first content image automatically after the featured image was "
|
837 |
+
"set successfully"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: admin/views/section_defaults.php:515
|
841 |
msgid "Match with a search string in post title"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: admin/views/section_defaults.php:516
|
845 |
msgid "Match with a selected post format"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: admin/views/section_defaults.php:517
|
849 |
msgid "User defined order of rules"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: admin/views/section_defaults.php:518
|
853 |
msgid "Import your rules from this plugin into the premium plugin"
|
854 |
msgstr ""
|
855 |
|
878 |
msgstr ""
|
879 |
|
880 |
#: admin/views/section_footer.php:55
|
881 |
+
msgid ""
|
882 |
+
"The plugin is for free. But the plugin author would be delighted to your "
|
883 |
+
"small contribution."
|
884 |
msgstr ""
|
885 |
|
886 |
#: admin/views/section_footer.php:55
|
896 |
msgstr ""
|
897 |
|
898 |
#: admin/views/section_footer.php:56
|
899 |
+
msgid ""
|
900 |
+
"Post your questions and ideas about Quick Featured Images in the forum at "
|
901 |
+
"wordpress.org!"
|
902 |
msgstr ""
|
903 |
|
904 |
#: admin/views/section_footer.php:57
|
906 |
msgstr ""
|
907 |
|
908 |
#: admin/views/section_footer.php:58
|
909 |
+
msgid ""
|
910 |
+
"Let the thumbnails appear in the widget of the most recent posts with this "
|
911 |
+
"fast plugin"
|
912 |
msgstr ""
|
913 |
|
914 |
#: admin/views/section_footer.php:58
|
quick-featured-images.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
-
* Version: 13.
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
+
* Version: 13.2
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|