Quick Featured Images - Version 13.5.1

Version Description

  • Added catalan translation, thanks to Juan of the Ibidem Group
  • Changed order of action links
  • Tested successfully with WordPress 5.5.3
Download this release

Release Info

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

Code changes from version 13.5.0 to 13.5.1

README.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: featured image,featured images,bulk set,automatic,thumbnails
5
  Requires at least: 3.8
6
  Requires PHP: 5.2
7
- Tested up to: 5.5
8
- Stable tag: 13.5.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -15,7 +15,7 @@ Your time-saving Swiss army knife for managing tons of featured images within mi
15
 
16
  Your time-saving Swiss army knife for managing tons of featured images within minutes: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
17
 
18
- The plugin is available in English and German (Deutsch), for the most part in Spanish (Español), Brazilian Portuguese (Português do Brasil), French (Francais), Arabic (العربية) Japanese (日本語) and Greek (Ελληνικά). It does not collect any personal data, so it is ready for EU General Data Protection Regulation (GDPR) compliance.
19
 
20
  = Manage featured images quickly =
21
 
@@ -170,6 +170,7 @@ For the most part the user interface is available in
170
 
171
  * Arabic (العربية), kindly drawn up by [Shadi AlZard](https://wordpress.org/support/profile/salzard)
172
  * Brazilian Portuguese (Português do Brasil)
 
173
  * English
174
  * French (Francais), kindly drawn up by Ivan M. Frakov
175
  * German (Deutsch)
@@ -290,6 +291,11 @@ If you want to contribute a translation of the plugin in your language it would
290
 
291
  == Changelog ==
292
 
 
 
 
 
 
293
  = 13.5.0 =
294
  * Fixed missed binding to dynamically created selection options in 'Default Images'
295
  * Fixed missed higher upgrade of the version number
@@ -529,6 +535,9 @@ Added spanish translation for the main texts of the plugin
529
 
530
  == Upgrade Notice ==
531
 
 
 
 
532
  = 13.5.0 =
533
  Fixed missed binding to dynamically created selection options in 'Default Images'
534
 
4
  Tags: featured image,featured images,bulk set,automatic,thumbnails
5
  Requires at least: 3.8
6
  Requires PHP: 5.2
7
+ Tested up to: 5.5.3
8
+ Stable tag: 13.5.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
15
 
16
  Your time-saving Swiss army knife for managing tons of featured images within minutes: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
17
 
18
+ The plugin is available in English, German (Deutsch) and Catalan (Català), for the most part in Spanish (Español), Brazilian Portuguese (Português do Brasil), French (Francais), Arabic (العربية) Japanese (日本語) and Greek (Ελληνικά). It does not collect any personal data, so it is ready for EU General Data Protection Regulation (GDPR) compliance.
19
 
20
  = Manage featured images quickly =
21
 
170
 
171
  * Arabic (العربية), kindly drawn up by [Shadi AlZard](https://wordpress.org/support/profile/salzard)
172
  * Brazilian Portuguese (Português do Brasil)
173
+ * Catalan (Català), kindly drawn up by [Juan of the Ibidem Group](https://www.ibidemgroup.com/)
174
  * English
175
  * French (Francais), kindly drawn up by Ivan M. Frakov
176
  * German (Deutsch)
291
 
292
  == Changelog ==
293
 
294
+ = 13.5.1 =
295
+ * Added catalan translation, thanks to Juan of the Ibidem Group
296
+ * Changed order of action links
297
+ * Tested successfully with WordPress 5.5.3
298
+
299
  = 13.5.0 =
300
  * Fixed missed binding to dynamically created selection options in 'Default Images'
301
  * Fixed missed higher upgrade of the version number
535
 
536
  == Upgrade Notice ==
537
 
538
+ = 13.5.1 =
539
+ Added catalan translation, changed order of action links, tested with WordPress 5.5.3
540
+
541
  = 13.5.0 =
542
  Fixed missed binding to dynamically created selection options in 'Default Images'
543
 
admin/class-quick-featured-images-admin.php CHANGED
@@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
21
  *
22
  * @var string
23
  */
24
- protected $plugin_version = '13.5.0';
25
 
26
  /**
27
  * Instance of this class.
21
  *
22
  * @var string
23
  */
24
+ protected $plugin_version = '13.5.1';
25
 
26
  /**
27
  * Instance of this class.
admin/class-quick-featured-images-defaults.php CHANGED
@@ -384,10 +384,10 @@ class Quick_Featured_Images_Defaults {
384
  public function add_action_links( $links ) {
385
  $url = sprintf( 'admin.php?page=%s', $this->page_slug );
386
  return array_merge(
387
- $links,
388
  array(
389
  'defaults' => sprintf( '<a href="%s">%s</a>', esc_url( admin_url( $url ) ), esc_html( $this->get_page_headline() ) )
390
- )
 
391
  );
392
 
393
  }
384
  public function add_action_links( $links ) {
385
  $url = sprintf( 'admin.php?page=%s', $this->page_slug );
386
  return array_merge(
 
387
  array(
388
  'defaults' => sprintf( '<a href="%s">%s</a>', esc_url( admin_url( $url ) ), esc_html( $this->get_page_headline() ) )
389
+ ),
390
+ $links
391
  );
392
 
393
  }
admin/class-quick-featured-images-settings.php CHANGED
@@ -305,10 +305,10 @@ class Quick_Featured_Images_Settings {
305
  public function add_action_links( $links ) {
306
  $url = sprintf( 'admin.php?page=%s', $this->page_slug );
307
  return array_merge(
308
- $links,
309
  array(
310
  'settings' => sprintf( '<a href="%s">%s</a>', esc_url( admin_url( $url ) ), esc_html( $this->get_page_headline() ) )
311
- )
 
312
  );
313
 
314
  }
305
  public function add_action_links( $links ) {
306
  $url = sprintf( 'admin.php?page=%s', $this->page_slug );
307
  return array_merge(
 
308
  array(
309
  'settings' => sprintf( '<a href="%s">%s</a>', esc_url( admin_url( $url ) ), esc_html( $this->get_page_headline() ) )
310
+ ),
311
+ $links
312
  );
313
 
314
  }
languages/quick-featured-images-ca.mo ADDED
Binary file
languages/quick-featured-images-ca.po ADDED
@@ -0,0 +1,1113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Traducción a Catalán by Ibidem Group\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
+ "POT-Creation-Date: 2019-11-06 13:32+0100\n"
8
+ "PO-Revision-Date: 2020-11-11 11:51+0100\n"
9
+ "Language-Team: IBIDEM GROUP <https://www.ibidemgroup.com>\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.4.2\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"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Last-Translator: \n"
19
+ "Language: ca_ES\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: admin/class-quick-featured-images-admin.php:215
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
+ "La seva navalla suïssa per a les imatges destacades: establir, reemplaçar i "
28
+ "eliminar en grup o en llistes de publicacions, i establir imatges "
29
+ "predeterminades per a futures publicacions."
30
+
31
+ #: admin/class-quick-featured-images-admin.php:278
32
+ #, php-format
33
+ msgid ""
34
+ "The plugin requires WordPress version %s or higher. Therefore, WordPress did "
35
+ "not activate it. If you want to use this plugin update the Wordpress files "
36
+ "to the latest version."
37
+ msgstr ""
38
+ "El connector requereix una versió de WordPress %s o superior. Per tant, "
39
+ "WordPress no ho va activar. Si voleu utilitzar aquest plugin, heu "
40
+ "d'actualitzar els arxius de Wordpress a l'última versió."
41
+
42
+ #: admin/class-quick-featured-images-admin.php:484
43
+ #, php-format
44
+ msgid "Welcome to %s! You can find the plugin at %s."
45
+ msgstr "Benvinguts a %s! Podeu trobar el plugin a %s."
46
+
47
+ #: admin/class-quick-featured-images-columns.php:263
48
+ msgid "(external image)"
49
+ msgstr "(imatge externa)"
50
+
51
+ #: admin/class-quick-featured-images-columns.php:264
52
+ #, php-format
53
+ msgid "Change &#8220;%s&#8221;"
54
+ msgstr "Canviar &#8220;%s&#8221;"
55
+
56
+ #: admin/class-quick-featured-images-columns.php:265
57
+ #, php-format
58
+ msgid "Remove &#8220;%s&#8221;"
59
+ msgstr "Suprimir &#8220;%s&#8221;"
60
+
61
+ #: admin/class-quick-featured-images-columns.php:266
62
+ #, php-format
63
+ msgid "Set image for &#8220;%s&#8221;"
64
+ msgstr "Estableix la imatge per a &#8220;%s&#8221;"
65
+
66
+ #: admin/class-quick-featured-images-defaults.php:277
67
+ msgid "Preset Featured Images"
68
+ msgstr "Imatges destacades predefinides"
69
+
70
+ #: admin/class-quick-featured-images-defaults.php:288
71
+ msgid "Set default featured images for future posts"
72
+ msgstr "Definir imatges destacades predeterminades per a publicacions futures"
73
+
74
+ #: admin/class-quick-featured-images-settings.php:232
75
+ msgid "Set the visibility of columns of featured images in posts lists"
76
+ msgstr ""
77
+ "Definir la visibilitat de les columnes d'imatges destacades a les llistes de "
78
+ "publicacions"
79
+
80
+ #: admin/class-quick-featured-images-settings.php:382
81
+ msgid "Columns for featured images in posts lists"
82
+ msgstr "Columnes d'imatges destacades a les llistes de publicacions"
83
+
84
+ #: admin/class-quick-featured-images-settings.php:390
85
+ msgid "Show additional column for featured images in lists of"
86
+ msgstr ""
87
+ "Mostra la columna addicional per a les imatges destacades a les llistes de"
88
+
89
+ #: admin/class-quick-featured-images-settings.php:395
90
+ msgid "Posts list with image column"
91
+ msgstr "Llista de publicacions amb columna d'imatge"
92
+
93
+ #: admin/class-quick-featured-images-settings.php:418
94
+ msgid "Visibility of the plugin"
95
+ msgstr "Visibilitat del plugin"
96
+
97
+ #: admin/class-quick-featured-images-settings.php:426
98
+ msgid "Which user role may see the plugin?"
99
+ msgstr "Quin rol d'usuari pot veure el connector?"
100
+
101
+ #: admin/class-quick-featured-images-settings.php:558
102
+ msgid ""
103
+ "Activate the checkboxes at each post type to show the extra columns in the "
104
+ "post lists."
105
+ msgstr ""
106
+ "Activeu les caselles de selecció de cada tipus d'entrada per mostrar les "
107
+ "columnes addicionals a les llistes de correus."
108
+
109
+ #: admin/class-quick-featured-images-settings.php:570
110
+ msgid "Minimum user role to see the plugin in the backend"
111
+ msgstr "Rol mínim de l'usuari per veure el connector al backend"
112
+
113
+ #: admin/class-quick-featured-images-settings.php:606
114
+ msgid "Select the minimum user role a user must have to see the plugin."
115
+ msgstr ""
116
+ "Seleccioneu el rol mínim d'usuari que un usuari ha de tenir per veure el "
117
+ "connector."
118
+
119
+ #: admin/class-quick-featured-images-settings.php:611
120
+ #, php-format
121
+ msgid ""
122
+ "The rules as set in &#8220;%s&#8221; work on posts independently of this "
123
+ "setting."
124
+ msgstr ""
125
+ "Les regles establertes en \"%s\" funcionen en llocs independentment d'aquest "
126
+ "entorn."
127
+
128
+ #: admin/class-quick-featured-images-settings.php:616
129
+ msgid ""
130
+ "This setting controls as well whether a user will see in an image column the "
131
+ "thumbnails with action links or the thumbnails only. To switch image columns "
132
+ "on and off use the section above."
133
+ msgstr ""
134
+ "Aquesta opció de configuració controla també si un usuari veurà en una "
135
+ "columna d'imatge les miniatures amb enllaços d'acció o només les miniatures. "
136
+ "Per activar i desactivar les columnes d'imatge, utilitzeu la secció anterior."
137
+
138
+ #: admin/class-quick-featured-images-settings.php:617
139
+ msgid "This page is accessible for administrators only."
140
+ msgstr "Aquesta pàgina només és accessible per als administradors."
141
+
142
+ #: admin/class-quick-featured-images-settings.php:627
143
+ msgid ""
144
+ "The additional columns give you a quick overview about all used featured "
145
+ "images for every post. The Featured Image column is sortable."
146
+ msgstr ""
147
+ "Les columnes addicionals us donen una visió general ràpida sobre totes les "
148
+ "imatges destacades utilitzades per a cada publicació. La columna Imatge "
149
+ "destacada es pot ordenar."
150
+
151
+ #: admin/class-quick-featured-images-settings.php:636
152
+ msgid "Controls which minimum user role can see the plugin."
153
+ msgstr "Controla quina funció mínima d'usuari pot veure el connector."
154
+
155
+ #: admin/class-quick-featured-images-tools.php:473
156
+ #, php-format
157
+ msgid "Wrong image ID %d"
158
+ msgstr "ID d'imatge incorrecte %d"
159
+
160
+ #: admin/class-quick-featured-images-tools.php:575
161
+ msgid "Select"
162
+ msgstr "Seleccionar"
163
+
164
+ #: admin/class-quick-featured-images-tools.php:576
165
+ msgid "Add filter"
166
+ msgstr "Afegir filtre"
167
+
168
+ #: admin/class-quick-featured-images-tools.php:577
169
+ msgid "Refine"
170
+ msgstr "Refinar"
171
+
172
+ #: admin/class-quick-featured-images-tools.php:578
173
+ msgid "Confirm"
174
+ msgstr "Confirmar"
175
+
176
+ #: admin/class-quick-featured-images-tools.php:579
177
+ msgid "Perform"
178
+ msgstr "Realitzar"
179
+
180
+ #: admin/class-quick-featured-images-tools.php:583
181
+ msgid "Set the selected image as new featured image"
182
+ msgstr "Estableix la imatge seleccionada com a nova imatge destacada"
183
+
184
+ #: admin/class-quick-featured-images-tools.php:584
185
+ msgid "Replace featured images by the selected image"
186
+ msgstr "Substitueix les imatges destacades per la imatge seleccionada"
187
+
188
+ #: admin/class-quick-featured-images-tools.php:585
189
+ msgid "Remove the selected image as featured image"
190
+ msgstr "Eliminar la imatge seleccionada com a imatge destacada"
191
+
192
+ #: admin/class-quick-featured-images-tools.php:588
193
+ msgid "Remove any image as featured image"
194
+ msgstr "Eliminar qualsevol imatge com a imatge destacada"
195
+
196
+ #: admin/class-quick-featured-images-tools.php:589
197
+ msgid "Remove all featured images without existing image files"
198
+ msgstr "Eliminar totes les imatges destacades sense fitxers d'imatge existents"
199
+
200
+ #: admin/class-quick-featured-images-tools.php:592
201
+ msgid "Set multiple images randomly as featured images"
202
+ msgstr "Establir diverses imatges aleatòriament com a imatges destacades"
203
+
204
+ #: admin/class-quick-featured-images-tools.php:596
205
+ msgid "Overwrite featured images"
206
+ msgstr "Sobreescriure les imatges destacades"
207
+
208
+ #: admin/class-quick-featured-images-tools.php:597
209
+ msgid "Consider only posts without any featured image"
210
+ msgstr "Només entrades sense cap imatge destacada"
211
+
212
+ #: admin/class-quick-featured-images-tools.php:601
213
+ msgid "Post Type Filter"
214
+ msgstr "Filtre de tipus de publicació"
215
+
216
+ #: admin/class-quick-featured-images-tools.php:602
217
+ msgid "Category Filter"
218
+ msgstr "Filtre de categoria"
219
+
220
+ #: admin/class-quick-featured-images-tools.php:603
221
+ msgid "Tag Filter"
222
+ msgstr "Filtre d'etiquetes"
223
+
224
+ #: admin/class-quick-featured-images-tools.php:632
225
+ msgid "Image width in pixels lower than"
226
+ msgstr "Amplada de la imatge en píxels inferior a"
227
+
228
+ #: admin/class-quick-featured-images-tools.php:633
229
+ msgid "Image height in pixels lower than"
230
+ msgstr "Alçada de la imatge en píxels inferiors a"
231
+
232
+ #: admin/class-quick-featured-images-tools.php:742
233
+ #, php-format
234
+ msgid "The input field %s is empty."
235
+ msgstr "El camp d'%s és buit."
236
+
237
+ #: admin/class-quick-featured-images-tools.php:743
238
+ msgid "Type in a value into the input field."
239
+ msgstr "Escriviu un valor al camp d'entrada."
240
+
241
+ #: admin/class-quick-featured-images-tools.php:746
242
+ #, php-format
243
+ msgid "%s is not defined."
244
+ msgstr "%s no està definida."
245
+
246
+ #: admin/class-quick-featured-images-tools.php:747
247
+ msgid "Check how to define the value."
248
+ msgstr "Comproveu com definir el valor."
249
+
250
+ #: admin/class-quick-featured-images-tools.php:750
251
+ msgid "There is no selected image."
252
+ msgstr "No hi ha cap imatge seleccionada."
253
+
254
+ #: admin/class-quick-featured-images-tools.php:751
255
+ msgid "Select an image from the media library."
256
+ msgstr "Seleccionar una imatge de la biblioteca multimèdia."
257
+
258
+ #: admin/class-quick-featured-images-tools.php:754
259
+ #: admin/views/section_image.php:51
260
+ msgid "You have not selected an action."
261
+ msgstr "No heu seleccionat cap acció."
262
+
263
+ #: admin/class-quick-featured-images-tools.php:755
264
+ msgid "Start again and select which action you want to apply."
265
+ msgstr "Tornar a començar i selecciona quina acció vols aplicar."
266
+
267
+ #: admin/class-quick-featured-images-tools.php:758
268
+ #, php-format
269
+ msgid "The input field %s has an invalid value."
270
+ msgstr "El camp d'%s té un valor no vàlid."
271
+
272
+ #: admin/class-quick-featured-images-tools.php:759
273
+ msgid "Type in valid values in the input field."
274
+ msgstr "Escrivu valors vàlids al camp d'entrada."
275
+
276
+ #: admin/class-quick-featured-images-tools.php:763
277
+ msgid "Type in values stored by WordPress."
278
+ msgstr "Escriviu els valors emmagatzemats per WordPress."
279
+
280
+ #: admin/class-quick-featured-images-tools.php:1932
281
+ msgid "Set, replace, remove"
282
+ msgstr "Definir, reemplaçar, suprimir"
283
+
284
+ #: admin/class-quick-featured-images-tools.php:1943
285
+ msgid "Bulk set, replace and remove featured images for existing posts"
286
+ msgstr ""
287
+ "Conjunt massiu, substituir i eliminar imatges destacades per als missatges "
288
+ "existents"
289
+
290
+ #: admin/class-quick-featured-images-tools.php:2052
291
+ msgid "Bulk set as featured image"
292
+ msgstr "Conjunt massiu com a imatge destacada"
293
+
294
+ #: admin/views/filter_category.php:3
295
+ msgid "Select a category"
296
+ msgstr "Seleccionar categoria"
297
+
298
+ #: admin/views/filter_post_types.php:2
299
+ msgid "Select post types"
300
+ msgstr "Seleccioneu els tipus d'entrada"
301
+
302
+ #: admin/views/filter_tag.php:7
303
+ msgid "Select a tag"
304
+ msgstr "Seleccioneu una etiqueta"
305
+
306
+ #: admin/views/filter_tag.php:20
307
+ msgid "There are no tags in use."
308
+ msgstr "No hi ha etiquetes en ús."
309
+
310
+ #: admin/views/form_back_to_selection.php:2
311
+ msgid "Select filters and options again"
312
+ msgstr "Torna a seleccionar filtres i opcions"
313
+
314
+ #: admin/views/form_back_to_selection.php:3
315
+ msgid ""
316
+ "If you want to change your former selection just go back by clicking on this "
317
+ "button."
318
+ msgstr ""
319
+ "Si voleu canviar la vostra antiga selecció, torneu a fer clic en aquest botó."
320
+
321
+ #: admin/views/form_back_to_selection.php:42
322
+ msgid "Modify selection"
323
+ msgstr "Modifica la selecció"
324
+
325
+ #: admin/views/form_confirm.php:1
326
+ msgid "Preview of your selection"
327
+ msgstr "Visualització prèvia de la selecció"
328
+
329
+ #: admin/views/form_confirm.php:2
330
+ #, php-format
331
+ msgid "%d matches found"
332
+ msgstr "%d coincidencies trobades"
333
+
334
+ #: admin/views/form_confirm.php:12
335
+ msgid ""
336
+ "Should the entries of featured images without image files be removed from "
337
+ "the database?"
338
+ msgstr ""
339
+ "S'han d'eliminar les entrades d'imatges destacades sense fitxers d'imatge de "
340
+ "la base de dades?"
341
+
342
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
343
+ msgid "Details"
344
+ msgstr "Detalls"
345
+
346
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
347
+ #: admin/views/section_results.php:18
348
+ msgid "No."
349
+ msgstr "No."
350
+
351
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
352
+ msgid "Current Featured Image"
353
+ msgstr "Imatge destacada actual"
354
+
355
+ #: admin/views/form_confirm.php:18
356
+ msgid "Future Featured Image"
357
+ msgstr "Imatge destacada futura"
358
+
359
+ #: admin/views/form_confirm.php:19
360
+ msgid "written on"
361
+ msgstr "escrit en"
362
+
363
+ #: admin/views/form_confirm.php:20
364
+ msgid "by"
365
+ msgstr "per"
366
+
367
+ #: admin/views/form_confirm.php:35
368
+ msgid "Should the selected image be set as featured image to all listed posts?"
369
+ msgstr ""
370
+ "S'ha d'establir la imatge seleccionada com a imatge destacada a tots els "
371
+ "missatges llistats?"
372
+
373
+ #: admin/views/form_confirm.php:38
374
+ msgid ""
375
+ "Should the selected images be set randomly as featured images to all listed "
376
+ "posts?"
377
+ msgstr ""
378
+ "Les imatges seleccionades s'han d'establir aleatòriament com a imatges "
379
+ "destacades a tots els missatges llistats?"
380
+
381
+ #: admin/views/form_confirm.php:41
382
+ msgid ""
383
+ "Should the current set featured image be replaced by the selected image at "
384
+ "all listed posts?"
385
+ msgstr ""
386
+ "La imatge destacada del conjunt actual ha de ser substituïda per la imatge "
387
+ "seleccionada en tots els missatges llistats?"
388
+
389
+ #: admin/views/form_confirm.php:44
390
+ msgid "Should the selected image be removed from all listed posts?"
391
+ msgstr ""
392
+ "S'ha de suprimir la imatge seleccionada de tots els missatges de la llista?"
393
+
394
+ #: admin/views/form_confirm.php:47
395
+ msgid "Should the future images be set as featured images at all listed posts?"
396
+ msgstr ""
397
+ "S'han d'establir les imatges futures com a imatges destacades en tots els "
398
+ "missatges llistats?"
399
+
400
+ #: admin/views/form_confirm.php:50
401
+ msgid "Should the added featured images be removed from all listed posts?"
402
+ msgstr ""
403
+ "S'han de suprimir les imatges destacades afegides de tots els missatges "
404
+ "llistats?"
405
+
406
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
407
+ msgid ""
408
+ "The list is in alphabetical order according to post title. You can edit a "
409
+ "post in a new window by clicking on its link in the list."
410
+ msgstr ""
411
+ "La llista està en ordre alfabètic segons el títol posterior. Podeu editar "
412
+ "una publicació en una finestra nova fent clic al seu enllaç de la llista."
413
+
414
+ #: admin/views/form_confirm.php:120
415
+ msgid "Confirm the change"
416
+ msgstr "Confirma el canvi"
417
+
418
+ #: admin/views/form_confirm.php:121
419
+ msgid "You can not undo the operation!"
420
+ msgstr "No es pot desfer l'operació!"
421
+
422
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
423
+ #: admin/views/section_results.php:86
424
+ msgid "Start again"
425
+ msgstr "Torna a començar"
426
+
427
+ #: admin/views/form_confirm.php:182
428
+ msgid "or refine your selection with the following form fields."
429
+ msgstr "o refinar la vostra selecció amb els camps de formulari següents."
430
+
431
+ #: admin/views/form_refine.php:1
432
+ msgid "Refine your selection"
433
+ msgstr "Refina la teva selecció"
434
+
435
+ #: admin/views/form_refine.php:8
436
+ msgid "Refine filters"
437
+ msgstr "Refinar filtres"
438
+
439
+ #: admin/views/form_refine.php:9
440
+ msgid ""
441
+ "Now you can find posts and pages by matching parameters. Refine them here."
442
+ msgstr ""
443
+ "Ara podeu trobar missatges i pàgines fent coincidir paràmetres. "
444
+ "Perfecciona'ls aquí."
445
+
446
+ #: admin/views/form_refine.php:10
447
+ msgid "Whatever you do: You can confirm your choice on the next page."
448
+ msgstr ""
449
+ "Facis el que facis: pots confirmar la teva elecció a la pàgina següent."
450
+
451
+ #: admin/views/form_refine.php:18
452
+ #, php-format
453
+ msgid "File %s is not available."
454
+ msgstr "El %s fitxer no està disponible."
455
+
456
+ #: admin/views/form_refine.php:48 admin/views/form_select.php:29
457
+ msgid "Preview filtering"
458
+ msgstr "Visualització prèvia de filtratge"
459
+
460
+ #: admin/views/form_refine.php:54
461
+ msgid ""
462
+ "There are no selected filters. Modify your filter selection or just go on by "
463
+ "clicking on the next button."
464
+ msgstr ""
465
+ "No hi ha filtres seleccionats. Modifiqueu la selecció de filtres o "
466
+ "simplement se'n va fent clic al botó següent."
467
+
468
+ #: admin/views/form_select.php:9 admin/views/form_start.php:4
469
+ #: admin/views/section_defaults.php:213
470
+ msgid "Notice"
471
+ msgstr "Anotació"
472
+
473
+ #: admin/views/form_select.php:11
474
+ msgid ""
475
+ "You did not have selected an image from the list below. To go on select at "
476
+ "least one image you want to replace by the selected image."
477
+ msgstr ""
478
+ "No heu seleccionat una imatge de la llista següent. Per continuar "
479
+ "seleccionant com a mínim una imatge que voleu reemplaçar per la imatge "
480
+ "seleccionada."
481
+
482
+ #: admin/views/form_select.php:17
483
+ msgid "Select the featured images you want to replace by the selected image."
484
+ msgstr ""
485
+ "Seleccioneu les imatges destacades que voleu reemplaçar per la imatge "
486
+ "seleccionada."
487
+
488
+ #: admin/views/form_select.php:18
489
+ msgid "You can select multiple images. Select at least one image."
490
+ msgstr ""
491
+ "Podeu seleccionar diverses imatges. Seleccioneu com a mínim una imatge."
492
+
493
+ #: admin/views/form_select.php:19 admin/views/form_start.php:80
494
+ msgid ""
495
+ "To select multiple images click on the button and use the CTRL key while "
496
+ "clicking on the images."
497
+ msgstr ""
498
+ "Per seleccionar diverses imatges feu clic al botó i utilitzeu la tecla CTRL "
499
+ "mentre feu clic a les imatges."
500
+
501
+ #: admin/views/form_select.php:23 admin/views/form_start.php:84
502
+ msgid "Choose Images"
503
+ msgstr "Tria imatges"
504
+
505
+ #: admin/views/form_select.php:31 admin/views/form_start.php:121
506
+ msgid "Use CTRL for multiple choice"
507
+ msgstr "Usa CTRL per a una opció múltiple"
508
+
509
+ #: admin/views/form_select.php:37
510
+ msgid "Refine your selections"
511
+ msgstr "Refina les teves seleccions"
512
+
513
+ #: admin/views/form_select.php:38 admin/views/form_select.php:48
514
+ msgid "You can control the process with the following options."
515
+ msgstr "Podeu controlar el procés amb les opcions següents."
516
+
517
+ #: admin/views/form_select.php:45
518
+ msgid "Optional: Select options"
519
+ msgstr "Opcional: seleccioneu les opcions"
520
+
521
+ #: admin/views/form_select.php:47
522
+ msgid "Process Options"
523
+ msgstr "Opcions de procés"
524
+
525
+ #: admin/views/form_select.php:53
526
+ msgid "Overwrite existing featured images with new ones"
527
+ msgstr "Sobreescriu les imatges destacades existents amb les noves"
528
+
529
+ #: admin/views/form_select.php:63
530
+ msgid ""
531
+ "Posts with featured images will be ignored, even if the Overwrite option is "
532
+ "checked"
533
+ msgstr ""
534
+ "S' ignoraran els missatges amb imatges destacades, fins i tot si l' opció "
535
+ "Sobreescriu està marcada"
536
+
537
+ #: admin/views/form_select.php:72
538
+ msgid "There are two more options in the Pro version for random images:"
539
+ msgstr "Hi ha dues opcions més a la versió Pro per a imatges aleatòries:"
540
+
541
+ #: admin/views/form_select.php:74
542
+ msgid "Use each selected image only once"
543
+ msgstr "Usa cada imatge seleccionada només una vegada"
544
+
545
+ #: admin/views/form_select.php:75
546
+ msgid "Remove excess featured images after all selected images are used"
547
+ msgstr ""
548
+ "Elimina l'excés d'imatges destacades després d'utilitzar totes les imatges "
549
+ "seleccionades"
550
+
551
+ #: admin/views/form_select.php:77 admin/views/form_select.php:115
552
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
553
+ #: admin/views/form_start.php:114 admin/views/section_defaults.php:220
554
+ #: admin/views/section_footer.php:58 admin/views/section_overview.php:91
555
+ msgid "Get the Pro version"
556
+ msgstr "Obtenir la versió Pro"
557
+
558
+ #: admin/views/form_select.php:77 admin/views/form_select.php:115
559
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
560
+ #: admin/views/form_start.php:114 admin/views/section_defaults.php:220
561
+ #: admin/views/section_footer.php:58 admin/views/section_overview.php:90
562
+ #: admin/views/section_overview.php:91
563
+ msgid "/"
564
+ msgstr "/"
565
+
566
+ #: admin/views/form_select.php:86
567
+ msgid "Optional: Add a filter"
568
+ msgstr "Opcional: afegeix un filtre"
569
+
570
+ #: admin/views/form_select.php:88
571
+ msgid "Select filters"
572
+ msgstr "Seleccioneu filtres"
573
+
574
+ #: admin/views/form_select.php:89
575
+ msgid ""
576
+ "If you want select one of the following filters to narrow down the set of "
577
+ "concerned posts and pages."
578
+ msgstr ""
579
+ "Si voleu seleccionar un dels filtres següents per reduir el conjunt de "
580
+ "publicacions i pàgines corresponents."
581
+
582
+ #: admin/views/form_select.php:90
583
+ msgid ""
584
+ "You can select multiple filters. They will return an intersection of their "
585
+ "results."
586
+ msgstr ""
587
+ "Podeu seleccionar diversos filtres. Tornaran una intersecció dels seus "
588
+ "resultats."
589
+
590
+ #: admin/views/form_select.php:95
591
+ msgid "Search by post type. By default all posts and pages will be affected."
592
+ msgstr ""
593
+ "Cerca per tipus de correu. Per defecte, tots els missatges i pàgines es "
594
+ "veuran afectats."
595
+
596
+ #: admin/views/form_select.php:98
597
+ msgid "Search posts by category"
598
+ msgstr "Cercar missatges per categoria"
599
+
600
+ #: admin/views/form_select.php:101
601
+ msgid "Search posts by tag"
602
+ msgstr "Cercar publicacions per etiqueta"
603
+
604
+ #: admin/views/form_select.php:115 admin/views/section_overview.php:91
605
+ msgid "Are you looking for more options and more filters?"
606
+ msgstr "Esteu cercant més opcions i més filtres?"
607
+
608
+ #: admin/views/form_select.php:116
609
+ msgid "If you encounter a white, blank page, read this"
610
+ msgstr "Si trobeu una pàgina en blanc i en blanc, llegiu aquesta"
611
+
612
+ #: admin/views/form_select.php:117
613
+ msgid ""
614
+ "Facing a white blank page while trying to treat thousands of posts is the "
615
+ "effect of limited memory capacities on the website server. Instead of "
616
+ "treating a huge amount of posts in one single go try to treat small amounts "
617
+ "of posts multiple times successively. To achieve that do:"
618
+ msgstr ""
619
+ "Davant d'una pàgina en blanc mentre intenta tractar milers de correus és "
620
+ "l'efecte de capacitats de memòria limitades al servidor de lloc web. En lloc "
621
+ "de tractar una gran quantitat de llocs en un sol anar tractar petites "
622
+ "quantitats de llocs diverses vegades successivament. Per aconseguir-ho, feu:"
623
+
624
+ #: admin/views/form_select.php:120
625
+ msgid "add the time filter,"
626
+ msgstr "afegeix el filtre de temps,"
627
+
628
+ #: admin/views/form_select.php:121
629
+ msgid "set a small time range,"
630
+ msgstr "establir un petit interval de temps,"
631
+
632
+ #: admin/views/form_select.php:122
633
+ msgid "do the process"
634
+ msgstr "fer el procés"
635
+
636
+ #: admin/views/form_select.php:123
637
+ msgid "and repeat it with the next time range as often as needed."
638
+ msgstr ""
639
+ "i repetiu-lo amb el següent interval de temps tantes vegades com sigui "
640
+ "necessari."
641
+
642
+ #: admin/views/form_select.php:125
643
+ msgid ""
644
+ "This way is not as fast as one single run, but still much faster than "
645
+ "setting the images for each post manually."
646
+ msgstr ""
647
+ "D'aquesta manera no és tan ràpid com una sola execució, però encara molt més "
648
+ "ràpid que l'establiment de les imatges per a cada lloc manualment."
649
+
650
+ #: admin/views/form_select.php:130
651
+ msgid ""
652
+ "On the next page you can refine the filters. If you did not select any "
653
+ "filter you will go to the preview list directly."
654
+ msgstr ""
655
+ "A la pàgina següent podeu definir millor els filtres. Si no heu seleccionat "
656
+ "cap filtre, aneu directament a la llista de previsualització."
657
+
658
+ #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
659
+ msgid ""
660
+ "The current theme does not support featured images. Anyway you can use this "
661
+ "plugin. The effects are stored and will be visible in a theme which supports "
662
+ "featured images."
663
+ msgstr ""
664
+ "El tema actual no admet imatges destacades. De tota manera pot utilitzar "
665
+ "aquest plugin. Els efectes s'emmagatzemen i seran visibles en un tema que "
666
+ "suporta imatges destacades."
667
+
668
+ #: admin/views/form_start.php:12
669
+ msgid "What do you want to do?"
670
+ msgstr "Què vols fer?"
671
+
672
+ #: admin/views/form_start.php:14
673
+ msgid ""
674
+ "Here you can add, replace and delete featured images to your posts. Select "
675
+ "one of the following actions and, if necessary, one or more images."
676
+ msgstr ""
677
+ "Aquí pot afegir, reemplaçar i suprimir imatges presentades als seus correus. "
678
+ "Seleccioneu una de les accions següents i, si cal, una o més imatges."
679
+
680
+ #: admin/views/form_start.php:15
681
+ msgid "Whatever you select: You can refine your choice on the next page."
682
+ msgstr ""
683
+ "El que seleccioneu: podeu definir millor la vostra elecció a la pàgina "
684
+ "següent."
685
+
686
+ #: admin/views/form_start.php:17
687
+ msgid "Important advice"
688
+ msgstr "Consells importants"
689
+
690
+ #: admin/views/form_start.php:18
691
+ msgid ""
692
+ "There is no undo function! It is strongly recommended that you make a backup "
693
+ "of the WordPress database before you perform mass changes."
694
+ msgstr ""
695
+ "No hi ha cap funció desfer! És molt recomanable fer una còpia de seguretat "
696
+ "de la base de dades de WordPress abans de realitzar canvis massius."
697
+
698
+ #: admin/views/form_start.php:20
699
+ msgid "Select action"
700
+ msgstr "Seleccioneu l'acció"
701
+
702
+ #: admin/views/form_start.php:21
703
+ msgid "Actions with a single image"
704
+ msgstr "Accions amb una sola imatge"
705
+
706
+ #: admin/views/form_start.php:22
707
+ msgid "These actions require to select an image with the following button."
708
+ msgstr ""
709
+ "Aquestes accions requereixen seleccionar una imatge amb el botó següent."
710
+
711
+ #: admin/views/form_start.php:35
712
+ msgid ""
713
+ "Select the image you want to add to, replace or delete from posts and pages "
714
+ "by clicking on the following button."
715
+ msgstr ""
716
+ "Seleccioneu la imatge que voleu afegir, substituïr o suprimir de les "
717
+ "publicacions i les pàgines, fent clic al botó següent."
718
+
719
+ #: admin/views/form_start.php:57
720
+ msgid "Choose Image"
721
+ msgstr "Selecció d'imatge"
722
+
723
+ #: admin/views/form_start.php:61
724
+ msgid "If the button does not work, read this:"
725
+ msgstr "Si el botó no funciona, llegiu això:"
726
+
727
+ #: admin/views/form_start.php:62
728
+ msgid ""
729
+ "Some users reported that this button would not work in some WordPress "
730
+ "installations. If this should be the case you can take another way:"
731
+ msgstr ""
732
+ "Alguns usuaris van informar que aquest botó no funcionaria en algunes "
733
+ "instal·lacions de WordPress. Si aquest ha de ser el cas pot prendre una "
734
+ "altra manera:"
735
+
736
+ #: admin/views/form_start.php:63
737
+ msgid ""
738
+ "1. Go to the media library. 2. Move the mouse over the desired image. "
739
+ "Further links are appearing, among them the link &quot;Bulk set as featured "
740
+ "image&quot;. 3. After a click on it you can move on in this plugin."
741
+ msgstr ""
742
+ "1. Aneu a la biblioteca multimèdia. 2. Moveu el ratolí sobre la imatge "
743
+ "desitjada. Apareixen més enllaços, entre ells l'enllaç &amp; quot;Conjunt "
744
+ "massiu com a imatge destacada&amp;quot;. 3. Després d'un clic en ell es pot "
745
+ "seguir endavant en aquest plugin."
746
+
747
+ #: admin/views/form_start.php:67
748
+ msgid "Actions with multiple images"
749
+ msgstr "Accions amb diverses imatges"
750
+
751
+ #: admin/views/form_start.php:68
752
+ msgid ""
753
+ "These actions require at least one selected image with the following button."
754
+ msgstr ""
755
+ "Aquestes accions requereixen almenys una imatge seleccionada amb el botó "
756
+ "següent."
757
+
758
+ #: admin/views/form_start.php:101
759
+ msgid "Actions without any selected image"
760
+ msgstr "Accions sense cap imatge seleccionada"
761
+
762
+ #: admin/views/form_start.php:102
763
+ msgid "These actions do not require a selected image."
764
+ msgstr "Aquestes accions no requereixen una imatge seleccionada."
765
+
766
+ #: admin/views/form_start.php:113
767
+ msgid "Do you want to assign the first image of each post?"
768
+ msgstr "Voleu assignar la primera imatge de cada publicació?"
769
+
770
+ #: admin/views/form_start.php:114 admin/views/section_defaults.php:220
771
+ msgid "Do you want to use external featured images, e.g. from a CDN?"
772
+ msgstr ""
773
+ "Voleu utilitzar imatges destacades externes, per exemple, des d'un CDN?"
774
+
775
+ #: admin/views/section_defaults.php:16
776
+ msgid "matches"
777
+ msgstr "coincidències"
778
+
779
+ #: admin/views/section_defaults.php:59
780
+ msgid "Post Type"
781
+ msgstr "Tipus d'entrada"
782
+
783
+ #: admin/views/section_defaults.php:204
784
+ msgid "Default featured images for future posts"
785
+ msgstr "Imatges destacades per defecte per a futures publicacions"
786
+
787
+ #: admin/views/section_defaults.php:206
788
+ msgid ""
789
+ "Define the rules to use images as default featured images automatically "
790
+ "every time a post is saved."
791
+ msgstr ""
792
+ "Definiu les regles per utilitzar les imatges com a imatges destacades per "
793
+ "defecte automàticament cada vegada que es desa una publicació."
794
+
795
+ #: admin/views/section_defaults.php:207
796
+ msgid ""
797
+ "To use a rule choose the image and set both the taxonomy and the value. A "
798
+ "rule which is defined only partially will be ignored."
799
+ msgstr ""
800
+ "Per utilitzar una regla, trieu la imatge i definiu tant la taxonomia com el "
801
+ "valor. S'ignorarà parcialment una norma que només es defineix parcialment."
802
+
803
+ #: admin/views/section_defaults.php:236
804
+ msgid "An image overwrites an existing image"
805
+ msgstr "Una imatge sobreescriu una imatge existent"
806
+
807
+ #: admin/views/section_defaults.php:240
808
+ msgid ""
809
+ "Activate to automatically overwrite an existing featured image while saving "
810
+ "a post"
811
+ msgstr ""
812
+ "Activar per sobreescriure automàticament una imatge destacada existent en "
813
+ "desar una publicació"
814
+
815
+ #: admin/views/section_defaults.php:242
816
+ msgid ""
817
+ "If activated the rule is used automatically while saving a post to overwrite "
818
+ "an existing featured image with the new one based on the following rules. Do "
819
+ "not use this if you want to keep manually set featured images."
820
+ msgstr ""
821
+ "Si s'activa la regla s'utilitza automàticament mentre es desa una publicació "
822
+ "per sobreescriure una imatge destacada existent amb la nova en funció de les "
823
+ "regles següents. No utilitzeu això si voleu conservar manualment les imatges "
824
+ "destacades."
825
+
826
+ #: admin/views/section_defaults.php:249
827
+ msgid "Text with images in WordPress editor"
828
+ msgstr "Text amb imatges a l'editor de WordPress"
829
+
830
+ #: admin/views/section_defaults.php:253
831
+ msgid ""
832
+ "Activate to automatically use the first content image if available in the "
833
+ "media library as featured image while saving a post"
834
+ msgstr ""
835
+ "Activa per utilitzar automàticament la primera imatge de contingut si està "
836
+ "disponible a la biblioteca multimèdia com a imatge destacada mentre desa una "
837
+ "publicació"
838
+
839
+ #: admin/views/section_defaults.php:255
840
+ msgid ""
841
+ "If activated the rule is used automatically while saving a post to set the "
842
+ "first content image - if available in the media library - as the featured "
843
+ "image of the post. If the post has no content images the next rules will be "
844
+ "applied."
845
+ msgstr ""
846
+ "Si s'activa la regla s'utilitza automàticament mentre es desa una publicació "
847
+ "per definir la primera imatge de contingut - si està disponible a la "
848
+ "biblioteca multimèdia - com la imatge destacada de la publicació. Si la "
849
+ "publicació no té imatges de contingut, s'aplicaran les regles següents."
850
+
851
+ #: admin/views/section_defaults.php:256
852
+ msgid "For which post types should this rule be applied?"
853
+ msgstr "Per a quins tipus de publicació s'ha d'aplicar aquesta regla?"
854
+
855
+ #: admin/views/section_defaults.php:283
856
+ msgid ""
857
+ "Select at least one post type, otherwise all post types will be considered."
858
+ msgstr ""
859
+ "Seleccioneu com a mínim un tipus d'entrada, en cas contrari es consideraran "
860
+ "tots els tipus d'entrada."
861
+
862
+ #: admin/views/section_defaults.php:489
863
+ msgid "Add rule"
864
+ msgstr "Afegir regla"
865
+
866
+ #: admin/views/section_defaults.php:494
867
+ msgid "Are you sure to remove this rule?"
868
+ msgstr "Esteu segur de suprimir aquesta regla?"
869
+
870
+ #: admin/views/section_defaults.php:497
871
+ msgid "How the rules work"
872
+ msgstr "Com funcionen les regles"
873
+
874
+ #: admin/views/section_defaults.php:498
875
+ msgid ""
876
+ "Every time you save a post the post get the featured image if one of the "
877
+ "following rules match a property of the post. You can also set rules for "
878
+ "pages and all other current post types which support featured images."
879
+ msgstr ""
880
+ "Cada vegada que deseu una publicació, la publicació obté la imatge destacada "
881
+ "si una de les regles següents coincideix amb una propietat de la publicació. "
882
+ "També podeu definir regles per a les pàgines i tots els altres tipus "
883
+ "d'entrada actuals que admeten imatges destacades."
884
+
885
+ #: admin/views/section_defaults.php:499
886
+ msgid ""
887
+ "Regardless of the order in the list the rules are applied in the following "
888
+ "order until a rule and a property of the post fit together:"
889
+ msgstr ""
890
+ "Independentment de l'ordre de la llista, les regles s'apliquen en l'ordre "
891
+ "següent fins que una regla i una propietat del lloc encaixin:"
892
+
893
+ #: admin/views/section_defaults.php:501
894
+ msgid "found first content image. If not then..."
895
+ msgstr "s'ha trobat la primera imatge de contingut. Si no llavors..."
896
+
897
+ #: admin/views/section_defaults.php:502
898
+ msgid "matched custom taxonomy. If not then..."
899
+ msgstr "taxaonomia personalitzada aparellada. Si no llavors..."
900
+
901
+ #: admin/views/section_defaults.php:503
902
+ msgid "matched tag. If not then..."
903
+ msgstr "etiqueta aparellada. Si no llavors..."
904
+
905
+ #: admin/views/section_defaults.php:504
906
+ msgid "matched category. If not then..."
907
+ msgstr "categoria aparellada. Si no llavors..."
908
+
909
+ #: admin/views/section_defaults.php:505
910
+ msgid "matched author. If not then..."
911
+ msgstr "l'autor. Si no llavors..."
912
+
913
+ #: admin/views/section_defaults.php:506
914
+ msgid "matched post type. If not then..."
915
+ msgstr "tipus de publicació aparellat. Si no llavors..."
916
+
917
+ #: admin/views/section_defaults.php:507
918
+ msgid "no featured image."
919
+ msgstr "no hi ha cap imatge destacada."
920
+
921
+ #: admin/views/section_defaults.php:509
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."
925
+ msgstr ""
926
+ "Tingueu en compte que si dues o més regles amb la mateixa taxonomia "
927
+ "s'ajusten al lloc és imprevisible quina imatge es convertirà en la imatge "
928
+ "destacada."
929
+
930
+ #: admin/views/section_defaults.php:510
931
+ msgid "Additional rules in the Pro version"
932
+ msgstr "Regles addicionals en la versió Pro"
933
+
934
+ #: admin/views/section_defaults.php:512
935
+ msgid "Multiple images to set them randomly as featured image"
936
+ msgstr "Diverses imatges per definir-les aleatòriament com a imatge destacada"
937
+
938
+ #: admin/views/section_defaults.php:513
939
+ msgid "Random featured images at each page load"
940
+ msgstr "Imatges destacades aleatòries a cada càrrega de pàgina"
941
+
942
+ #: admin/views/section_defaults.php:514
943
+ msgid ""
944
+ "The first content image can be also an image from an external server to set "
945
+ "it as automated featured image"
946
+ msgstr ""
947
+ "La primera imatge de contingut també pot ser una imatge d'un servidor extern "
948
+ "per definir-la com a imatge destacada automàtica"
949
+
950
+ #: admin/views/section_defaults.php:515
951
+ msgid ""
952
+ "Remove the first content image automatically after the featured image was "
953
+ "set successfully"
954
+ msgstr ""
955
+ "Elimineu la primera imatge de contingut automàticament després que la imatge "
956
+ "destacada s'ha definit correctament"
957
+
958
+ #: admin/views/section_defaults.php:516
959
+ msgid "Match with a search string in post title"
960
+ msgstr "Coincideix amb una cadena de cerca al títol de l'entrada"
961
+
962
+ #: admin/views/section_defaults.php:517
963
+ msgid "Match with a selected post format"
964
+ msgstr "Coincideix amb un format de publicació seleccionat"
965
+
966
+ #: admin/views/section_defaults.php:518
967
+ msgid "User defined order of rules"
968
+ msgstr "Ordre definit per l'usuari de les normes"
969
+
970
+ #: admin/views/section_defaults.php:519
971
+ msgid "Import your rules from this plugin into the Pro plugin"
972
+ msgstr "Importa les teves regles des d' aquest connector al connector Pro"
973
+
974
+ #: admin/views/section_errormsg.php:1
975
+ msgid "Error"
976
+ msgstr "Error"
977
+
978
+ #: admin/views/section_errormsg.php:3
979
+ msgid "Reason"
980
+ msgstr "Raó"
981
+
982
+ #: admin/views/section_errormsg.php:5
983
+ msgid "Solution"
984
+ msgstr "Solució"
985
+
986
+ #: admin/views/section_footer.php:52
987
+ msgid "Credits and informations"
988
+ msgstr "Crèdits i informacions"
989
+
990
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
991
+ msgid "Do you like the plugin?"
992
+ msgstr "T'agrada el connector?"
993
+
994
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
995
+ msgid "Please rate it at wordpress.org!"
996
+ msgstr "Si us plau, valori'l a wordpress.org!"
997
+
998
+ #: admin/views/section_footer.php:55
999
+ msgid ""
1000
+ "The plugin is for free. But the plugin author would be delighted to your "
1001
+ "small contribution."
1002
+ msgstr ""
1003
+ "El plugin és de franc. Però l'autor plugin estaria encantat amb la seva "
1004
+ "petita contribució."
1005
+
1006
+ #: admin/views/section_footer.php:55
1007
+ msgid "Donation Button"
1008
+ msgstr "Botó de donació"
1009
+
1010
+ #: admin/views/section_footer.php:55
1011
+ msgid "Donate with PayPal"
1012
+ msgstr "Donar amb PayPal"
1013
+
1014
+ #: admin/views/section_footer.php:56
1015
+ msgid "Do you need support or have an idea for the plugin?"
1016
+ msgstr "Necessites suport o tens una idea per al connector?"
1017
+
1018
+ #: admin/views/section_footer.php:56
1019
+ msgid ""
1020
+ "Post your questions and ideas about Quick Featured Images in the forum at "
1021
+ "wordpress.org!"
1022
+ msgstr ""
1023
+ "Publica les teves preguntes i idees sobre imatges ràpides destacades en el "
1024
+ "fòrum a wordpress.org!"
1025
+
1026
+ #: admin/views/section_footer.php:57
1027
+ msgid ""
1028
+ "Let the thumbnails appear in the widget of the most recent posts with this "
1029
+ "fast plugin"
1030
+ msgstr ""
1031
+ "Deixeu que les miniatures apareguin en el widget dels missatges més recents "
1032
+ "amb aquest connector ràpid"
1033
+
1034
+ #: admin/views/section_footer.php:57
1035
+ #, php-format
1036
+ msgid "Download plugin %s at %s!"
1037
+ msgstr "Descarregar plugin %s a %s!"
1038
+
1039
+ #: admin/views/section_header_progress.php:15
1040
+ msgid "Progress bar"
1041
+ msgstr "Barra de progrés"
1042
+
1043
+ #: admin/views/section_header_progress.php:17
1044
+ msgid "You are here"
1045
+ msgstr "Ets aquí"
1046
+
1047
+ #: admin/views/section_image.php:1
1048
+ msgid "Your selection"
1049
+ msgstr "La teva selecció"
1050
+
1051
+ #: admin/views/section_image.php:9
1052
+ msgid "Your selected thumbnail"
1053
+ msgstr "Miniatura seleccionada"
1054
+
1055
+ #: admin/views/section_image.php:12
1056
+ msgid "Image title"
1057
+ msgstr "Títol de la imatge"
1058
+
1059
+ #: admin/views/section_image.php:14 admin/views/section_image.php:36
1060
+ msgid "If wrong image start again"
1061
+ msgstr "Si l'imatge es incorrecta, torni a començar"
1062
+
1063
+ #: admin/views/section_image.php:23
1064
+ msgid "Your selected thumbnails"
1065
+ msgstr "Miniatures seleccionades"
1066
+
1067
+ #: admin/views/section_image.php:42
1068
+ msgid "Your selected action"
1069
+ msgstr "Acció seleccionada"
1070
+
1071
+ #: admin/views/section_image.php:55
1072
+ msgid "If wrong action start again"
1073
+ msgstr "Si l'acció es incorrecta, torni a començar"
1074
+
1075
+ #: admin/views/section_image.php:68
1076
+ msgid "Your selected options"
1077
+ msgstr "Opcions seleccionades"
1078
+
1079
+ #: admin/views/section_image.php:84
1080
+ msgid "No selected options"
1081
+ msgstr "No hi ha opcions seleccionades"
1082
+
1083
+ #: admin/views/section_image.php:90
1084
+ msgid "Your selected filters"
1085
+ msgstr "Filtres seleccionats"
1086
+
1087
+ #: admin/views/section_image.php:106
1088
+ msgid "No selected filters"
1089
+ msgstr "No hi ha filtres seleccionats"
1090
+
1091
+ #: admin/views/section_overview.php:17
1092
+ msgid "Manage featured images in a quick way"
1093
+ msgstr "Gestionar les imatges destacades d'una manera ràpida"
1094
+
1095
+ #: admin/views/section_overview.php:89
1096
+ msgid "The Pro version"
1097
+ msgstr "La versió Pro"
1098
+
1099
+ #: admin/views/section_results.php:1
1100
+ msgid "Results of the action"
1101
+ msgstr "Resultats de l'acció"
1102
+
1103
+ #: admin/views/section_results.php:19
1104
+ msgid "Changed successfully"
1105
+ msgstr "S'ha canviat correctament"
1106
+
1107
+ #: admin/views/section_results.php:20
1108
+ msgid "Unchanged"
1109
+ msgstr "No s'ha canviat res"
1110
+
1111
+ #: admin/views/section_results.php:82
1112
+ msgid "No matches found."
1113
+ msgstr "No s'ha trobat cap coincidència."
quick-featured-images.php CHANGED
@@ -10,7 +10,9 @@
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.5.0
 
 
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.5.1
14
+ * Requires at least: 3.8
15
+ * Requires PHP: 5.2
16
  * Author: Martin Stehle
17
  * Author URI: http://stehle-internet.de
18
  * Text Domain: quick-featured-images