Quick Featured Images - Version 12.3.1

Version Description

  • Fixed missing loading of Javascript media API on post edit pages
  • Fixed a typo, revised translations
Download this release

Release Info

Developer Hinjiriyo
Plugin Icon 128x128 Quick Featured Images
Version 12.3.1
Comparing to
See all releases

Code changes from version 12.3 to 12.3.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: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
5
  Requires at least: 3.8
6
  Tested up to: 4.7.3
7
- Stable tag: 12.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -278,6 +278,10 @@ If you want to contribute a translation of the plugin in your language it would
278
 
279
  == Changelog ==
280
 
 
 
 
 
281
  = 12.3 =
282
  * Changed in part "Replace" of section "Set, replace, remove": Media library dialog box instead of image list to select the replacement images
283
  * Improved: Faster check for found attachment against being an image
@@ -408,6 +412,9 @@ Added spanish translation for the main texts of the plugin
408
 
409
  == Upgrade Notice ==
410
 
 
 
 
411
  = 12.3 =
412
  Faster image check, media library dialog box to select the replacement images, updated translations
413
 
4
  Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
5
  Requires at least: 3.8
6
  Tested up to: 4.7.3
7
+ Stable tag: 12.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
278
 
279
  == Changelog ==
280
 
281
+ = 12.3.1 =
282
+ * Fixed missing loading of Javascript media API on post edit pages
283
+ * Fixed a typo, revised translations
284
+
285
  = 12.3 =
286
  * Changed in part "Replace" of section "Set, replace, remove": Media library dialog box instead of image list to select the replacement images
287
  * Improved: Faster check for found attachment against being an image
412
 
413
  == Upgrade Notice ==
414
 
415
+ = 12.3.1 =
416
+ Fixed missing wp_enqueue_media(), fixed typo
417
+
418
  = 12.3 =
419
  Faster image check, media library dialog box to select the replacement images, updated translations
420
 
admin/class-quick-featured-images-admin.php CHANGED
@@ -19,7 +19,7 @@
19
  *
20
  * @var string
21
  */
22
- protected $plugin_version = '12.3';
23
 
24
  /**
25
  * Instance of this class.
19
  *
20
  * @var string
21
  */
22
+ protected $plugin_version = '12.3.1';
23
 
24
  /**
25
  * Instance of this class.
admin/class-quick-featured-images-columns.php CHANGED
@@ -202,19 +202,25 @@ class Quick_Featured_Images_Columns {
202
  * @return null Return early if no settings page is registered.
203
  */
204
  public function enqueue_admin_scripts() {
 
 
 
 
 
205
 
206
- $handle = $this->plugin_slug . '-admin-script';
207
-
208
- wp_enqueue_script( $handle, plugins_url( 'assets/js/admin-column.js', __FILE__ ), array( 'jquery' ), $this->plugin_version );
209
 
210
- $translations = array(
211
- 'nonce' => wp_create_nonce( 'qfi-image-column' ),
212
- );
213
- wp_localize_script( $handle, 'qfi_i18n', $translations );
 
214
 
215
- // Enqueued script with localized data.
216
- //wp_enqueue_script( $handle );
217
 
 
218
  }
219
 
220
  /**
202
  * @return null Return early if no settings page is registered.
203
  */
204
  public function enqueue_admin_scripts() {
205
+ // load CSS file in posts list pages only
206
+ $screen = get_current_screen();
207
+ if ( 'edit' == $screen->base ) {
208
+ // define handle once
209
+ $handle = $this->plugin_slug . '-admin-script';
210
 
211
+ // load script
212
+ wp_enqueue_script( $handle, plugins_url( 'assets/js/admin-column.js', __FILE__ ), array( 'jquery' ), $this->plugin_version );
 
213
 
214
+ // trick: use nonce as translated string to implement random values in JS
215
+ $translations = array(
216
+ 'nonce' => wp_create_nonce( 'qfi-image-column' ),
217
+ );
218
+ wp_localize_script( $handle, 'qfi_i18n', $translations );
219
 
220
+ // Enqueues all scripts, styles, settings, and templates necessary to use all media JavaScript APIs
221
+ wp_enqueue_media();
222
 
223
+ }
224
  }
225
 
226
  /**
admin/class-quick-featured-images-settings.php CHANGED
@@ -603,7 +603,7 @@ class Quick_Featured_Images_Settings {
603
  $html .= '</div>';
604
  $html .= '</fieldset>';
605
  $html .= sprintf( '<p class="description">%s</p>', __( 'Select the minimum user role a user must have to see the plugin.', 'quick-featured-images' ) );
606
- $html .= sprintf( '<p class="description">%s</p>', sprintf( __( 'The rules as set in &#8220;%s&#8221; works on posts independently of this setting.', 'quick-featured-images' ), __( 'Preset Featured Images', 'quick-featured-images' ) ) );
607
  $html .= sprintf( '<p class="description">%s</p>', __( 'This setting controls as well whether a user will see in an image column the thumbnails with action links or the thumbnails only. To switch image columns on and off use the section above.', 'quick-featured-images' ) );
608
  $html .= sprintf( '<p class="description">%s</p>', __( 'This page is accessible for administrators only.', 'quick-featured-images' ) );
609
  print $html;
603
  $html .= '</div>';
604
  $html .= '</fieldset>';
605
  $html .= sprintf( '<p class="description">%s</p>', __( 'Select the minimum user role a user must have to see the plugin.', 'quick-featured-images' ) );
606
+ $html .= sprintf( '<p class="description">%s</p>', sprintf( __( 'The rules as set in &#8220;%s&#8221; work on posts independently of this setting.', 'quick-featured-images' ), __( 'Preset Featured Images', 'quick-featured-images' ) ) );
607
  $html .= sprintf( '<p class="description">%s</p>', __( 'This setting controls as well whether a user will see in an image column the thumbnails with action links or the thumbnails only. To switch image columns on and off use the section above.', 'quick-featured-images' ) );
608
  $html .= sprintf( '<p class="description">%s</p>', __( 'This page is accessible for administrators only.', 'quick-featured-images' ) );
609
  print $html;
languages/quick-featured-images-ar.mo CHANGED
Binary file
languages/quick-featured-images-ar.po CHANGED
@@ -4,8 +4,8 @@ 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-03-12 23:15+0100\n"
8
- "PO-Revision-Date: 2017-03-12 23:36+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: ar\n"
@@ -44,20 +44,20 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:288
48
- #: admin/class-quick-featured-images-columns.php:408
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "تغيير %s"
52
 
53
- #: admin/class-quick-featured-images-columns.php:311
54
- #: admin/class-quick-featured-images-columns.php:409
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "إزالة %s"
58
 
59
- #: admin/class-quick-featured-images-columns.php:333
60
- #: admin/class-quick-featured-images-columns.php:478
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "صورة مضبوط ل %s"
@@ -122,7 +122,7 @@ msgstr ""
122
  #: admin/class-quick-featured-images-settings.php:606
123
  #, php-format
124
  msgid ""
125
- "The rules as set in &#8220;%s&#8221; works on posts independently of this "
126
  "setting."
127
  msgstr ""
128
  "قواعد النحو المنصوص في أعمال%s على المشاركات بشكل مستقل من هذا الإعداد."
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-03-18 12:19+0100\n"
8
+ "PO-Revision-Date: 2017-03-18 12:19+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: ar\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:294
48
+ #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "تغيير %s"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:317
54
+ #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "إزالة %s"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:339
60
+ #: admin/class-quick-featured-images-columns.php:484
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "صورة مضبوط ل %s"
122
  #: admin/class-quick-featured-images-settings.php:606
123
  #, php-format
124
  msgid ""
125
+ "The rules as set in &#8220;%s&#8221; work on posts independently of this "
126
  "setting."
127
  msgstr ""
128
  "قواعد النحو المنصوص في أعمال%s على المشاركات بشكل مستقل من هذا الإعداد."
languages/quick-featured-images-de_DE.mo CHANGED
Binary file
languages/quick-featured-images-de_DE.po CHANGED
@@ -4,8 +4,8 @@ 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-03-12 22:59+0100\n"
8
- "PO-Revision-Date: 2017-03-12 22:59+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: de_DE\n"
@@ -44,20 +44,20 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:288
48
- #: admin/class-quick-featured-images-columns.php:408
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Ändere &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:311
54
- #: admin/class-quick-featured-images-columns.php:409
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Lösche &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:333
60
- #: admin/class-quick-featured-images-columns.php:478
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Stelle Bild für &#8220;%s&#8221; ein"
@@ -126,7 +126,7 @@ msgstr ""
126
  #: admin/class-quick-featured-images-settings.php:606
127
  #, php-format
128
  msgid ""
129
- "The rules as set in &#8220;%s&#8221; works on posts independently of this "
130
  "setting."
131
  msgstr ""
132
  "Die Regeln, wie in &#8220;%s&#8221; eingestellt, funktionieren unabhängig "
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-03-18 12:19+0100\n"
8
+ "PO-Revision-Date: 2017-03-18 12:20+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: de_DE\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:294
48
+ #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Ändere &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:317
54
+ #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Lösche &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:339
60
+ #: admin/class-quick-featured-images-columns.php:484
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Stelle Bild für &#8220;%s&#8221; ein"
126
  #: admin/class-quick-featured-images-settings.php:606
127
  #, php-format
128
  msgid ""
129
+ "The rules as set in &#8220;%s&#8221; work on posts independently of this "
130
  "setting."
131
  msgstr ""
132
  "Die Regeln, wie in &#8220;%s&#8221; eingestellt, funktionieren unabhängig "
languages/quick-featured-images-es_ES.mo CHANGED
Binary file
languages/quick-featured-images-es_ES.po CHANGED
@@ -4,8 +4,8 @@ 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-03-12 23:02+0100\n"
8
- "PO-Revision-Date: 2017-03-12 23:05+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: es_ES\n"
@@ -44,20 +44,20 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:288
48
- #: admin/class-quick-featured-images-columns.php:408
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Cambia &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:311
54
- #: admin/class-quick-featured-images-columns.php:409
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Eliminar &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:333
60
- #: admin/class-quick-featured-images-columns.php:478
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Establecer imagen para &#8220;%s&#8221;"
@@ -130,7 +130,7 @@ msgstr ""
130
  #: admin/class-quick-featured-images-settings.php:606
131
  #, php-format
132
  msgid ""
133
- "The rules as set in &#8220;%s&#8221; works on posts independently of this "
134
  "setting."
135
  msgstr ""
136
  "Las normas que figuran en &#8220;%s&#8221; funciona en los mensajes "
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-03-18 12:20+0100\n"
8
+ "PO-Revision-Date: 2017-03-18 12:20+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: es_ES\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:294
48
+ #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Cambia &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:317
54
+ #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Eliminar &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:339
60
+ #: admin/class-quick-featured-images-columns.php:484
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Establecer imagen para &#8220;%s&#8221;"
130
  #: admin/class-quick-featured-images-settings.php:606
131
  #, php-format
132
  msgid ""
133
+ "The rules as set in &#8220;%s&#8221; work on posts independently of this "
134
  "setting."
135
  msgstr ""
136
  "Las normas que figuran en &#8220;%s&#8221; funciona en los mensajes "
languages/quick-featured-images-pt_BR.mo CHANGED
Binary file
languages/quick-featured-images-pt_BR.po CHANGED
@@ -4,8 +4,8 @@ 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-03-12 23:05+0100\n"
8
- "PO-Revision-Date: 2017-03-12 23:15+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: pt_BR\n"
@@ -44,20 +44,20 @@ msgstr ""
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."
46
 
47
- #: admin/class-quick-featured-images-columns.php:288
48
- #: admin/class-quick-featured-images-columns.php:408
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Alterar &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:311
54
- #: admin/class-quick-featured-images-columns.php:409
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Remover &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:333
60
- #: admin/class-quick-featured-images-columns.php:478
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Definir imagem para &#8220;%s&#8221;"
@@ -125,7 +125,7 @@ msgstr ""
125
  #: admin/class-quick-featured-images-settings.php:606
126
  #, php-format
127
  msgid ""
128
- "The rules as set in &#8220;%s&#8221; works on posts independently of this "
129
  "setting."
130
  msgstr ""
131
  "As regras definidas em &#8220;%s&#8221; funcionam em postagens "
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-03-18 12:20+0100\n"
8
+ "PO-Revision-Date: 2017-03-18 12:20+0100\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: pt_BR\n"
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."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:294
48
+ #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Alterar &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:317
54
+ #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Remover &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:339
60
+ #: admin/class-quick-featured-images-columns.php:484
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Definir imagem para &#8220;%s&#8221;"
125
  #: admin/class-quick-featured-images-settings.php:606
126
  #, php-format
127
  msgid ""
128
+ "The rules as set in &#8220;%s&#8221; work on posts independently of this "
129
  "setting."
130
  msgstr ""
131
  "As regras definidas em &#8220;%s&#8221; funcionam em postagens "
languages/quick-featured-images.pot CHANGED
@@ -4,13 +4,13 @@ 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: 2016-09-13 22:53+0200\n"
8
- "PO-Revision-Date: 2016-09-13 22:53+0200\n"
9
  "Language-Team: 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 1.8.9\n"
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"
@@ -104,7 +104,7 @@ msgstr ""
104
 
105
  #: admin/class-quick-featured-images-settings.php:606
106
  #, php-format
107
- msgid "The rules as set in &#8220;%s&#8221; works on posts independently of this setting."
108
  msgstr ""
109
 
110
  #: admin/class-quick-featured-images-settings.php:607
@@ -123,136 +123,136 @@ msgstr ""
123
  msgid "Controls which minimum user role can see the plugin."
124
  msgstr ""
125
 
126
- #: admin/class-quick-featured-images-tools.php:442
127
  #, php-format
128
  msgid "Wrong image ID %d"
129
  msgstr ""
130
 
131
- #: admin/class-quick-featured-images-tools.php:543
132
  msgid "Select"
133
  msgstr ""
134
 
135
- #: admin/class-quick-featured-images-tools.php:544
136
  msgid "Add filter"
137
  msgstr ""
138
 
139
- #: admin/class-quick-featured-images-tools.php:545
140
  msgid "Refine"
141
  msgstr ""
142
 
143
- #: admin/class-quick-featured-images-tools.php:546
144
  msgid "Confirm"
145
  msgstr ""
146
 
147
- #: admin/class-quick-featured-images-tools.php:547
148
  msgid "Perform"
149
  msgstr ""
150
 
151
- #: admin/class-quick-featured-images-tools.php:551
152
  msgid "Set the selected image as new featured image"
153
  msgstr ""
154
 
155
- #: admin/class-quick-featured-images-tools.php:552
156
  msgid "Replace featured images by the selected image"
157
  msgstr ""
158
 
159
- #: admin/class-quick-featured-images-tools.php:553
160
  msgid "Remove the selected image as featured image"
161
  msgstr ""
162
 
163
- #: admin/class-quick-featured-images-tools.php:556
164
  msgid "Remove any image as featured image"
165
  msgstr ""
166
 
167
- #: admin/class-quick-featured-images-tools.php:559
168
  msgid "Set multiple images randomly as featured images"
169
  msgstr ""
170
 
171
- #: admin/class-quick-featured-images-tools.php:563
172
  msgid "Overwrite featured images"
173
  msgstr ""
174
 
175
- #: admin/class-quick-featured-images-tools.php:564
176
  msgid "Consider only posts without any featured image"
177
  msgstr ""
178
 
179
- #: admin/class-quick-featured-images-tools.php:568
180
  msgid "Post Type Filter"
181
  msgstr ""
182
 
183
- #: admin/class-quick-featured-images-tools.php:569
184
  msgid "Category Filter"
185
  msgstr ""
186
 
187
- #: admin/class-quick-featured-images-tools.php:570
188
  msgid "Tag Filter"
189
  msgstr ""
190
 
191
- #: admin/class-quick-featured-images-tools.php:599
192
  msgid "Image width in pixels lower than"
193
  msgstr ""
194
 
195
- #: admin/class-quick-featured-images-tools.php:600
196
  msgid "Image height in pixels lower than"
197
  msgstr ""
198
 
199
- #: admin/class-quick-featured-images-tools.php:674
200
  #, php-format
201
  msgid "The input field %s is empty."
202
  msgstr ""
203
 
204
- #: admin/class-quick-featured-images-tools.php:675
205
  msgid "Type in a value into the input field."
206
  msgstr ""
207
 
208
- #: admin/class-quick-featured-images-tools.php:678
209
  #, php-format
210
  msgid "%s is not defined."
211
  msgstr ""
212
 
213
- #: admin/class-quick-featured-images-tools.php:679
214
  msgid "Check how to define the value."
215
  msgstr ""
216
 
217
- #: admin/class-quick-featured-images-tools.php:682
218
  msgid "There is no selected image."
219
  msgstr ""
220
 
221
- #: admin/class-quick-featured-images-tools.php:683
222
  msgid "Select an image from the media library."
223
  msgstr ""
224
 
225
- #: admin/class-quick-featured-images-tools.php:686
226
  #: admin/views/section_image.php:51
227
  msgid "You have not selected an action."
228
  msgstr ""
229
 
230
- #: admin/class-quick-featured-images-tools.php:687
231
  msgid "Start again and select which action you want to apply."
232
  msgstr ""
233
 
234
- #: admin/class-quick-featured-images-tools.php:690
235
  #, php-format
236
  msgid "The input field %s has an invalid value."
237
  msgstr ""
238
 
239
- #: admin/class-quick-featured-images-tools.php:691
240
  msgid "Type in valid values in the input field."
241
  msgstr ""
242
 
243
- #: admin/class-quick-featured-images-tools.php:695
244
  msgid "Type in values stored by WordPress."
245
  msgstr ""
246
 
247
- #: admin/class-quick-featured-images-tools.php:1801
248
  msgid "Set, replace, remove"
249
  msgstr ""
250
 
251
- #: admin/class-quick-featured-images-tools.php:1812
252
  msgid "Bulk set, replace and remove featured images for existing posts"
253
  msgstr ""
254
 
255
- #: admin/class-quick-featured-images-tools.php:1924
256
  msgid "Bulk set as featured image"
257
  msgstr ""
258
 
@@ -358,8 +358,8 @@ msgstr ""
358
  msgid "You can not undo the operation!"
359
  msgstr ""
360
 
361
- #: admin/views/form_confirm.php:173 admin/views/form_select.php:47
362
- #: admin/views/section_errormsg.php:8 admin/views/section_results.php:74
363
  msgid "Start again"
364
  msgstr ""
365
 
@@ -388,7 +388,7 @@ msgstr ""
388
  msgid "File %s is not available."
389
  msgstr ""
390
 
391
- #: admin/views/form_refine.php:48 admin/views/form_select.php:40
392
  msgid "Preview filtering"
393
  msgstr ""
394
 
@@ -396,139 +396,147 @@ msgstr ""
396
  msgid "There are no selected filters. Modify your filter selection or just go on by clicking on the next button."
397
  msgstr ""
398
 
399
- #: admin/views/form_select.php:11 admin/views/form_start.php:4
400
  #: admin/views/section_defaults.php:213
401
  msgid "Notice"
402
  msgstr ""
403
 
404
- #: admin/views/form_select.php:13
405
  msgid "You did not have selected an image from the list below. To go on select at least one image you want to replace by the selected image."
406
  msgstr ""
407
 
408
- #: admin/views/form_select.php:18
409
  msgid "Select the featured images you want to replace by the selected image."
410
  msgstr ""
411
 
412
- #: admin/views/form_select.php:19
413
  msgid "You can select multiple images. Select at least one image."
414
  msgstr ""
415
 
416
- #: admin/views/form_select.php:46
417
- msgid "There are no featured images in use."
 
 
 
 
 
 
 
 
418
  msgstr ""
419
 
420
- #: admin/views/form_select.php:55
421
  msgid "Refine your selections"
422
  msgstr ""
423
 
424
- #: admin/views/form_select.php:56 admin/views/form_select.php:66
425
  msgid "You can control the process with the following options."
426
  msgstr ""
427
 
428
- #: admin/views/form_select.php:63
429
  msgid "Optional: Select options"
430
  msgstr ""
431
 
432
- #: admin/views/form_select.php:65
433
  msgid "Process Options"
434
  msgstr ""
435
 
436
- #: admin/views/form_select.php:71
437
  msgid "Overwrite existing featured images with new ones"
438
  msgstr ""
439
 
440
- #: admin/views/form_select.php:81
441
  msgid "Posts with featured images will be ignored, even if the Overwrite option is checked "
442
  msgstr ""
443
 
444
- #: admin/views/form_select.php:90
445
  msgid "There are two more options in the premium version for random images:"
446
  msgstr ""
447
 
448
- #: admin/views/form_select.php:92
449
  msgid "Use each selected image only once"
450
  msgstr ""
451
 
452
- #: admin/views/form_select.php:93
453
  msgid "Remove excess featured images after all selected images are used"
454
  msgstr ""
455
 
456
- #: admin/views/form_select.php:95 admin/views/form_select.php:133
457
- #: admin/views/form_select.php:155 admin/views/form_start.php:113
458
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
459
  #: admin/views/section_overview.php:91
460
  msgid "Get the premium version"
461
  msgstr ""
462
 
463
  # Path to language site
464
- #: admin/views/form_select.php:95 admin/views/form_select.php:133
465
- #: admin/views/form_select.php:155 admin/views/form_start.php:113
466
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
467
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
468
  msgid "/"
469
  msgstr ""
470
 
471
- #: admin/views/form_select.php:104
472
  msgid "Optional: Add a filter"
473
  msgstr ""
474
 
475
- #: admin/views/form_select.php:106
476
  msgid "Select filters"
477
  msgstr ""
478
 
479
- #: admin/views/form_select.php:107
480
  msgid "If you want select one of the following filters to narrow down the set of concerned posts and pages."
481
  msgstr ""
482
 
483
- #: admin/views/form_select.php:108
484
  msgid "You can select multiple filters. They will return an intersection of their results."
485
  msgstr ""
486
 
487
- #: admin/views/form_select.php:113
488
  msgid "Search by post type. By default all posts and pages will be affected."
489
  msgstr ""
490
 
491
- #: admin/views/form_select.php:116
492
  msgid "Search posts by category"
493
  msgstr ""
494
 
495
- #: admin/views/form_select.php:119
496
  msgid "Search posts by tag"
497
  msgstr ""
498
 
499
- #: admin/views/form_select.php:133 admin/views/section_overview.php:91
500
  msgid "Are you looking for more options and more filters?"
501
  msgstr ""
502
 
503
- #: admin/views/form_select.php:134
504
  msgid "On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly."
505
  msgstr ""
506
 
507
- #: admin/views/form_select.php:152
508
  msgid "If you encounter a white, blank page, read this"
509
  msgstr ""
510
 
511
- #: admin/views/form_select.php:153
512
  msgid "Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:"
513
  msgstr ""
514
 
515
- #: admin/views/form_select.php:156
516
  msgid "add the time filter,"
517
  msgstr ""
518
 
519
- #: admin/views/form_select.php:157
520
  msgid "set a small time range,"
521
  msgstr ""
522
 
523
- #: admin/views/form_select.php:158
524
  msgid "do the process"
525
  msgstr ""
526
 
527
- #: admin/views/form_select.php:159
528
  msgid "and repeat it with the next time range as often as needed."
529
  msgstr ""
530
 
531
- #: admin/views/form_select.php:161
532
  msgid "This way is not as fast as one single run, but still much faster than setting the images for each post manually."
533
  msgstr ""
534
 
@@ -596,14 +604,6 @@ msgstr ""
596
  msgid "These actions require at least one selected image with the following button."
597
  msgstr ""
598
 
599
- #: admin/views/form_start.php:80
600
- msgid "To select multiple images click on the button and use the CTRL key while clicking on the images."
601
- msgstr ""
602
-
603
- #: admin/views/form_start.php:84
604
- msgid "Choose Images"
605
- msgstr ""
606
-
607
  #: admin/views/form_start.php:101
608
  msgid "Actions without any selected image"
609
  msgstr ""
@@ -616,10 +616,6 @@ msgstr ""
616
  msgid "Do you want to assign the first image of each post?"
617
  msgstr ""
618
 
619
- #: admin/views/form_start.php:120
620
- msgid "Use CTRL for multiple choice"
621
- msgstr ""
622
-
623
  #: admin/views/section_defaults.php:16
624
  msgid "matches"
625
  msgstr ""
@@ -885,12 +881,5 @@ msgstr ""
885
  msgid "No matches found."
886
  msgstr ""
887
 
888
- #~ msgid "Image Columns"
889
- #~ msgstr ""
890
-
891
- #~ msgid ""
892
- #~ "Use of first external image instead of only uploaded to the media library"
893
- #~ msgstr ""
894
-
895
- #~ msgid "Taxonomy"
896
  #~ msgstr ""
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-03-12 22:59+0100\n"
8
+ "PO-Revision-Date: 2017-03-12 22:59+0100\n"
9
  "Language-Team: 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 1.8.12\n"
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"
104
 
105
  #: admin/class-quick-featured-images-settings.php:606
106
  #, php-format
107
+ msgid "The rules as set in &#8220;%s&#8221; work on posts independently of this setting."
108
  msgstr ""
109
 
110
  #: admin/class-quick-featured-images-settings.php:607
123
  msgid "Controls which minimum user role can see the plugin."
124
  msgstr ""
125
 
126
+ #: admin/class-quick-featured-images-tools.php:443
127
  #, php-format
128
  msgid "Wrong image ID %d"
129
  msgstr ""
130
 
131
+ #: admin/class-quick-featured-images-tools.php:544
132
  msgid "Select"
133
  msgstr ""
134
 
135
+ #: admin/class-quick-featured-images-tools.php:545
136
  msgid "Add filter"
137
  msgstr ""
138
 
139
+ #: admin/class-quick-featured-images-tools.php:546
140
  msgid "Refine"
141
  msgstr ""
142
 
143
+ #: admin/class-quick-featured-images-tools.php:547
144
  msgid "Confirm"
145
  msgstr ""
146
 
147
+ #: admin/class-quick-featured-images-tools.php:548
148
  msgid "Perform"
149
  msgstr ""
150
 
151
+ #: admin/class-quick-featured-images-tools.php:552
152
  msgid "Set the selected image as new featured image"
153
  msgstr ""
154
 
155
+ #: admin/class-quick-featured-images-tools.php:553
156
  msgid "Replace featured images by the selected image"
157
  msgstr ""
158
 
159
+ #: admin/class-quick-featured-images-tools.php:554
160
  msgid "Remove the selected image as featured image"
161
  msgstr ""
162
 
163
+ #: admin/class-quick-featured-images-tools.php:557
164
  msgid "Remove any image as featured image"
165
  msgstr ""
166
 
167
+ #: admin/class-quick-featured-images-tools.php:560
168
  msgid "Set multiple images randomly as featured images"
169
  msgstr ""
170
 
171
+ #: admin/class-quick-featured-images-tools.php:564
172
  msgid "Overwrite featured images"
173
  msgstr ""
174
 
175
+ #: admin/class-quick-featured-images-tools.php:565
176
  msgid "Consider only posts without any featured image"
177
  msgstr ""
178
 
179
+ #: admin/class-quick-featured-images-tools.php:569
180
  msgid "Post Type Filter"
181
  msgstr ""
182
 
183
+ #: admin/class-quick-featured-images-tools.php:570
184
  msgid "Category Filter"
185
  msgstr ""
186
 
187
+ #: admin/class-quick-featured-images-tools.php:571
188
  msgid "Tag Filter"
189
  msgstr ""
190
 
191
+ #: admin/class-quick-featured-images-tools.php:600
192
  msgid "Image width in pixels lower than"
193
  msgstr ""
194
 
195
+ #: admin/class-quick-featured-images-tools.php:601
196
  msgid "Image height in pixels lower than"
197
  msgstr ""
198
 
199
+ #: admin/class-quick-featured-images-tools.php:710
200
  #, php-format
201
  msgid "The input field %s is empty."
202
  msgstr ""
203
 
204
+ #: admin/class-quick-featured-images-tools.php:711
205
  msgid "Type in a value into the input field."
206
  msgstr ""
207
 
208
+ #: admin/class-quick-featured-images-tools.php:714
209
  #, php-format
210
  msgid "%s is not defined."
211
  msgstr ""
212
 
213
+ #: admin/class-quick-featured-images-tools.php:715
214
  msgid "Check how to define the value."
215
  msgstr ""
216
 
217
+ #: admin/class-quick-featured-images-tools.php:718
218
  msgid "There is no selected image."
219
  msgstr ""
220
 
221
+ #: admin/class-quick-featured-images-tools.php:719
222
  msgid "Select an image from the media library."
223
  msgstr ""
224
 
225
+ #: admin/class-quick-featured-images-tools.php:722
226
  #: admin/views/section_image.php:51
227
  msgid "You have not selected an action."
228
  msgstr ""
229
 
230
+ #: admin/class-quick-featured-images-tools.php:723
231
  msgid "Start again and select which action you want to apply."
232
  msgstr ""
233
 
234
+ #: admin/class-quick-featured-images-tools.php:726
235
  #, php-format
236
  msgid "The input field %s has an invalid value."
237
  msgstr ""
238
 
239
+ #: admin/class-quick-featured-images-tools.php:727
240
  msgid "Type in valid values in the input field."
241
  msgstr ""
242
 
243
+ #: admin/class-quick-featured-images-tools.php:731
244
  msgid "Type in values stored by WordPress."
245
  msgstr ""
246
 
247
+ #: admin/class-quick-featured-images-tools.php:1846
248
  msgid "Set, replace, remove"
249
  msgstr ""
250
 
251
+ #: admin/class-quick-featured-images-tools.php:1857
252
  msgid "Bulk set, replace and remove featured images for existing posts"
253
  msgstr ""
254
 
255
+ #: admin/class-quick-featured-images-tools.php:1969
256
  msgid "Bulk set as featured image"
257
  msgstr ""
258
 
358
  msgid "You can not undo the operation!"
359
  msgstr ""
360
 
361
+ #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
362
+ #: admin/views/section_results.php:74
363
  msgid "Start again"
364
  msgstr ""
365
 
388
  msgid "File %s is not available."
389
  msgstr ""
390
 
391
+ #: admin/views/form_refine.php:48 admin/views/form_select.php:29
392
  msgid "Preview filtering"
393
  msgstr ""
394
 
396
  msgid "There are no selected filters. Modify your filter selection or just go on by clicking on the next button."
397
  msgstr ""
398
 
399
+ #: admin/views/form_select.php:9 admin/views/form_start.php:4
400
  #: admin/views/section_defaults.php:213
401
  msgid "Notice"
402
  msgstr ""
403
 
404
+ #: admin/views/form_select.php:11
405
  msgid "You did not have selected an image from the list below. To go on select at least one image you want to replace by the selected image."
406
  msgstr ""
407
 
408
+ #: admin/views/form_select.php:17
409
  msgid "Select the featured images you want to replace by the selected image."
410
  msgstr ""
411
 
412
+ #: admin/views/form_select.php:18
413
  msgid "You can select multiple images. Select at least one image."
414
  msgstr ""
415
 
416
+ #: admin/views/form_select.php:19 admin/views/form_start.php:80
417
+ msgid "To select multiple images click on the button and use the CTRL key while clicking on the images."
418
+ msgstr ""
419
+
420
+ #: admin/views/form_select.php:23 admin/views/form_start.php:84
421
+ msgid "Choose Images"
422
+ msgstr ""
423
+
424
+ #: admin/views/form_select.php:31 admin/views/form_start.php:120
425
+ msgid "Use CTRL for multiple choice"
426
  msgstr ""
427
 
428
+ #: admin/views/form_select.php:37
429
  msgid "Refine your selections"
430
  msgstr ""
431
 
432
+ #: admin/views/form_select.php:38 admin/views/form_select.php:48
433
  msgid "You can control the process with the following options."
434
  msgstr ""
435
 
436
+ #: admin/views/form_select.php:45
437
  msgid "Optional: Select options"
438
  msgstr ""
439
 
440
+ #: admin/views/form_select.php:47
441
  msgid "Process Options"
442
  msgstr ""
443
 
444
+ #: admin/views/form_select.php:53
445
  msgid "Overwrite existing featured images with new ones"
446
  msgstr ""
447
 
448
+ #: admin/views/form_select.php:63
449
  msgid "Posts with featured images will be ignored, even if the Overwrite option is checked "
450
  msgstr ""
451
 
452
+ #: admin/views/form_select.php:72
453
  msgid "There are two more options in the premium version for random images:"
454
  msgstr ""
455
 
456
+ #: admin/views/form_select.php:74
457
  msgid "Use each selected image only once"
458
  msgstr ""
459
 
460
+ #: admin/views/form_select.php:75
461
  msgid "Remove excess featured images after all selected images are used"
462
  msgstr ""
463
 
464
+ #: admin/views/form_select.php:77 admin/views/form_select.php:115
465
+ #: admin/views/form_select.php:137 admin/views/form_start.php:113
466
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
467
  #: admin/views/section_overview.php:91
468
  msgid "Get the premium version"
469
  msgstr ""
470
 
471
  # Path to language site
472
+ #: admin/views/form_select.php:77 admin/views/form_select.php:115
473
+ #: admin/views/form_select.php:137 admin/views/form_start.php:113
474
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
475
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
476
  msgid "/"
477
  msgstr ""
478
 
479
+ #: admin/views/form_select.php:86
480
  msgid "Optional: Add a filter"
481
  msgstr ""
482
 
483
+ #: admin/views/form_select.php:88
484
  msgid "Select filters"
485
  msgstr ""
486
 
487
+ #: admin/views/form_select.php:89
488
  msgid "If you want select one of the following filters to narrow down the set of concerned posts and pages."
489
  msgstr ""
490
 
491
+ #: admin/views/form_select.php:90
492
  msgid "You can select multiple filters. They will return an intersection of their results."
493
  msgstr ""
494
 
495
+ #: admin/views/form_select.php:95
496
  msgid "Search by post type. By default all posts and pages will be affected."
497
  msgstr ""
498
 
499
+ #: admin/views/form_select.php:98
500
  msgid "Search posts by category"
501
  msgstr ""
502
 
503
+ #: admin/views/form_select.php:101
504
  msgid "Search posts by tag"
505
  msgstr ""
506
 
507
+ #: admin/views/form_select.php:115 admin/views/section_overview.php:91
508
  msgid "Are you looking for more options and more filters?"
509
  msgstr ""
510
 
511
+ #: admin/views/form_select.php:116
512
  msgid "On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly."
513
  msgstr ""
514
 
515
+ #: admin/views/form_select.php:134
516
  msgid "If you encounter a white, blank page, read this"
517
  msgstr ""
518
 
519
+ #: admin/views/form_select.php:135
520
  msgid "Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:"
521
  msgstr ""
522
 
523
+ #: admin/views/form_select.php:138
524
  msgid "add the time filter,"
525
  msgstr ""
526
 
527
+ #: admin/views/form_select.php:139
528
  msgid "set a small time range,"
529
  msgstr ""
530
 
531
+ #: admin/views/form_select.php:140
532
  msgid "do the process"
533
  msgstr ""
534
 
535
+ #: admin/views/form_select.php:141
536
  msgid "and repeat it with the next time range as often as needed."
537
  msgstr ""
538
 
539
+ #: admin/views/form_select.php:143
540
  msgid "This way is not as fast as one single run, but still much faster than setting the images for each post manually."
541
  msgstr ""
542
 
604
  msgid "These actions require at least one selected image with the following button."
605
  msgstr ""
606
 
 
 
 
 
 
 
 
 
607
  #: admin/views/form_start.php:101
608
  msgid "Actions without any selected image"
609
  msgstr ""
616
  msgid "Do you want to assign the first image of each post?"
617
  msgstr ""
618
 
 
 
 
 
619
  #: admin/views/section_defaults.php:16
620
  msgid "matches"
621
  msgstr ""
881
  msgid "No matches found."
882
  msgstr ""
883
 
884
+ #~ msgid "Use multiple choice"
 
 
 
 
 
 
 
885
  #~ msgstr ""
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: 12.3
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: 12.3.1
14
  * Author: Martin Stehle
15
  * Author URI: http://stehle-internet.de
16
  * Text Domain: quick-featured-images