Enhanced Media Library - Version 2.3.5

Version Description

Release Date - November 29, 2016

Download this release

Release Info

Developer webbistro
Plugin Icon 128x128 Enhanced Media Library
Version 2.3.5
Comparing to
See all releases

Code changes from version 2.3.4 to 2.3.5

core/taxonomies.php CHANGED
@@ -338,7 +338,7 @@ if ( ! function_exists( 'wpuxss_eml_restrict_manage_posts' ) ) {
338
  array(
339
  'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name,
340
  'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->name . ' —',
341
- 'show_option_not_in' => '— ' . __( 'Not in', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name . ' —',
342
  'taxonomy' => $taxonomy->name,
343
  'name' => $taxonomy->name,
344
  'orderby' => 'name',
338
  array(
339
  'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name,
340
  'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->name . ' —',
341
+ 'show_option_not_in' => '— ' . __( 'Not in a', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name . ' —',
342
  'taxonomy' => $taxonomy->name,
343
  'name' => $taxonomy->name,
344
  'orderby' => 'name',
css/eml-admin.css CHANGED
@@ -138,18 +138,16 @@ body.eml-media-css .media-sidebar ul.eml-filter-based {
138
 
139
 
140
 
141
-
142
  /* == Filters == */
143
 
144
  body.eml-media-css .attachments-browser .media-toolbar-secondary select.attachment-filters {
145
  margin-right: 4px;
 
146
  }
147
 
148
 
149
 
150
 
151
-
152
-
153
  /* == ACF compatibility == */
154
 
155
  body.eml-media-css .media-modal.acf-expanded .attachments-browser .media-toolbar {
@@ -159,7 +157,6 @@ body.eml-media-css .media-modal.acf-expanded .attachments-browser .media-toolbar
159
 
160
 
161
 
162
-
163
  /* == MIME types Option Page Styles == */
164
 
165
  .wpuxss-eml-mime-type-list {
@@ -338,6 +335,7 @@ body.rtl .wpuxss-eml-non-media-taxonomy-list .wpuxss-eml-taxonomy-edit label {
338
 
339
 
340
 
 
341
  /* == Buttons Styles == */
342
 
343
  .wpuxss-eml-button-remove {
138
 
139
 
140
 
 
141
  /* == Filters == */
142
 
143
  body.eml-media-css .attachments-browser .media-toolbar-secondary select.attachment-filters {
144
  margin-right: 4px;
145
+ width: auto;
146
  }
147
 
148
 
149
 
150
 
 
 
151
  /* == ACF compatibility == */
152
 
153
  body.eml-media-css .media-modal.acf-expanded .attachments-browser .media-toolbar {
157
 
158
 
159
 
 
160
  /* == MIME types Option Page Styles == */
161
 
162
  .wpuxss-eml-mime-type-list {
335
 
336
 
337
 
338
+
339
  /* == Buttons Styles == */
340
 
341
  .wpuxss-eml-button-remove {
enhanced-media-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
- Version: 2.3.4
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
@@ -27,7 +27,7 @@ global $wp_version,
27
 
28
 
29
 
30
- $wpuxss_eml_version = '2.3.4';
31
 
32
 
33
 
@@ -492,7 +492,7 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
492
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
493
  'filter_by' => __( 'Filter by', 'enhanced-media-library' ),
494
  'in' => __( 'All', 'enhanced-media-library' ),
495
- 'not_in' => __( 'Not in', 'enhanced-media-library' ),
496
  'reset_filters' => __( 'Reset All Filters', 'enhanced-media-library' ),
497
  'current_screen' => isset( $current_screen ) ? $current_screen->id : ''
498
  );
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
+ Version: 2.3.5
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
27
 
28
 
29
 
30
+ $wpuxss_eml_version = '2.3.5';
31
 
32
 
33
 
492
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
493
  'filter_by' => __( 'Filter by', 'enhanced-media-library' ),
494
  'in' => __( 'All', 'enhanced-media-library' ),
495
+ 'not_in' => __( 'Not in a', 'enhanced-media-library' ),
496
  'reset_filters' => __( 'Reset All Filters', 'enhanced-media-library' ),
497
  'current_screen' => isset( $current_screen ) ? $current_screen->id : ''
498
  );
js/eml-admin.js CHANGED
@@ -3,6 +3,12 @@
3
  var w;
4
 
5
 
 
 
 
 
 
 
6
  if ( $(window).width() < 600 )
7
  w = '90%';
8
  else if ( $(window).width() > 1024 )
3
  var w;
4
 
5
 
6
+ if ( 'settings_page_media' == window.adminpage )
7
+ window.adminpage = 'options-media-php';
8
+ if ( 'settings_page_media' == window.pagenow )
9
+ window.pagenow = 'options-media';
10
+
11
+
12
  if ( $(window).width() < 600 )
13
  w = '90%';
14
  else if ( $(window).width() > 1024 )
js/eml-media-views.js CHANGED
@@ -435,6 +435,8 @@ window.eml = window.eml || { l10n: {} };
435
  original.AttachmentsBrowser.initialize.apply( this, arguments );
436
 
437
  this.on( 'ready', this.fixLayout, this );
 
 
438
  },
439
 
440
  fixLayout: function() {
@@ -471,11 +473,11 @@ window.eml = window.eml || { l10n: {} };
471
  messagesOuterHeight += $(this).outerHeight( true );
472
  });
473
 
474
- messagesOuterHeight = messagesOuterHeight ? messagesOuterHeight - 20 : 0;
475
  }
476
 
477
- $browser.css( 'top', $toolbar.outerHeight() + messagesOuterHeight + 20 + 'px' );
478
- $toolbar.css( 'top', - $toolbar.outerHeight() - 30 + 'px' );
479
  }
480
  },
481
 
435
  original.AttachmentsBrowser.initialize.apply( this, arguments );
436
 
437
  this.on( 'ready', this.fixLayout, this );
438
+ this.$window = $( window );
439
+ this.$window.on( 'resize', _.debounce( _.bind( this.fixLayout, this ), 15 ) );
440
  },
441
 
442
  fixLayout: function() {
473
  messagesOuterHeight += $(this).outerHeight( true );
474
  });
475
 
476
+ messagesOuterHeight = messagesOuterHeight ? messagesOuterHeight - 15 : 0;
477
  }
478
 
479
+ $browser.css( 'top', $toolbar.outerHeight() + messagesOuterHeight + 15 + 'px' );
480
+ $toolbar.css( 'top', - $toolbar.outerHeight() - 25 + 'px' );
481
  }
482
  },
483
 
languages/enhanced-media-library-de_DE.mo CHANGED
Binary file
languages/enhanced-media-library-de_DE.po CHANGED
@@ -1,25 +1,20 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-08-09 17:45+0300\n"
7
- "PO-Revision-Date: \n"
 
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: Markus Kottländer\n"
10
- "Language: de\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #: core/mime-types.php:30
25
  msgid "MIME Types settings restored."
@@ -33,16 +28,16 @@ msgstr ""
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
36
- msgstr[0] " <span class=\"count\">(%s)</span>"
37
- msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:236
40
- #: core/options-pages.php:1003 core/options-pages.php:1128
41
- #: core/options-pages.php:1451 core/options-pages.php:1651
42
  msgid "Media Settings"
43
  msgstr "Medien-Einstellungen"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "Mediathek"
48
 
@@ -50,7 +45,7 @@ msgstr "Mediathek"
50
  msgid "Taxonomies"
51
  msgstr "Taxonomien"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "MIME Types"
56
 
@@ -58,273 +53,274 @@ msgstr "MIME Types"
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
60
 
61
- #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
  msgid "Media Taxonomies"
67
  msgstr "Media Taxonomien"
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr ""
74
 
75
- #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1173
148
- #: core/options-pages.php:1188 core/options-pages.php:1251
149
- #: core/options-pages.php:1320
150
  msgid "Edit"
151
  msgstr "Bearbeiten"
152
 
153
- #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr "Schließen"
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1189
158
- #: core/options-pages.php:1252
159
  msgid "View"
160
  msgstr "Anzeigen"
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1190
163
- #: core/options-pages.php:1253
164
  msgid "Update"
165
  msgstr "Aktualisieren"
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1191
168
- #: core/options-pages.php:1254
169
  msgid "Add New"
170
  msgstr ""
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1192
173
- #: core/options-pages.php:1255
174
  msgid "New"
175
  msgstr ""
176
 
177
- #: core/options-pages.php:403
178
  msgid "Name"
179
  msgstr ""
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1193
182
- #: core/options-pages.php:1256
183
  msgid "Parent"
184
  msgstr ""
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:641
187
- #: core/options-pages.php:1187 core/options-pages.php:1250
188
- #: core/taxonomies.php:348 enhanced-media-library.php:485
189
  msgid "All"
190
  msgstr "Alle"
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1194
193
- #: core/options-pages.php:1257
194
  msgid "Search"
195
  msgstr "Durchsuchen"
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1238
198
  msgid "New Taxonomy"
199
  msgstr ""
200
 
201
- #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
 
236
- #: core/options-pages.php:420
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:421
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:422
245
  msgid "Please choose Singular name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:423
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:425
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:426 core/options-pages.php:431
257
- #: core/options-pages.php:475 core/options-pages.php:520
 
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:428
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:429 core/options-pages.php:517
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:430
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:432
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:470 core/options-pages.php:1575
278
  msgid "Restore WordPress default MIME Types"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:471
282
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
283
  msgstr ""
284
 
285
- #: core/options-pages.php:472
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:473
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:477
294
  msgid "Please fill into all fields."
295
  msgstr ""
296
 
297
- #: core/options-pages.php:478
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
 
301
- #: core/options-pages.php:515 core/options-pages.php:632
302
  msgid "Complete Cleanup"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:516
306
  msgid ""
307
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
308
  "plugin data</strong> from the database including backups."
309
  msgstr ""
310
 
311
- #: core/options-pages.php:518
312
  msgid "Yes, delete all data"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:519
316
  msgid "Cleaning..."
317
  msgstr ""
318
 
319
- #: core/options-pages.php:550
320
  msgid "Enhanced Media Library Settings"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:560
324
  msgid "Export"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:564
328
  msgid ""
329
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
330
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -332,15 +328,15 @@ msgid ""
332
  "another website."
333
  msgstr ""
334
 
335
- #: core/options-pages.php:569
336
  msgid "Export Plugin Settings"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:579
340
  msgid "Import"
341
  msgstr ""
342
 
343
- #: core/options-pages.php:583
344
  msgid ""
345
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
346
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -348,168 +344,173 @@ msgid ""
348
  "another website using the export button above."
349
  msgstr ""
350
 
351
- #: core/options-pages.php:584
352
  msgid ""
353
  "All plugin settings will be overridden by the import. You will have a chance "
354
  "to restore current data from an automatic backup in case you are not "
355
  "satisfied with the result of the import."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:591
359
  msgid "Import Plugin Settings"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:603
363
  msgid "Restore"
364
  msgstr ""
365
 
366
- #: core/options-pages.php:609
367
  msgid "No backup available at the moment."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:611
371
  msgid "Backup will be created automatically before any import operation."
372
  msgstr ""
373
 
374
- #: core/options-pages.php:615
375
  msgid ""
376
  "The backup has been automatically created before the latest import operation."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:619
380
  msgid "Restore Settings from the Backup"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:639
384
  msgid "What will be deleted:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:644
388
  msgid "All plugin options"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:645
392
  msgid "All plugin backups stored in database"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:649
396
  msgid "What will remain intact:"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:650
400
  msgid "All media items"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:651
404
  msgid "All taxonomies not listed above"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:654
408
  msgid ""
409
  "The plugin cannot delete itself because of security reason. Please delete it "
410
  "manually from plugin list after cleanup."
411
  msgstr ""
412
 
413
- #: core/options-pages.php:656
414
  msgid ""
415
  "If you are not sure about this operation please create a backup of your "
416
  "database prior to cleanup!"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:662
420
  msgid "Delete All Data & Deactivate"
421
  msgstr ""
422
 
423
- #: core/options-pages.php:762
424
  msgid "Please upload a file to import settings."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:788
428
  msgid "Plugin settings imported."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:835
432
  msgid "Plugin settings restored from the backup."
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1024
436
  msgid "Media Items Order"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1031
440
  msgid "Order media items by"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1034
 
444
  msgid "Date"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:1035
 
448
  msgid "Title"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1036
 
452
  msgid "Custom Order"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1038 core/options-pages.php:1050
456
  msgid "For media library and media popups"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1039
460
  msgid "Option allows to change order by drag and drop with Custom Order value."
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1044
464
  msgid "Sort order"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1047
 
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1048
 
472
  msgid "Descending"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1063
476
  msgid "Media Shortcodes"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1070 core/options-pages.php:1073
480
  msgid "Enhanced media shortcodes"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1074
484
  msgid ""
485
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
486
  "upload date, and media items number limit"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1075
490
  msgid "Gallery example:"
491
  msgstr ""
492
 
493
- #: core/options-pages.php:1076
494
  msgid "Audio playlist example:"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1077
498
  msgid "Video playlist example:"
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1079
502
  #, php-format
503
  msgid ""
504
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
505
  msgstr ""
506
 
507
- #: core/options-pages.php:1081
508
  #, php-format
509
  msgid "%sLearn more%s."
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1083
513
  #, php-format
514
  msgid ""
515
  "Please check out your gallery front-end and back-end functionality once this "
@@ -517,240 +518,240 @@ msgid ""
517
  "%s."
518
  msgstr ""
519
 
520
- #: core/options-pages.php:1153 core/options-pages.php:1300
521
  msgid "Assign following taxonomies to Media Library:"
522
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
523
 
524
- #: core/options-pages.php:1172 core/options-pages.php:1238
525
- #: core/options-pages.php:1319
526
  msgid "Assign Taxonomy"
527
  msgstr "Taxonomie zuweisen"
528
 
529
- #: core/options-pages.php:1173 core/options-pages.php:1320
530
  msgid "Edit Taxonomy"
531
  msgstr "Taxonomie bearbeiten"
532
 
533
- #: core/options-pages.php:1177 core/options-pages.php:1240
534
  msgid "Delete Taxonomy"
535
  msgstr "Taxonomie löschen"
536
 
537
- #: core/options-pages.php:1182 core/options-pages.php:1245
538
  msgid "Labels"
539
  msgstr ""
540
 
541
- #: core/options-pages.php:1184 core/options-pages.php:1247
542
  msgid "Singular"
543
  msgstr ""
544
 
545
- #: core/options-pages.php:1185 core/options-pages.php:1248
546
  msgid "Plural"
547
  msgstr ""
548
 
549
- #: core/options-pages.php:1186 core/options-pages.php:1249
550
  msgid "Menu Name"
551
  msgstr "Menü Name"
552
 
553
- #: core/options-pages.php:1199 core/options-pages.php:1222
554
- #: core/options-pages.php:1262 core/options-pages.php:1323
555
  msgid "Settings"
556
  msgstr "Einstellungen"
557
 
558
- #: core/options-pages.php:1201 core/options-pages.php:1264
559
  msgid "Taxonomy Name"
560
  msgstr "Taxonomie Name"
561
 
562
- #: core/options-pages.php:1202 core/options-pages.php:1265
563
  msgid "Hierarchical"
564
  msgstr "Hierarchisch"
565
 
566
- #: core/options-pages.php:1203 core/options-pages.php:1266
567
  msgid "Column for List View"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1204 core/options-pages.php:1224
571
- #: core/options-pages.php:1267 core/options-pages.php:1325
572
  msgid "Filter for List View"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1205 core/options-pages.php:1225
576
- #: core/options-pages.php:1268 core/options-pages.php:1326
577
  msgid "Filter for Grid View / Media Popup"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1206 core/options-pages.php:1226
581
- #: core/options-pages.php:1269 core/options-pages.php:1327
582
  msgid "Edit in Media Popup"
583
  msgstr ""
584
 
585
- #: core/options-pages.php:1207 core/options-pages.php:1270
586
  msgid "Show in Nav Menu"
587
  msgstr ""
588
 
589
- #: core/options-pages.php:1208 core/options-pages.php:1271
590
  msgid "Remember Terms Order (sort)"
591
  msgstr ""
592
 
593
- #: core/options-pages.php:1209 core/options-pages.php:1272
594
  msgid "Show in REST"
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1210 core/options-pages.php:1273
598
  msgid "Rewrite Slug"
599
  msgstr ""
600
 
601
- #: core/options-pages.php:1211 core/options-pages.php:1274
602
  msgid "Slug with Front"
603
  msgstr ""
604
 
605
- #: core/options-pages.php:1286
606
  msgid "Add New Taxonomy"
607
  msgstr "Neue Taxonomie hinzufügen"
608
 
609
- #: core/options-pages.php:1296
610
  msgid "Non-Media Taxonomies"
611
  msgstr "Nicht-Medien Taxonimien"
612
 
613
- #: core/options-pages.php:1357
614
  msgid "Options"
615
  msgstr "Optionen"
616
 
617
- #: core/options-pages.php:1367 core/options-pages.php:1370
618
  msgid "Taxonomy archive pages"
619
  msgstr "Taxonomie Archiv Seiten"
620
 
621
- #: core/options-pages.php:1371
622
  msgid "Turn on media taxonomy archive pages on the front-end"
623
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
624
 
625
- #: core/options-pages.php:1372
626
  msgid ""
627
  "Re-save your permalink settings after this option change to make it work."
628
  msgstr ""
629
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
630
  "greift."
631
 
632
- #: core/options-pages.php:1378 core/options-pages.php:1381
633
  msgid "Assign all like hierarchical"
634
  msgstr "Alle als hierarchisch zuweisen"
635
 
636
- #: core/options-pages.php:1382
637
  msgid ""
638
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
639
  msgstr ""
640
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
641
  "Popups als hierarchisch an"
642
 
643
- #: core/options-pages.php:1388 core/options-pages.php:1391
644
  msgid "Force filters"
645
  msgstr "Filter erzwingen"
646
 
647
- #: core/options-pages.php:1392
648
  msgid "Show media filters for ANY Media Popup"
649
  msgstr ""
650
 
651
- #: core/options-pages.php:1393
652
  msgid "Try this if filters are not shown for third-party plugins or themes."
653
  msgstr ""
654
 
655
- #: core/options-pages.php:1399 core/options-pages.php:1402
656
  msgid "Show count"
657
  msgstr ""
658
 
659
- #: core/options-pages.php:1403
660
  msgid "Show item count per category for media filters"
661
  msgstr ""
662
 
663
- #: core/options-pages.php:1457
664
  msgid "Add New MIME Type"
665
  msgstr "Neuen MIME Type hinzufügen"
666
 
667
- #: core/options-pages.php:1477 core/options-pages.php:1532
668
  msgid "Extension"
669
  msgstr "Dateiendung"
670
 
671
- #: core/options-pages.php:1478 core/options-pages.php:1533
672
  msgid "MIME Type"
673
  msgstr "MIME Type"
674
 
675
- #: core/options-pages.php:1479 core/options-pages.php:1534
676
  msgid "Singular Label"
677
  msgstr "Singular Beschriftung"
678
 
679
- #: core/options-pages.php:1480 core/options-pages.php:1535
680
  msgid "Plural Label"
681
  msgstr "Plural Beschriftung"
682
 
683
- #: core/options-pages.php:1481 core/options-pages.php:1511
684
- #: core/options-pages.php:1524 core/options-pages.php:1536
685
  msgid "Add Filter"
686
  msgstr "Filter hinzufügen"
687
 
688
- #: core/options-pages.php:1482 core/options-pages.php:1512
689
- #: core/options-pages.php:1525 core/options-pages.php:1537
690
  msgid "Allow Upload"
691
  msgstr "Upload erlauben"
692
 
693
- #: core/options-pages.php:1513 core/options-pages.php:1526
694
  msgid "Delete MIME Type"
695
  msgstr "MIME Type löschen"
696
 
697
- #: core/options-pages.php:1573
698
  msgid "Save Changes"
699
  msgstr "Änderungen speichern"
700
 
701
- #: core/options-pages.php:1603
702
  msgid "Changelog"
703
  msgstr ""
704
 
705
- #: core/options-pages.php:1604
706
  msgid "What's new in"
707
  msgstr ""
708
 
709
- #: core/options-pages.php:1604
710
  msgid "version"
711
  msgstr ""
712
 
713
- #: core/options-pages.php:1607
714
  msgid "More features under the hood"
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1609
718
  msgid "Support"
719
  msgstr ""
720
 
721
- #: core/options-pages.php:1610
722
  msgid "Feel free to ask for help on"
723
  msgstr ""
724
 
725
- #: core/options-pages.php:1610
726
  msgid "Support is free for both versions of the plugin."
727
  msgstr ""
728
 
729
- #: core/options-pages.php:1612
730
  msgid "Plugin rating"
731
  msgstr ""
732
 
733
- #: core/options-pages.php:1613
734
  msgid "Please"
735
  msgstr ""
736
 
737
- #: core/options-pages.php:1613
738
  msgid "vote for the plugin"
739
  msgstr ""
740
 
741
- #: core/options-pages.php:1613
742
  msgid "Thanks!"
743
  msgstr ""
744
 
745
- #: core/options-pages.php:1615
746
  msgid "Other plugins you may find useful"
747
  msgstr ""
748
 
749
- #: core/options-pages.php:1654
750
  msgid "Utility"
751
  msgstr ""
752
 
753
- #: core/options-pages.php:1677
754
  msgid "Vote!"
755
  msgstr ""
756
 
@@ -762,71 +763,375 @@ msgstr ""
762
  msgid "Media Library settings saved."
763
  msgstr ""
764
 
765
- #: core/taxonomies.php:341 core/taxonomies.php:347
766
- #: enhanced-media-library.php:484
767
  msgid "Filter by"
768
  msgstr "Filtern nach"
769
 
770
- #: core/taxonomies.php:349 enhanced-media-library.php:486
771
- msgid "Not in"
772
  msgstr "Nicht in"
773
 
774
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
775
  msgid "All Uncategorized"
776
  msgstr "Alle unkategorisierten"
777
 
778
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
779
  msgid "Reset All Filters"
780
  msgstr "Alle Filter zurücksetzen"
781
 
782
- #: enhanced-media-library.php:517
783
  msgid "Uploaded to post #"
784
  msgstr ""
785
 
786
- #: enhanced-media-library.php:518
787
  msgid "Based On"
788
  msgstr ""
789
 
790
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
791
  msgid "Media Categories"
792
  msgstr ""
793
 
794
- #: enhanced-media-library.php:564
795
  msgid "Media Category"
796
  msgstr ""
797
 
798
- #: enhanced-media-library.php:566
799
  msgid "All Media Categories"
800
  msgstr ""
801
 
802
- #: enhanced-media-library.php:567
803
  msgid "Edit Media Category"
804
  msgstr ""
805
 
806
- #: enhanced-media-library.php:568
807
  msgid "View Media Category"
808
  msgstr ""
809
 
810
- #: enhanced-media-library.php:569
811
  msgid "Update Media Category"
812
  msgstr ""
813
 
814
- #: enhanced-media-library.php:570
815
  msgid "Add New Media Category"
816
  msgstr ""
817
 
818
- #: enhanced-media-library.php:571
819
  msgid "New Media Category Name"
820
  msgstr ""
821
 
822
- #: enhanced-media-library.php:572
823
  msgid "Parent Media Category"
824
  msgstr ""
825
 
826
- #: enhanced-media-library.php:573
827
  msgid "Parent Media Category:"
828
  msgstr ""
829
 
830
- #: enhanced-media-library.php:574
831
  msgid "Search Media Categories"
832
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:37+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:37+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: German (Germany)\n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160726-1\n"
 
 
 
 
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
28
  #, php-format
29
  msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
+ msgstr[0] ""
32
+ msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:239
35
+ #: core/options-pages.php:1006 core/options-pages.php:1130
36
+ #: core/options-pages.php:1455 core/options-pages.php:1655
37
  msgid "Media Settings"
38
  msgstr "Medien-Einstellungen"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Mediathek"
43
 
45
  msgid "Taxonomies"
46
  msgstr "Taxonomien"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "MIME Types"
51
 
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
+ #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
+ #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Media Taxonomien"
63
 
64
+ #: core/options-pages.php:236 core/options-pages.php:548
65
+ #: core/options-pages.php:1002 core/options-pages.php:1127
66
+ #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr ""
69
 
70
+ #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
+ #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
+ #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
+ #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
+ #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
+ #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
+ #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
+ #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
+ #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
+ #: core/options-pages.php:400 core/options-pages.php:1175
143
+ #: core/options-pages.php:1190 core/options-pages.php:1253
144
+ #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "Bearbeiten"
147
 
148
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "Schließen"
151
 
152
+ #: core/options-pages.php:402 core/options-pages.php:1191
153
+ #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "Anzeigen"
156
 
157
+ #: core/options-pages.php:403 core/options-pages.php:1192
158
+ #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "Aktualisieren"
161
 
162
+ #: core/options-pages.php:404 core/options-pages.php:1193
163
+ #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr ""
166
 
167
+ #: core/options-pages.php:405 core/options-pages.php:1194
168
+ #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr ""
171
 
172
+ #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr ""
175
 
176
+ #: core/options-pages.php:407 core/options-pages.php:1195
177
+ #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr ""
180
 
181
+ #: core/options-pages.php:408 core/options-pages.php:644
182
+ #: core/options-pages.php:1189 core/options-pages.php:1252
183
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "Alle"
186
 
187
+ #: core/options-pages.php:409 core/options-pages.php:1196
188
+ #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "Durchsuchen"
191
 
192
+ #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr ""
195
 
196
+ #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
+ #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
+ #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
+ #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
+ #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
+ #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
+ #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr ""
230
 
231
+ #: core/options-pages.php:423
232
  msgid "Empty Fields"
233
  msgstr ""
234
 
235
+ #: core/options-pages.php:424
236
  msgid "Please choose Singular and Plural names for all new taxomonies."
237
  msgstr ""
238
 
239
+ #: core/options-pages.php:425
240
  msgid "Please choose Singular name for all new taxomonies."
241
  msgstr ""
242
 
243
+ #: core/options-pages.php:426
244
  msgid "Please choose Plural Name for all new taxomonies."
245
  msgstr ""
246
 
247
+ #: core/options-pages.php:428
248
  msgid "Ok"
249
  msgstr ""
250
 
251
+ #: core/options-pages.php:429 core/options-pages.php:434
252
+ #: core/options-pages.php:478 core/options-pages.php:523
253
+ #: pro/enhanced-media-library-pro.php:133
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:432 core/options-pages.php:520
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:433
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:435
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:473 core/options-pages.php:1579
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:474
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr ""
280
 
281
+ #: core/options-pages.php:475
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
+ #: core/options-pages.php:476
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:480
290
  msgid "Please fill into all fields."
291
  msgstr ""
292
 
293
+ #: core/options-pages.php:481
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr ""
296
 
297
+ #: core/options-pages.php:518 core/options-pages.php:635
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
+ #: core/options-pages.php:519
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
+ #: core/options-pages.php:521
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
+ #: core/options-pages.php:522
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
+ #: core/options-pages.php:553
316
  msgid "Enhanced Media Library Settings"
317
  msgstr ""
318
 
319
+ #: core/options-pages.php:563
320
  msgid "Export"
321
  msgstr ""
322
 
323
+ #: core/options-pages.php:567
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
328
  "another website."
329
  msgstr ""
330
 
331
+ #: core/options-pages.php:572
332
  msgid "Export Plugin Settings"
333
  msgstr ""
334
 
335
+ #: core/options-pages.php:582
336
  msgid "Import"
337
  msgstr ""
338
 
339
+ #: core/options-pages.php:586
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
+ #: core/options-pages.php:587
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
+ #: core/options-pages.php:594
355
  msgid "Import Plugin Settings"
356
  msgstr ""
357
 
358
+ #: core/options-pages.php:606
359
  msgid "Restore"
360
  msgstr ""
361
 
362
+ #: core/options-pages.php:612
363
  msgid "No backup available at the moment."
364
  msgstr ""
365
 
366
+ #: core/options-pages.php:614
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr ""
369
 
370
+ #: core/options-pages.php:618
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
+ #: core/options-pages.php:622
376
  msgid "Restore Settings from the Backup"
377
  msgstr ""
378
 
379
+ #: core/options-pages.php:642
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
+ #: core/options-pages.php:647
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
+ #: core/options-pages.php:648
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
+ #: core/options-pages.php:652
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
+ #: core/options-pages.php:653
396
  msgid "All media items"
397
  msgstr ""
398
 
399
+ #: core/options-pages.php:654
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
+ #: core/options-pages.php:657
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
+ #: core/options-pages.php:659
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
+ #: core/options-pages.php:665
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
+ #: core/options-pages.php:765
420
  msgid "Please upload a file to import settings."
421
  msgstr ""
422
 
423
+ #: core/options-pages.php:791
424
  msgid "Plugin settings imported."
425
  msgstr ""
426
 
427
+ #: core/options-pages.php:838
428
  msgid "Plugin settings restored from the backup."
429
  msgstr ""
430
 
431
+ #: core/options-pages.php:1027
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
+ #: core/options-pages.php:1034
436
  msgid "Order media items by"
437
  msgstr ""
438
 
439
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
440
+ #: pro/core/medialist.php:73
441
  msgid "Date"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
445
+ #: pro/core/medialist.php:76
446
  msgid "Title"
447
  msgstr ""
448
 
449
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
450
+ #: pro/core/medialist.php:79
451
  msgid "Custom Order"
452
  msgstr ""
453
 
454
+ #: core/options-pages.php:1041 core/options-pages.php:1053
455
  msgid "For media library and media popups"
456
  msgstr ""
457
 
458
+ #: core/options-pages.php:1042
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
 
462
+ #: core/options-pages.php:1047
463
  msgid "Sort order"
464
  msgstr ""
465
 
466
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
467
+ #: pro/core/medialist.php:92
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
472
+ #: pro/core/medialist.php:95
473
  msgid "Descending"
474
  msgstr ""
475
 
476
+ #: core/options-pages.php:1066
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1073 core/options-pages.php:1076
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
+ #: core/options-pages.php:1077
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1078
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1079
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1080
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
+ #: core/options-pages.php:1082
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
+ #: core/options-pages.php:1084
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
+ #: core/options-pages.php:1086
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
518
  "%s."
519
  msgstr ""
520
 
521
+ #: core/options-pages.php:1155 core/options-pages.php:1302
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
524
 
525
+ #: core/options-pages.php:1174 core/options-pages.php:1240
526
+ #: core/options-pages.php:1324
527
  msgid "Assign Taxonomy"
528
  msgstr "Taxonomie zuweisen"
529
 
530
+ #: core/options-pages.php:1175 core/options-pages.php:1325
531
  msgid "Edit Taxonomy"
532
  msgstr "Taxonomie bearbeiten"
533
 
534
+ #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Delete Taxonomy"
536
  msgstr "Taxonomie löschen"
537
 
538
+ #: core/options-pages.php:1184 core/options-pages.php:1247
539
  msgid "Labels"
540
  msgstr ""
541
 
542
+ #: core/options-pages.php:1186 core/options-pages.php:1249
543
  msgid "Singular"
544
  msgstr ""
545
 
546
+ #: core/options-pages.php:1187 core/options-pages.php:1250
547
  msgid "Plural"
548
  msgstr ""
549
 
550
+ #: core/options-pages.php:1188 core/options-pages.php:1251
551
  msgid "Menu Name"
552
  msgstr "Menü Name"
553
 
554
+ #: core/options-pages.php:1201 core/options-pages.php:1224
555
+ #: core/options-pages.php:1264 core/options-pages.php:1328
556
  msgid "Settings"
557
  msgstr "Einstellungen"
558
 
559
+ #: core/options-pages.php:1203 core/options-pages.php:1266
560
  msgid "Taxonomy Name"
561
  msgstr "Taxonomie Name"
562
 
563
+ #: core/options-pages.php:1204 core/options-pages.php:1267
564
  msgid "Hierarchical"
565
  msgstr "Hierarchisch"
566
 
567
+ #: core/options-pages.php:1205 core/options-pages.php:1268
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
+ #: core/options-pages.php:1206 core/options-pages.php:1226
572
+ #: core/options-pages.php:1269 core/options-pages.php:1330
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
+ #: core/options-pages.php:1207 core/options-pages.php:1227
577
+ #: core/options-pages.php:1270 core/options-pages.php:1331
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
+ #: core/options-pages.php:1208 core/options-pages.php:1228
582
+ #: core/options-pages.php:1271 core/options-pages.php:1332
583
  msgid "Edit in Media Popup"
584
  msgstr ""
585
 
586
+ #: core/options-pages.php:1209 core/options-pages.php:1272
587
  msgid "Show in Nav Menu"
588
  msgstr ""
589
 
590
+ #: core/options-pages.php:1210 core/options-pages.php:1273
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1211 core/options-pages.php:1274
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
+ #: core/options-pages.php:1212 core/options-pages.php:1275
599
  msgid "Rewrite Slug"
600
  msgstr ""
601
 
602
+ #: core/options-pages.php:1213 core/options-pages.php:1276
603
  msgid "Slug with Front"
604
  msgstr ""
605
 
606
+ #: core/options-pages.php:1288
607
  msgid "Add New Taxonomy"
608
  msgstr "Neue Taxonomie hinzufügen"
609
 
610
+ #: core/options-pages.php:1298
611
  msgid "Non-Media Taxonomies"
612
  msgstr "Nicht-Medien Taxonimien"
613
 
614
+ #: core/options-pages.php:1361
615
  msgid "Options"
616
  msgstr "Optionen"
617
 
618
+ #: core/options-pages.php:1371 core/options-pages.php:1374
619
  msgid "Taxonomy archive pages"
620
  msgstr "Taxonomie Archiv Seiten"
621
 
622
+ #: core/options-pages.php:1375
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
625
 
626
+ #: core/options-pages.php:1376
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
631
  "greift."
632
 
633
+ #: core/options-pages.php:1382 core/options-pages.php:1385
634
  msgid "Assign all like hierarchical"
635
  msgstr "Alle als hierarchisch zuweisen"
636
 
637
+ #: core/options-pages.php:1386
638
  msgid ""
639
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
640
  msgstr ""
641
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
642
  "Popups als hierarchisch an"
643
 
644
+ #: core/options-pages.php:1392 core/options-pages.php:1395
645
  msgid "Force filters"
646
  msgstr "Filter erzwingen"
647
 
648
+ #: core/options-pages.php:1396
649
  msgid "Show media filters for ANY Media Popup"
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1397
653
  msgid "Try this if filters are not shown for third-party plugins or themes."
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1403 core/options-pages.php:1406
657
  msgid "Show count"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1407
661
  msgid "Show item count per category for media filters"
662
  msgstr ""
663
 
664
+ #: core/options-pages.php:1461
665
  msgid "Add New MIME Type"
666
  msgstr "Neuen MIME Type hinzufügen"
667
 
668
+ #: core/options-pages.php:1481 core/options-pages.php:1536
669
  msgid "Extension"
670
  msgstr "Dateiendung"
671
 
672
+ #: core/options-pages.php:1482 core/options-pages.php:1537
673
  msgid "MIME Type"
674
  msgstr "MIME Type"
675
 
676
+ #: core/options-pages.php:1483 core/options-pages.php:1538
677
  msgid "Singular Label"
678
  msgstr "Singular Beschriftung"
679
 
680
+ #: core/options-pages.php:1484 core/options-pages.php:1539
681
  msgid "Plural Label"
682
  msgstr "Plural Beschriftung"
683
 
684
+ #: core/options-pages.php:1485 core/options-pages.php:1515
685
+ #: core/options-pages.php:1528 core/options-pages.php:1540
686
  msgid "Add Filter"
687
  msgstr "Filter hinzufügen"
688
 
689
+ #: core/options-pages.php:1486 core/options-pages.php:1516
690
+ #: core/options-pages.php:1529 core/options-pages.php:1541
691
  msgid "Allow Upload"
692
  msgstr "Upload erlauben"
693
 
694
+ #: core/options-pages.php:1517 core/options-pages.php:1530
695
  msgid "Delete MIME Type"
696
  msgstr "MIME Type löschen"
697
 
698
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
699
  msgid "Save Changes"
700
  msgstr "Änderungen speichern"
701
 
702
+ #: core/options-pages.php:1607
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1608
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1608
711
  msgid "version"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1611
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1613
719
  msgid "Support"
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1614
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1614
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1616
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1617
735
  msgid "Please"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1617
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1617
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1619
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
+ #: core/options-pages.php:1658
751
  msgid "Utility"
752
  msgstr ""
753
 
754
+ #: core/options-pages.php:1681
755
  msgid "Vote!"
756
  msgstr ""
757
 
763
  msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
+ #: core/taxonomies.php:333 core/taxonomies.php:339
767
+ #: enhanced-media-library.php:502
768
  msgid "Filter by"
769
  msgstr "Filtern nach"
770
 
771
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
772
+ msgid "Not in a"
773
  msgstr "Nicht in"
774
 
775
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
776
  msgid "All Uncategorized"
777
  msgstr "Alle unkategorisierten"
778
 
779
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
780
  msgid "Reset All Filters"
781
  msgstr "Alle Filter zurücksetzen"
782
 
783
+ #: enhanced-media-library.php:535
784
  msgid "Uploaded to post #"
785
  msgstr ""
786
 
787
+ #: enhanced-media-library.php:536
788
  msgid "Based On"
789
  msgstr ""
790
 
791
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
792
  msgid "Media Categories"
793
  msgstr ""
794
 
795
+ #: enhanced-media-library.php:582
796
  msgid "Media Category"
797
  msgstr ""
798
 
799
+ #: enhanced-media-library.php:584
800
  msgid "All Media Categories"
801
  msgstr ""
802
 
803
+ #: enhanced-media-library.php:585
804
  msgid "Edit Media Category"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:586
808
  msgid "View Media Category"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:587
812
  msgid "Update Media Category"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:588
816
  msgid "Add New Media Category"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:589
820
  msgid "New Media Category Name"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:590
824
  msgid "Parent Media Category"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:591
828
  msgid "Parent Media Category:"
829
  msgstr ""
830
 
831
+ #: enhanced-media-library.php:592
832
  msgid "Search Media Categories"
833
  msgstr ""
834
+
835
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
836
+ msgid "Remove"
837
+ msgstr "Entfernen"
838
+
839
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
840
+ msgid "Deselect"
841
+ msgstr "Auswahl entfernen"
842
+
843
+ #: pro/core/bulk-edit.php:105
844
+ msgid "Caption this image&hellip;"
845
+ msgstr "Beschrifte dieses Bild&hellip;"
846
+
847
+ #: pro/core/bulk-edit.php:109
848
+ msgid "Describe this video&hellip;"
849
+ msgstr "Beschreibe diese Video-Datei&hellip;"
850
+
851
+ #: pro/core/bulk-edit.php:111
852
+ msgid "Describe this audio file&hellip;"
853
+ msgstr "Beschreibe diese Audio-Datei&hellip;"
854
+
855
+ #: pro/core/bulk-edit.php:113
856
+ msgid "Describe this media file&hellip;"
857
+ msgstr "Beschreibe diese Medien-Datei&hellip;"
858
+
859
+ #: pro/core/bulk-edit.php:122
860
+ msgid "Attachments Details"
861
+ msgstr "Mediendetails"
862
+
863
+ #: pro/core/bulk-edit.php:175
864
+ msgid "Select All"
865
+ msgstr "Alle auswählen"
866
+
867
+ #: pro/core/bulk-edit.php:176
868
+ msgid "Deselect All"
869
+ msgstr "Auswahl aller entfernen"
870
+
871
+ #: pro/core/bulk-edit.php:177
872
+ msgid "Delete Selected"
873
+ msgstr "Ausgewählte löschen"
874
+
875
+ #: pro/core/bulk-edit.php:178
876
+ msgid "Trash Selected"
877
+ msgstr ""
878
+
879
+ #: pro/core/bulk-edit.php:179
880
+ msgid "Restore Selected"
881
+ msgstr ""
882
+
883
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
884
+ msgid "Delete Selected Permanently"
885
+ msgstr ""
886
+
887
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
888
+ msgid "Order By"
889
+ msgstr ""
890
+
891
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
892
+ msgid "Random"
893
+ msgstr ""
894
+
895
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
896
+ msgid "Order"
897
+ msgstr ""
898
+
899
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
900
+ msgid "Limit"
901
+ msgstr ""
902
+
903
+ #: pro/core/options-pages.php:78
904
+ msgid "Your license has been deactivated."
905
+ msgstr ""
906
+
907
+ #: pro/core/options-pages.php:88
908
+ msgid "Please check if your license key is correct and try again."
909
+ msgstr ""
910
+
911
+ #: pro/core/options-pages.php:104
912
+ #, php-format
913
+ msgid ""
914
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
915
+ "authors</a>."
916
+ msgstr ""
917
+
918
+ #: pro/core/options-pages.php:119
919
+ #, php-format
920
+ msgid ""
921
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
922
+ "plugin authors</a>."
923
+ msgstr ""
924
+
925
+ #: pro/core/options-pages.php:130
926
+ msgid "You license has been activated."
927
+ msgstr ""
928
+
929
+ #: pro/core/options-pages.php:184
930
+ #, php-format
931
+ msgid "Auto-assign media items to parent %s %s on upload"
932
+ msgstr ""
933
+
934
+ #: pro/core/options-pages.php:185
935
+ #, php-format
936
+ msgid ""
937
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
938
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
939
+ "assigned %s will not be saved. Media items that are not attached to any %s "
940
+ "will not be affected."
941
+ msgstr ""
942
+
943
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
944
+ msgid "Bulk Edit"
945
+ msgstr "Massenbearbeitung"
946
+
947
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
948
+ msgid "Turn off 'Save Changes' button"
949
+ msgstr "'Änderungen speichern'-Button deaktivieren"
950
+
951
+ #: pro/core/options-pages.php:220
952
+ msgid "Save changes on the fly"
953
+ msgstr "Änderungen sofort speichern"
954
+
955
+ #: pro/core/options-pages.php:221
956
+ msgid ""
957
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
958
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
959
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
960
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
961
+ "files / taxonomies with this option turned on."
962
+ msgstr ""
963
+
964
+ #: pro/core/options-pages.php:222
965
+ msgid ""
966
+ "Strongly NOT recommended option if you work with more than hundred of files "
967
+ "at a time."
968
+ msgstr ""
969
+ "NICHT empfohlene Option, wenn du mit mehr als hundert Dateien auf einmal "
970
+ "arbeitest."
971
+
972
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
973
+ msgid "License Key"
974
+ msgstr "Lizenzschlüssel"
975
+
976
+ #: pro/core/options-pages.php:273
977
+ #, php-format
978
+ msgid ""
979
+ "To unlock updates please enter your license key below. You can get your "
980
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
981
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
982
+ msgstr ""
983
+
984
+ #: pro/core/options-pages.php:283
985
+ msgid "Activate License"
986
+ msgstr "Linzenz aktivieren"
987
+
988
+ #: pro/core/options-pages.php:290
989
+ msgid "Your license is active!"
990
+ msgstr "Deine Lizenz ist aktiv!"
991
+
992
+ #: pro/core/options-pages.php:294
993
+ msgid "Deactivate License"
994
+ msgstr ""
995
+
996
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
997
+ msgid ""
998
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
999
+ "this server&#8217;s configuration. If you continue to have problems, please "
1000
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1001
+ msgstr ""
1002
+ "Ein unerwarteter Fehler ist aufgetreten. Der Fehler kann bei WordPress.org "
1003
+ "oder der Konfiguration dieses Servers liegen. Wenn du weiterhin Probleme "
1004
+ "hast, kannst du im <a href=\"https://wordpress.org/support/\">Support Forum</"
1005
+ "a> um Hilfe bitten."
1006
+
1007
+ #: pro/core/update.php:113
1008
+ msgid ""
1009
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1010
+ "contact your server administrator.)"
1011
+ msgstr ""
1012
+ "(WordPress konnte keine sichere Verbindung zu WordPress.org aufbauen. Bitte "
1013
+ "kontaktiere deinen Serveradministrator.)"
1014
+
1015
+ #: pro/core/update.php:181
1016
+ #, php-format
1017
+ msgid ""
1018
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1019
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1020
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1021
+ msgstr ""
1022
+
1023
+ #: pro/enhanced-media-library-pro.php:119
1024
+ msgid "ALL files belong to this item"
1025
+ msgstr "ALLE Dateien gehören zu diesem Eintrag"
1026
+
1027
+ #: pro/enhanced-media-library-pro.php:120
1028
+ msgid "SOME files belong to this item"
1029
+ msgstr "EINIGE Dateien gehören zu diesem Eintrag"
1030
+
1031
+ #: pro/enhanced-media-library-pro.php:121
1032
+ msgid "NO files belong to this item"
1033
+ msgstr "KEINE Dateien gehören zu diesem Eintrag"
1034
+
1035
+ #: pro/enhanced-media-library-pro.php:122
1036
+ msgid "Changes saved."
1037
+ msgstr "Änderungen gespeichert."
1038
+
1039
+ #: pro/enhanced-media-library-pro.php:123
1040
+ msgid "Something went wrong."
1041
+ msgstr "Etwas ist schiefgelaufen."
1042
+
1043
+ #: pro/enhanced-media-library-pro.php:126
1044
+ msgid "Edit Media Files"
1045
+ msgstr "Medien bearbeiten"
1046
+
1047
+ #: pro/enhanced-media-library-pro.php:129
1048
+ msgid "Selecting"
1049
+ msgstr ""
1050
+
1051
+ #: pro/enhanced-media-library-pro.php:131
1052
+ msgid "You are about to permanently delete all selected items."
1053
+ msgstr ""
1054
+
1055
+ #: pro/enhanced-media-library-pro.php:132
1056
+ msgid "Delete"
1057
+ msgstr ""
1058
+
1059
+ #: pro/enhanced-media-library-pro.php:134
1060
+ msgid "Moving to Trash"
1061
+ msgstr ""
1062
+
1063
+ #: pro/enhanced-media-library-pro.php:135
1064
+ msgid "Restoring"
1065
+ msgstr ""
1066
+
1067
+ #: pro/enhanced-media-library-pro.php:136
1068
+ msgid "Deleting"
1069
+ msgstr ""
1070
+
1071
+ #: pro/enhanced-media-library-pro.php:160
1072
+ msgid "Create a filter-based gallery"
1073
+ msgstr ""
1074
+
1075
+ #: pro/enhanced-media-library-pro.php:161
1076
+ msgid "Create a filter-based playlist"
1077
+ msgstr ""
1078
+
1079
+ #: pro/enhanced-media-library-pro.php:162
1080
+ msgid "Create a filter-based video playlist"
1081
+ msgstr ""
1082
+
1083
+ #: pro/enhanced-media-library-pro.php:240
1084
+ msgid ""
1085
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1086
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1087
+ "will remain intact."
1088
+ msgstr ""
1089
+
1090
+ #: pro/enhanced-media-library-pro.php:240
1091
+ msgid "Return to Plugins"
1092
+ msgstr "zu Plugins zurückkehren"
1093
+
1094
+ #: pro/enhanced-media-library-pro.php:291
1095
+ msgid ""
1096
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1097
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1098
+ "be active. Please network deactivate and delete the free versions of the "
1099
+ "plugin. All your data will remain intact."
1100
+ msgstr ""
1101
+
1102
+ #: pro/enhanced-media-library-pro.php:308
1103
+ msgid ""
1104
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1105
+ "be active. Please deactivate and delete the free version of the plugin. All "
1106
+ "your data will remain intact."
1107
+ msgstr ""
1108
+
1109
+ #: pro/enhanced-media-library-pro.php:324
1110
+ msgid ""
1111
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1112
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1113
+ "version to be active. Please deactivate (or network deactivate) and delete "
1114
+ "the free version of the plugin for this site. All your data will remail "
1115
+ "intact."
1116
+ msgstr ""
1117
+
1118
+ #. Plugin Name of the plugin/theme
1119
+ msgid "Enhanced Media Library PRO"
1120
+ msgstr ""
1121
+
1122
+ #. Plugin URI of the plugin/theme
1123
+ #. Author URI of the plugin/theme
1124
+ msgid "http://wpUXsolutions.com"
1125
+ msgstr ""
1126
+
1127
+ #. Description of the plugin/theme
1128
+ msgid ""
1129
+ "This plugin will be handy for those who need to manage a lot of media files."
1130
+ msgstr "Dieses Plugin ist nützlich für alle, die viele Medien verwalten."
1131
+
1132
+ #. Author of the plugin/theme
1133
+ msgid "wpUXsolutions"
1134
+ msgstr ""
1135
+
1136
+ #~ msgid "Not in"
1137
+ #~ msgstr "Nicht in"
languages/enhanced-media-library-he_IL.mo CHANGED
Binary file
languages/enhanced-media-library-he_IL.po CHANGED
@@ -1,25 +1,20 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-08-09 17:45+0300\n"
7
- "PO-Revision-Date: \n"
 
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: \n"
10
  "Language: he_IL\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #: core/mime-types.php:30
25
  msgid "MIME Types settings restored."
@@ -33,16 +28,16 @@ msgstr ""
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
36
- msgstr[0] " <span class=\"count\">(%s)</span>"
37
- msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:236
40
- #: core/options-pages.php:1003 core/options-pages.php:1128
41
- #: core/options-pages.php:1451 core/options-pages.php:1651
42
  msgid "Media Settings"
43
  msgstr "הגדרות מדיה"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "ספריית מדיה"
48
 
@@ -50,7 +45,7 @@ msgstr "ספריית מדיה"
50
  msgid "Taxonomies"
51
  msgstr "תוית מיון"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "סוגי קבצים"
56
 
@@ -58,273 +53,274 @@ msgstr "סוגי קבצים"
58
  msgid "Enhanced Media Library"
59
  msgstr "ספרית מדיה משופרת"
60
 
61
- #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
  msgid "Media Taxonomies"
67
  msgstr "תויות מיון למדיה"
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
74
 
75
- #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1173
148
- #: core/options-pages.php:1188 core/options-pages.php:1251
149
- #: core/options-pages.php:1320
150
  msgid "Edit"
151
  msgstr "ערוך"
152
 
153
- #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr "סגור"
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1189
158
- #: core/options-pages.php:1252
159
  msgid "View"
160
  msgstr "צפה"
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1190
163
- #: core/options-pages.php:1253
164
  msgid "Update"
165
  msgstr "עדכן"
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1191
168
- #: core/options-pages.php:1254
169
  msgid "Add New"
170
  msgstr "הוסף חדש"
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1192
173
- #: core/options-pages.php:1255
174
  msgid "New"
175
  msgstr "חדש"
176
 
177
- #: core/options-pages.php:403
178
  msgid "Name"
179
  msgstr "שם"
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1193
182
- #: core/options-pages.php:1256
183
  msgid "Parent"
184
  msgstr "הורה"
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:641
187
- #: core/options-pages.php:1187 core/options-pages.php:1250
188
- #: core/taxonomies.php:348 enhanced-media-library.php:485
189
  msgid "All"
190
  msgstr "הכל"
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1194
193
- #: core/options-pages.php:1257
194
  msgid "Search"
195
  msgstr "חיפוש"
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1238
198
  msgid "New Taxonomy"
199
  msgstr "תוית מיון חדשה"
200
 
201
- #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
235
 
236
- #: core/options-pages.php:420
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:421
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:422
245
  msgid "Please choose Singular name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:423
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:425
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:426 core/options-pages.php:431
257
- #: core/options-pages.php:475 core/options-pages.php:520
 
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:428
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:429 core/options-pages.php:517
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:430
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:432
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:470 core/options-pages.php:1575
278
  msgid "Restore WordPress default MIME Types"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:471
282
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
283
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
284
 
285
- #: core/options-pages.php:472
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:473
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:477
294
  msgid "Please fill into all fields."
295
  msgstr "אנא הזן את כל השדות"
296
 
297
- #: core/options-pages.php:478
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
300
 
301
- #: core/options-pages.php:515 core/options-pages.php:632
302
  msgid "Complete Cleanup"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:516
306
  msgid ""
307
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
308
  "plugin data</strong> from the database including backups."
309
  msgstr ""
310
 
311
- #: core/options-pages.php:518
312
  msgid "Yes, delete all data"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:519
316
  msgid "Cleaning..."
317
  msgstr ""
318
 
319
- #: core/options-pages.php:550
320
  msgid "Enhanced Media Library Settings"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:560
324
  msgid "Export"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:564
328
  msgid ""
329
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
330
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -332,15 +328,15 @@ msgid ""
332
  "another website."
333
  msgstr ""
334
 
335
- #: core/options-pages.php:569
336
  msgid "Export Plugin Settings"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:579
340
  msgid "Import"
341
  msgstr ""
342
 
343
- #: core/options-pages.php:583
344
  msgid ""
345
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
346
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -348,168 +344,173 @@ msgid ""
348
  "another website using the export button above."
349
  msgstr ""
350
 
351
- #: core/options-pages.php:584
352
  msgid ""
353
  "All plugin settings will be overridden by the import. You will have a chance "
354
  "to restore current data from an automatic backup in case you are not "
355
  "satisfied with the result of the import."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:591
359
  msgid "Import Plugin Settings"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:603
363
  msgid "Restore"
364
  msgstr ""
365
 
366
- #: core/options-pages.php:609
367
  msgid "No backup available at the moment."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:611
371
  msgid "Backup will be created automatically before any import operation."
372
  msgstr ""
373
 
374
- #: core/options-pages.php:615
375
  msgid ""
376
  "The backup has been automatically created before the latest import operation."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:619
380
  msgid "Restore Settings from the Backup"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:639
384
  msgid "What will be deleted:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:644
388
  msgid "All plugin options"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:645
392
  msgid "All plugin backups stored in database"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:649
396
  msgid "What will remain intact:"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:650
400
  msgid "All media items"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:651
404
  msgid "All taxonomies not listed above"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:654
408
  msgid ""
409
  "The plugin cannot delete itself because of security reason. Please delete it "
410
  "manually from plugin list after cleanup."
411
  msgstr ""
412
 
413
- #: core/options-pages.php:656
414
  msgid ""
415
  "If you are not sure about this operation please create a backup of your "
416
  "database prior to cleanup!"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:662
420
  msgid "Delete All Data & Deactivate"
421
  msgstr ""
422
 
423
- #: core/options-pages.php:762
424
  msgid "Please upload a file to import settings."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:788
428
  msgid "Plugin settings imported."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:835
432
  msgid "Plugin settings restored from the backup."
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1024
436
  msgid "Media Items Order"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1031
440
  msgid "Order media items by"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1034
 
444
  msgid "Date"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:1035
 
448
  msgid "Title"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1036
 
452
  msgid "Custom Order"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1038 core/options-pages.php:1050
456
  msgid "For media library and media popups"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1039
460
  msgid "Option allows to change order by drag and drop with Custom Order value."
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1044
464
  msgid "Sort order"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1047
 
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1048
 
472
  msgid "Descending"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1063
476
  msgid "Media Shortcodes"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1070 core/options-pages.php:1073
480
  msgid "Enhanced media shortcodes"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1074
484
  msgid ""
485
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
486
  "upload date, and media items number limit"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1075
490
  msgid "Gallery example:"
491
  msgstr ""
492
 
493
- #: core/options-pages.php:1076
494
  msgid "Audio playlist example:"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1077
498
  msgid "Video playlist example:"
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1079
502
  #, php-format
503
  msgid ""
504
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
505
  msgstr ""
506
 
507
- #: core/options-pages.php:1081
508
  #, php-format
509
  msgid "%sLearn more%s."
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1083
513
  #, php-format
514
  msgid ""
515
  "Please check out your gallery front-end and back-end functionality once this "
@@ -517,237 +518,237 @@ msgid ""
517
  "%s."
518
  msgstr ""
519
 
520
- #: core/options-pages.php:1153 core/options-pages.php:1300
521
  msgid "Assign following taxonomies to Media Library:"
522
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
523
 
524
- #: core/options-pages.php:1172 core/options-pages.php:1238
525
- #: core/options-pages.php:1319
526
  msgid "Assign Taxonomy"
527
  msgstr "הקצא תוית מיון"
528
 
529
- #: core/options-pages.php:1173 core/options-pages.php:1320
530
  msgid "Edit Taxonomy"
531
  msgstr "ערוך תוית מיון"
532
 
533
- #: core/options-pages.php:1177 core/options-pages.php:1240
534
  msgid "Delete Taxonomy"
535
  msgstr "מחק תוית מיון"
536
 
537
- #: core/options-pages.php:1182 core/options-pages.php:1245
538
  msgid "Labels"
539
  msgstr "תויות"
540
 
541
- #: core/options-pages.php:1184 core/options-pages.php:1247
542
  msgid "Singular"
543
  msgstr "יחיד"
544
 
545
- #: core/options-pages.php:1185 core/options-pages.php:1248
546
  msgid "Plural"
547
  msgstr "רבים"
548
 
549
- #: core/options-pages.php:1186 core/options-pages.php:1249
550
  msgid "Menu Name"
551
  msgstr "שם התפריט"
552
 
553
- #: core/options-pages.php:1199 core/options-pages.php:1222
554
- #: core/options-pages.php:1262 core/options-pages.php:1323
555
  msgid "Settings"
556
  msgstr "הגדרות"
557
 
558
- #: core/options-pages.php:1201 core/options-pages.php:1264
559
  msgid "Taxonomy Name"
560
  msgstr "שם תוית המיון"
561
 
562
- #: core/options-pages.php:1202 core/options-pages.php:1265
563
  msgid "Hierarchical"
564
  msgstr "היררכי"
565
 
566
- #: core/options-pages.php:1203 core/options-pages.php:1266
567
  msgid "Column for List View"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1204 core/options-pages.php:1224
571
- #: core/options-pages.php:1267 core/options-pages.php:1325
572
  msgid "Filter for List View"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1205 core/options-pages.php:1225
576
- #: core/options-pages.php:1268 core/options-pages.php:1326
577
  msgid "Filter for Grid View / Media Popup"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1206 core/options-pages.php:1226
581
- #: core/options-pages.php:1269 core/options-pages.php:1327
582
  msgid "Edit in Media Popup"
583
  msgstr "עריכה בחלון מדיה"
584
 
585
- #: core/options-pages.php:1207 core/options-pages.php:1270
586
  msgid "Show in Nav Menu"
587
  msgstr "הצג בתפריט הניווט"
588
 
589
- #: core/options-pages.php:1208 core/options-pages.php:1271
590
  msgid "Remember Terms Order (sort)"
591
  msgstr ""
592
 
593
- #: core/options-pages.php:1209 core/options-pages.php:1272
594
  msgid "Show in REST"
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1210 core/options-pages.php:1273
598
  msgid "Rewrite Slug"
599
  msgstr "שכתב סלוגן"
600
 
601
- #: core/options-pages.php:1211 core/options-pages.php:1274
602
  msgid "Slug with Front"
603
  msgstr "סלוגן עם הקדמה"
604
 
605
- #: core/options-pages.php:1286
606
  msgid "Add New Taxonomy"
607
  msgstr "הוסף תוית מיון חדשה"
608
 
609
- #: core/options-pages.php:1296
610
  msgid "Non-Media Taxonomies"
611
  msgstr "תויות מיון ללא-מדיה"
612
 
613
- #: core/options-pages.php:1357
614
  msgid "Options"
615
  msgstr "אפשרויות"
616
 
617
- #: core/options-pages.php:1367 core/options-pages.php:1370
618
  msgid "Taxonomy archive pages"
619
  msgstr "ארכיון עמודי תויות מיון"
620
 
621
- #: core/options-pages.php:1371
622
  msgid "Turn on media taxonomy archive pages on the front-end"
623
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
624
 
625
- #: core/options-pages.php:1372
626
  msgid ""
627
  "Re-save your permalink settings after this option change to make it work."
628
  msgstr ""
629
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
630
 
631
- #: core/options-pages.php:1378 core/options-pages.php:1381
632
  msgid "Assign all like hierarchical"
633
  msgstr "הקצא הכל באופן היררכי"
634
 
635
- #: core/options-pages.php:1382
636
  msgid ""
637
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
638
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
639
 
640
- #: core/options-pages.php:1388 core/options-pages.php:1391
641
  msgid "Force filters"
642
  msgstr "כפה מסננים"
643
 
644
- #: core/options-pages.php:1392
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1393
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1399 core/options-pages.php:1402
653
  msgid "Show count"
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1403
657
  msgid "Show item count per category for media filters"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1457
661
  msgid "Add New MIME Type"
662
  msgstr "הוסף סוג קובץ חדש"
663
 
664
- #: core/options-pages.php:1477 core/options-pages.php:1532
665
  msgid "Extension"
666
  msgstr "הרחבה"
667
 
668
- #: core/options-pages.php:1478 core/options-pages.php:1533
669
  msgid "MIME Type"
670
  msgstr "סוג קובץ (MIME Type)"
671
 
672
- #: core/options-pages.php:1479 core/options-pages.php:1534
673
  msgid "Singular Label"
674
  msgstr "תוית יחידה"
675
 
676
- #: core/options-pages.php:1480 core/options-pages.php:1535
677
  msgid "Plural Label"
678
  msgstr "תויות רבות"
679
 
680
- #: core/options-pages.php:1481 core/options-pages.php:1511
681
- #: core/options-pages.php:1524 core/options-pages.php:1536
682
  msgid "Add Filter"
683
  msgstr "הוסף מסנן"
684
 
685
- #: core/options-pages.php:1482 core/options-pages.php:1512
686
- #: core/options-pages.php:1525 core/options-pages.php:1537
687
  msgid "Allow Upload"
688
  msgstr "אפשר העלאה"
689
 
690
- #: core/options-pages.php:1513 core/options-pages.php:1526
691
  msgid "Delete MIME Type"
692
  msgstr "מחק סוג קובץ"
693
 
694
- #: core/options-pages.php:1573
695
  msgid "Save Changes"
696
  msgstr "שמור שינויים"
697
 
698
- #: core/options-pages.php:1603
699
  msgid "Changelog"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1604
703
  msgid "What's new in"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1604
707
  msgid "version"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1607
711
  msgid "More features under the hood"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1609
715
  msgid "Support"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1610
719
  msgid "Feel free to ask for help on"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1610
723
  msgid "Support is free for both versions of the plugin."
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1612
727
  msgid "Plugin rating"
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1613
731
  msgid "Please"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1613
735
  msgid "vote for the plugin"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1613
739
  msgid "Thanks!"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1615
743
  msgid "Other plugins you may find useful"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1654
747
  msgid "Utility"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1677
751
  msgid "Vote!"
752
  msgstr ""
753
 
@@ -759,71 +760,372 @@ msgstr ""
759
  msgid "Media Library settings saved."
760
  msgstr ""
761
 
762
- #: core/taxonomies.php:341 core/taxonomies.php:347
763
- #: enhanced-media-library.php:484
764
  msgid "Filter by"
765
  msgstr "סנן על-פי"
766
 
767
- #: core/taxonomies.php:349 enhanced-media-library.php:486
768
- msgid "Not in"
769
- msgstr "לא ב-"
770
 
771
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
772
  msgid "All Uncategorized"
773
  msgstr "הכל לא ממויין"
774
 
775
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
776
  msgid "Reset All Filters"
777
  msgstr "אפס את כל המסננים"
778
 
779
- #: enhanced-media-library.php:517
780
  msgid "Uploaded to post #"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:518
784
  msgid "Based On"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
788
  msgid "Media Categories"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:564
792
  msgid "Media Category"
793
  msgstr ""
794
 
795
- #: enhanced-media-library.php:566
796
  msgid "All Media Categories"
797
  msgstr ""
798
 
799
- #: enhanced-media-library.php:567
800
  msgid "Edit Media Category"
801
  msgstr ""
802
 
803
- #: enhanced-media-library.php:568
804
  msgid "View Media Category"
805
  msgstr ""
806
 
807
- #: enhanced-media-library.php:569
808
  msgid "Update Media Category"
809
  msgstr ""
810
 
811
- #: enhanced-media-library.php:570
812
  msgid "Add New Media Category"
813
  msgstr ""
814
 
815
- #: enhanced-media-library.php:571
816
  msgid "New Media Category Name"
817
  msgstr ""
818
 
819
- #: enhanced-media-library.php:572
820
  msgid "Parent Media Category"
821
  msgstr ""
822
 
823
- #: enhanced-media-library.php:573
824
  msgid "Parent Media Category:"
825
  msgstr ""
826
 
827
- #: enhanced-media-library.php:574
828
  msgid "Search Media Categories"
829
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:36+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:36+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Hebrew (Israel)\n"
9
  "Language: he_IL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160726-1\n"
 
 
 
 
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
28
  #, php-format
29
  msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
+ msgstr[0] ""
32
+ msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:239
35
+ #: core/options-pages.php:1006 core/options-pages.php:1130
36
+ #: core/options-pages.php:1455 core/options-pages.php:1655
37
  msgid "Media Settings"
38
  msgstr "הגדרות מדיה"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "ספריית מדיה"
43
 
45
  msgid "Taxonomies"
46
  msgstr "תוית מיון"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "סוגי קבצים"
51
 
53
  msgid "Enhanced Media Library"
54
  msgstr "ספרית מדיה משופרת"
55
 
56
+ #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
+ #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "תויות מיון למדיה"
63
 
64
+ #: core/options-pages.php:236 core/options-pages.php:548
65
+ #: core/options-pages.php:1002 core/options-pages.php:1127
66
+ #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
69
 
70
+ #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
+ #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
+ #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
+ #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
+ #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
+ #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
+ #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
+ #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
+ #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
+ #: core/options-pages.php:400 core/options-pages.php:1175
143
+ #: core/options-pages.php:1190 core/options-pages.php:1253
144
+ #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "ערוך"
147
 
148
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "סגור"
151
 
152
+ #: core/options-pages.php:402 core/options-pages.php:1191
153
+ #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "צפה"
156
 
157
+ #: core/options-pages.php:403 core/options-pages.php:1192
158
+ #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "עדכן"
161
 
162
+ #: core/options-pages.php:404 core/options-pages.php:1193
163
+ #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr "הוסף חדש"
166
 
167
+ #: core/options-pages.php:405 core/options-pages.php:1194
168
+ #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr "חדש"
171
 
172
+ #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr "שם"
175
 
176
+ #: core/options-pages.php:407 core/options-pages.php:1195
177
+ #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr "הורה"
180
 
181
+ #: core/options-pages.php:408 core/options-pages.php:644
182
+ #: core/options-pages.php:1189 core/options-pages.php:1252
183
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "הכל"
186
 
187
+ #: core/options-pages.php:409 core/options-pages.php:1196
188
+ #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "חיפוש"
191
 
192
+ #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr "תוית מיון חדשה"
195
 
196
+ #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
+ #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
+ #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
+ #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
+ #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
+ #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
+ #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
230
 
231
+ #: core/options-pages.php:423
232
  msgid "Empty Fields"
233
  msgstr ""
234
 
235
+ #: core/options-pages.php:424
236
  msgid "Please choose Singular and Plural names for all new taxomonies."
237
  msgstr ""
238
 
239
+ #: core/options-pages.php:425
240
  msgid "Please choose Singular name for all new taxomonies."
241
  msgstr ""
242
 
243
+ #: core/options-pages.php:426
244
  msgid "Please choose Plural Name for all new taxomonies."
245
  msgstr ""
246
 
247
+ #: core/options-pages.php:428
248
  msgid "Ok"
249
  msgstr ""
250
 
251
+ #: core/options-pages.php:429 core/options-pages.php:434
252
+ #: core/options-pages.php:478 core/options-pages.php:523
253
+ #: pro/enhanced-media-library-pro.php:133
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:432 core/options-pages.php:520
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:433
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:435
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:473 core/options-pages.php:1579
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:474
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
280
 
281
+ #: core/options-pages.php:475
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
+ #: core/options-pages.php:476
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:480
290
  msgid "Please fill into all fields."
291
  msgstr "אנא הזן את כל השדות"
292
 
293
+ #: core/options-pages.php:481
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
296
 
297
+ #: core/options-pages.php:518 core/options-pages.php:635
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
+ #: core/options-pages.php:519
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
+ #: core/options-pages.php:521
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
+ #: core/options-pages.php:522
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
+ #: core/options-pages.php:553
316
  msgid "Enhanced Media Library Settings"
317
  msgstr ""
318
 
319
+ #: core/options-pages.php:563
320
  msgid "Export"
321
  msgstr ""
322
 
323
+ #: core/options-pages.php:567
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
328
  "another website."
329
  msgstr ""
330
 
331
+ #: core/options-pages.php:572
332
  msgid "Export Plugin Settings"
333
  msgstr ""
334
 
335
+ #: core/options-pages.php:582
336
  msgid "Import"
337
  msgstr ""
338
 
339
+ #: core/options-pages.php:586
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
+ #: core/options-pages.php:587
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
+ #: core/options-pages.php:594
355
  msgid "Import Plugin Settings"
356
  msgstr ""
357
 
358
+ #: core/options-pages.php:606
359
  msgid "Restore"
360
  msgstr ""
361
 
362
+ #: core/options-pages.php:612
363
  msgid "No backup available at the moment."
364
  msgstr ""
365
 
366
+ #: core/options-pages.php:614
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr ""
369
 
370
+ #: core/options-pages.php:618
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
+ #: core/options-pages.php:622
376
  msgid "Restore Settings from the Backup"
377
  msgstr ""
378
 
379
+ #: core/options-pages.php:642
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
+ #: core/options-pages.php:647
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
+ #: core/options-pages.php:648
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
+ #: core/options-pages.php:652
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
+ #: core/options-pages.php:653
396
  msgid "All media items"
397
  msgstr ""
398
 
399
+ #: core/options-pages.php:654
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
+ #: core/options-pages.php:657
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
+ #: core/options-pages.php:659
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
+ #: core/options-pages.php:665
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
+ #: core/options-pages.php:765
420
  msgid "Please upload a file to import settings."
421
  msgstr ""
422
 
423
+ #: core/options-pages.php:791
424
  msgid "Plugin settings imported."
425
  msgstr ""
426
 
427
+ #: core/options-pages.php:838
428
  msgid "Plugin settings restored from the backup."
429
  msgstr ""
430
 
431
+ #: core/options-pages.php:1027
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
+ #: core/options-pages.php:1034
436
  msgid "Order media items by"
437
  msgstr ""
438
 
439
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
440
+ #: pro/core/medialist.php:73
441
  msgid "Date"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
445
+ #: pro/core/medialist.php:76
446
  msgid "Title"
447
  msgstr ""
448
 
449
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
450
+ #: pro/core/medialist.php:79
451
  msgid "Custom Order"
452
  msgstr ""
453
 
454
+ #: core/options-pages.php:1041 core/options-pages.php:1053
455
  msgid "For media library and media popups"
456
  msgstr ""
457
 
458
+ #: core/options-pages.php:1042
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
 
462
+ #: core/options-pages.php:1047
463
  msgid "Sort order"
464
  msgstr ""
465
 
466
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
467
+ #: pro/core/medialist.php:92
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
472
+ #: pro/core/medialist.php:95
473
  msgid "Descending"
474
  msgstr ""
475
 
476
+ #: core/options-pages.php:1066
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1073 core/options-pages.php:1076
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
+ #: core/options-pages.php:1077
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1078
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1079
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1080
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
+ #: core/options-pages.php:1082
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
+ #: core/options-pages.php:1084
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
+ #: core/options-pages.php:1086
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
518
  "%s."
519
  msgstr ""
520
 
521
+ #: core/options-pages.php:1155 core/options-pages.php:1302
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
524
 
525
+ #: core/options-pages.php:1174 core/options-pages.php:1240
526
+ #: core/options-pages.php:1324
527
  msgid "Assign Taxonomy"
528
  msgstr "הקצא תוית מיון"
529
 
530
+ #: core/options-pages.php:1175 core/options-pages.php:1325
531
  msgid "Edit Taxonomy"
532
  msgstr "ערוך תוית מיון"
533
 
534
+ #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Delete Taxonomy"
536
  msgstr "מחק תוית מיון"
537
 
538
+ #: core/options-pages.php:1184 core/options-pages.php:1247
539
  msgid "Labels"
540
  msgstr "תויות"
541
 
542
+ #: core/options-pages.php:1186 core/options-pages.php:1249
543
  msgid "Singular"
544
  msgstr "יחיד"
545
 
546
+ #: core/options-pages.php:1187 core/options-pages.php:1250
547
  msgid "Plural"
548
  msgstr "רבים"
549
 
550
+ #: core/options-pages.php:1188 core/options-pages.php:1251
551
  msgid "Menu Name"
552
  msgstr "שם התפריט"
553
 
554
+ #: core/options-pages.php:1201 core/options-pages.php:1224
555
+ #: core/options-pages.php:1264 core/options-pages.php:1328
556
  msgid "Settings"
557
  msgstr "הגדרות"
558
 
559
+ #: core/options-pages.php:1203 core/options-pages.php:1266
560
  msgid "Taxonomy Name"
561
  msgstr "שם תוית המיון"
562
 
563
+ #: core/options-pages.php:1204 core/options-pages.php:1267
564
  msgid "Hierarchical"
565
  msgstr "היררכי"
566
 
567
+ #: core/options-pages.php:1205 core/options-pages.php:1268
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
+ #: core/options-pages.php:1206 core/options-pages.php:1226
572
+ #: core/options-pages.php:1269 core/options-pages.php:1330
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
+ #: core/options-pages.php:1207 core/options-pages.php:1227
577
+ #: core/options-pages.php:1270 core/options-pages.php:1331
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
+ #: core/options-pages.php:1208 core/options-pages.php:1228
582
+ #: core/options-pages.php:1271 core/options-pages.php:1332
583
  msgid "Edit in Media Popup"
584
  msgstr "עריכה בחלון מדיה"
585
 
586
+ #: core/options-pages.php:1209 core/options-pages.php:1272
587
  msgid "Show in Nav Menu"
588
  msgstr "הצג בתפריט הניווט"
589
 
590
+ #: core/options-pages.php:1210 core/options-pages.php:1273
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1211 core/options-pages.php:1274
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
+ #: core/options-pages.php:1212 core/options-pages.php:1275
599
  msgid "Rewrite Slug"
600
  msgstr "שכתב סלוגן"
601
 
602
+ #: core/options-pages.php:1213 core/options-pages.php:1276
603
  msgid "Slug with Front"
604
  msgstr "סלוגן עם הקדמה"
605
 
606
+ #: core/options-pages.php:1288
607
  msgid "Add New Taxonomy"
608
  msgstr "הוסף תוית מיון חדשה"
609
 
610
+ #: core/options-pages.php:1298
611
  msgid "Non-Media Taxonomies"
612
  msgstr "תויות מיון ללא-מדיה"
613
 
614
+ #: core/options-pages.php:1361
615
  msgid "Options"
616
  msgstr "אפשרויות"
617
 
618
+ #: core/options-pages.php:1371 core/options-pages.php:1374
619
  msgid "Taxonomy archive pages"
620
  msgstr "ארכיון עמודי תויות מיון"
621
 
622
+ #: core/options-pages.php:1375
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
625
 
626
+ #: core/options-pages.php:1376
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
631
 
632
+ #: core/options-pages.php:1382 core/options-pages.php:1385
633
  msgid "Assign all like hierarchical"
634
  msgstr "הקצא הכל באופן היררכי"
635
 
636
+ #: core/options-pages.php:1386
637
  msgid ""
638
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
639
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
640
 
641
+ #: core/options-pages.php:1392 core/options-pages.php:1395
642
  msgid "Force filters"
643
  msgstr "כפה מסננים"
644
 
645
+ #: core/options-pages.php:1396
646
  msgid "Show media filters for ANY Media Popup"
647
  msgstr ""
648
 
649
+ #: core/options-pages.php:1397
650
  msgid "Try this if filters are not shown for third-party plugins or themes."
651
  msgstr ""
652
 
653
+ #: core/options-pages.php:1403 core/options-pages.php:1406
654
  msgid "Show count"
655
  msgstr ""
656
 
657
+ #: core/options-pages.php:1407
658
  msgid "Show item count per category for media filters"
659
  msgstr ""
660
 
661
+ #: core/options-pages.php:1461
662
  msgid "Add New MIME Type"
663
  msgstr "הוסף סוג קובץ חדש"
664
 
665
+ #: core/options-pages.php:1481 core/options-pages.php:1536
666
  msgid "Extension"
667
  msgstr "הרחבה"
668
 
669
+ #: core/options-pages.php:1482 core/options-pages.php:1537
670
  msgid "MIME Type"
671
  msgstr "סוג קובץ (MIME Type)"
672
 
673
+ #: core/options-pages.php:1483 core/options-pages.php:1538
674
  msgid "Singular Label"
675
  msgstr "תוית יחידה"
676
 
677
+ #: core/options-pages.php:1484 core/options-pages.php:1539
678
  msgid "Plural Label"
679
  msgstr "תויות רבות"
680
 
681
+ #: core/options-pages.php:1485 core/options-pages.php:1515
682
+ #: core/options-pages.php:1528 core/options-pages.php:1540
683
  msgid "Add Filter"
684
  msgstr "הוסף מסנן"
685
 
686
+ #: core/options-pages.php:1486 core/options-pages.php:1516
687
+ #: core/options-pages.php:1529 core/options-pages.php:1541
688
  msgid "Allow Upload"
689
  msgstr "אפשר העלאה"
690
 
691
+ #: core/options-pages.php:1517 core/options-pages.php:1530
692
  msgid "Delete MIME Type"
693
  msgstr "מחק סוג קובץ"
694
 
695
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
696
  msgid "Save Changes"
697
  msgstr "שמור שינויים"
698
 
699
+ #: core/options-pages.php:1607
700
  msgid "Changelog"
701
  msgstr ""
702
 
703
+ #: core/options-pages.php:1608
704
  msgid "What's new in"
705
  msgstr ""
706
 
707
+ #: core/options-pages.php:1608
708
  msgid "version"
709
  msgstr ""
710
 
711
+ #: core/options-pages.php:1611
712
  msgid "More features under the hood"
713
  msgstr ""
714
 
715
+ #: core/options-pages.php:1613
716
  msgid "Support"
717
  msgstr ""
718
 
719
+ #: core/options-pages.php:1614
720
  msgid "Feel free to ask for help on"
721
  msgstr ""
722
 
723
+ #: core/options-pages.php:1614
724
  msgid "Support is free for both versions of the plugin."
725
  msgstr ""
726
 
727
+ #: core/options-pages.php:1616
728
  msgid "Plugin rating"
729
  msgstr ""
730
 
731
+ #: core/options-pages.php:1617
732
  msgid "Please"
733
  msgstr ""
734
 
735
+ #: core/options-pages.php:1617
736
  msgid "vote for the plugin"
737
  msgstr ""
738
 
739
+ #: core/options-pages.php:1617
740
  msgid "Thanks!"
741
  msgstr ""
742
 
743
+ #: core/options-pages.php:1619
744
  msgid "Other plugins you may find useful"
745
  msgstr ""
746
 
747
+ #: core/options-pages.php:1658
748
  msgid "Utility"
749
  msgstr ""
750
 
751
+ #: core/options-pages.php:1681
752
  msgid "Vote!"
753
  msgstr ""
754
 
760
  msgid "Media Library settings saved."
761
  msgstr ""
762
 
763
+ #: core/taxonomies.php:333 core/taxonomies.php:339
764
+ #: enhanced-media-library.php:502
765
  msgid "Filter by"
766
  msgstr "סנן על-פי"
767
 
768
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
769
+ msgid "Not in a"
770
+ msgstr ""
771
 
772
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
773
  msgid "All Uncategorized"
774
  msgstr "הכל לא ממויין"
775
 
776
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
777
  msgid "Reset All Filters"
778
  msgstr "אפס את כל המסננים"
779
 
780
+ #: enhanced-media-library.php:535
781
  msgid "Uploaded to post #"
782
  msgstr ""
783
 
784
+ #: enhanced-media-library.php:536
785
  msgid "Based On"
786
  msgstr ""
787
 
788
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
789
  msgid "Media Categories"
790
  msgstr ""
791
 
792
+ #: enhanced-media-library.php:582
793
  msgid "Media Category"
794
  msgstr ""
795
 
796
+ #: enhanced-media-library.php:584
797
  msgid "All Media Categories"
798
  msgstr ""
799
 
800
+ #: enhanced-media-library.php:585
801
  msgid "Edit Media Category"
802
  msgstr ""
803
 
804
+ #: enhanced-media-library.php:586
805
  msgid "View Media Category"
806
  msgstr ""
807
 
808
+ #: enhanced-media-library.php:587
809
  msgid "Update Media Category"
810
  msgstr ""
811
 
812
+ #: enhanced-media-library.php:588
813
  msgid "Add New Media Category"
814
  msgstr ""
815
 
816
+ #: enhanced-media-library.php:589
817
  msgid "New Media Category Name"
818
  msgstr ""
819
 
820
+ #: enhanced-media-library.php:590
821
  msgid "Parent Media Category"
822
  msgstr ""
823
 
824
+ #: enhanced-media-library.php:591
825
  msgid "Parent Media Category:"
826
  msgstr ""
827
 
828
+ #: enhanced-media-library.php:592
829
  msgid "Search Media Categories"
830
  msgstr ""
831
+
832
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
833
+ msgid "Remove"
834
+ msgstr "הסר"
835
+
836
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
837
+ msgid "Deselect"
838
+ msgstr "בטל בחירה"
839
+
840
+ #: pro/core/bulk-edit.php:105
841
+ msgid "Caption this image&hellip;"
842
+ msgstr "תאר תמונה זו&hellip;"
843
+
844
+ #: pro/core/bulk-edit.php:109
845
+ msgid "Describe this video&hellip;"
846
+ msgstr "תאר וידיאו זה&hellip;"
847
+
848
+ #: pro/core/bulk-edit.php:111
849
+ msgid "Describe this audio file&hellip;"
850
+ msgstr "תאר אודיו זה&hellip;"
851
+
852
+ #: pro/core/bulk-edit.php:113
853
+ msgid "Describe this media file&hellip;"
854
+ msgstr "תאר מדיה זו&hellip;"
855
+
856
+ #: pro/core/bulk-edit.php:122
857
+ msgid "Attachments Details"
858
+ msgstr "פרטי הנספח"
859
+
860
+ #: pro/core/bulk-edit.php:175
861
+ msgid "Select All"
862
+ msgstr "בחר הכל"
863
+
864
+ #: pro/core/bulk-edit.php:176
865
+ msgid "Deselect All"
866
+ msgstr "בטל בחירה מהכל"
867
+
868
+ #: pro/core/bulk-edit.php:177
869
+ msgid "Delete Selected"
870
+ msgstr "מחק בחירה"
871
+
872
+ #: pro/core/bulk-edit.php:178
873
+ msgid "Trash Selected"
874
+ msgstr ""
875
+
876
+ #: pro/core/bulk-edit.php:179
877
+ msgid "Restore Selected"
878
+ msgstr ""
879
+
880
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
881
+ msgid "Delete Selected Permanently"
882
+ msgstr ""
883
+
884
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
885
+ msgid "Order By"
886
+ msgstr ""
887
+
888
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
889
+ msgid "Random"
890
+ msgstr ""
891
+
892
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
893
+ msgid "Order"
894
+ msgstr ""
895
+
896
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
897
+ msgid "Limit"
898
+ msgstr ""
899
+
900
+ #: pro/core/options-pages.php:78
901
+ msgid "Your license has been deactivated."
902
+ msgstr ""
903
+
904
+ #: pro/core/options-pages.php:88
905
+ msgid "Please check if your license key is correct and try again."
906
+ msgstr ""
907
+
908
+ #: pro/core/options-pages.php:104
909
+ #, php-format
910
+ msgid ""
911
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
912
+ "authors</a>."
913
+ msgstr ""
914
+
915
+ #: pro/core/options-pages.php:119
916
+ #, php-format
917
+ msgid ""
918
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
919
+ "plugin authors</a>."
920
+ msgstr ""
921
+
922
+ #: pro/core/options-pages.php:130
923
+ msgid "You license has been activated."
924
+ msgstr ""
925
+
926
+ #: pro/core/options-pages.php:184
927
+ #, php-format
928
+ msgid "Auto-assign media items to parent %s %s on upload"
929
+ msgstr ""
930
+
931
+ #: pro/core/options-pages.php:185
932
+ #, php-format
933
+ msgid ""
934
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
935
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
936
+ "assigned %s will not be saved. Media items that are not attached to any %s "
937
+ "will not be affected."
938
+ msgstr ""
939
+
940
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
941
+ msgid "Bulk Edit"
942
+ msgstr "עריכה קבוצתית"
943
+
944
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
945
+ msgid "Turn off 'Save Changes' button"
946
+ msgstr "כבה את כפתור \"שמור שינויים\""
947
+
948
+ #: pro/core/options-pages.php:220
949
+ msgid "Save changes on the fly"
950
+ msgstr "שמור שינויים תוך כדי ביצועם"
951
+
952
+ #: pro/core/options-pages.php:221
953
+ msgid ""
954
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
955
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
956
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
957
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
958
+ "files / taxonomies with this option turned on."
959
+ msgstr ""
960
+
961
+ #: pro/core/options-pages.php:222
962
+ msgid ""
963
+ "Strongly NOT recommended option if you work with more than hundred of files "
964
+ "at a time."
965
+ msgstr "אפשרות לא מומלצת במידה והנך עובד עם למעלה ממאה קבצים בכל פעם."
966
+
967
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
968
+ msgid "License Key"
969
+ msgstr "מספר רישיון"
970
+
971
+ #: pro/core/options-pages.php:273
972
+ #, php-format
973
+ msgid ""
974
+ "To unlock updates please enter your license key below. You can get your "
975
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
976
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
977
+ msgstr ""
978
+
979
+ #: pro/core/options-pages.php:283
980
+ msgid "Activate License"
981
+ msgstr "הפעל רישיון"
982
+
983
+ #: pro/core/options-pages.php:290
984
+ msgid "Your license is active!"
985
+ msgstr "הרישיון שלך פעיל!"
986
+
987
+ #: pro/core/options-pages.php:294
988
+ msgid "Deactivate License"
989
+ msgstr ""
990
+
991
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
992
+ msgid ""
993
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
994
+ "this server&#8217;s configuration. If you continue to have problems, please "
995
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
996
+ msgstr ""
997
+ "שגיאה לא צפויה ארעה. משהו עשוי להיות לא כשורה עם WordPress.org או עם הגדרות "
998
+ "השרת. אם הנך ממשיך לחוות בעיות אנא נסה למצוא פתרון ב-<a href=\"https://"
999
+ "wordpress.org/support/\">פורומי התמיכה</a>."
1000
+
1001
+ #: pro/core/update.php:113
1002
+ msgid ""
1003
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
+ "contact your server administrator.)"
1005
+ msgstr ""
1006
+ "(וורדפרס לא הצליחה ליצור חיבור מאובטח אל WordPress.org . אנא צור קשר עם מנהל "
1007
+ "השרת.)"
1008
+
1009
+ #: pro/core/update.php:181
1010
+ #, php-format
1011
+ msgid ""
1012
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
+ msgstr ""
1016
+
1017
+ #: pro/enhanced-media-library-pro.php:119
1018
+ msgid "ALL files belong to this item"
1019
+ msgstr "כל הקבצים שייכים לפריט זה"
1020
+
1021
+ #: pro/enhanced-media-library-pro.php:120
1022
+ msgid "SOME files belong to this item"
1023
+ msgstr "מספר קבצים שייכים לפריט זה"
1024
+
1025
+ #: pro/enhanced-media-library-pro.php:121
1026
+ msgid "NO files belong to this item"
1027
+ msgstr "אין קבצים השייכים לפריט זה"
1028
+
1029
+ #: pro/enhanced-media-library-pro.php:122
1030
+ msgid "Changes saved."
1031
+ msgstr "השינויים נשמרו."
1032
+
1033
+ #: pro/enhanced-media-library-pro.php:123
1034
+ msgid "Something went wrong."
1035
+ msgstr "משהו השתבש."
1036
+
1037
+ #: pro/enhanced-media-library-pro.php:126
1038
+ msgid "Edit Media Files"
1039
+ msgstr "ערוך קבצי מדיה"
1040
+
1041
+ #: pro/enhanced-media-library-pro.php:129
1042
+ msgid "Selecting"
1043
+ msgstr ""
1044
+
1045
+ #: pro/enhanced-media-library-pro.php:131
1046
+ msgid "You are about to permanently delete all selected items."
1047
+ msgstr ""
1048
+
1049
+ #: pro/enhanced-media-library-pro.php:132
1050
+ msgid "Delete"
1051
+ msgstr ""
1052
+
1053
+ #: pro/enhanced-media-library-pro.php:134
1054
+ msgid "Moving to Trash"
1055
+ msgstr ""
1056
+
1057
+ #: pro/enhanced-media-library-pro.php:135
1058
+ msgid "Restoring"
1059
+ msgstr ""
1060
+
1061
+ #: pro/enhanced-media-library-pro.php:136
1062
+ msgid "Deleting"
1063
+ msgstr ""
1064
+
1065
+ #: pro/enhanced-media-library-pro.php:160
1066
+ msgid "Create a filter-based gallery"
1067
+ msgstr ""
1068
+
1069
+ #: pro/enhanced-media-library-pro.php:161
1070
+ msgid "Create a filter-based playlist"
1071
+ msgstr ""
1072
+
1073
+ #: pro/enhanced-media-library-pro.php:162
1074
+ msgid "Create a filter-based video playlist"
1075
+ msgstr ""
1076
+
1077
+ #: pro/enhanced-media-library-pro.php:240
1078
+ msgid ""
1079
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
+ "will remain intact."
1082
+ msgstr ""
1083
+
1084
+ #: pro/enhanced-media-library-pro.php:240
1085
+ msgid "Return to Plugins"
1086
+ msgstr "חזור לתוספים"
1087
+
1088
+ #: pro/enhanced-media-library-pro.php:291
1089
+ msgid ""
1090
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
+ "be active. Please network deactivate and delete the free versions of the "
1093
+ "plugin. All your data will remain intact."
1094
+ msgstr ""
1095
+
1096
+ #: pro/enhanced-media-library-pro.php:308
1097
+ msgid ""
1098
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
+ "be active. Please deactivate and delete the free version of the plugin. All "
1100
+ "your data will remain intact."
1101
+ msgstr ""
1102
+
1103
+ #: pro/enhanced-media-library-pro.php:324
1104
+ msgid ""
1105
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
+ "version to be active. Please deactivate (or network deactivate) and delete "
1108
+ "the free version of the plugin for this site. All your data will remail "
1109
+ "intact."
1110
+ msgstr ""
1111
+
1112
+ #. Plugin Name of the plugin/theme
1113
+ msgid "Enhanced Media Library PRO"
1114
+ msgstr ""
1115
+
1116
+ #. Plugin URI of the plugin/theme
1117
+ #. Author URI of the plugin/theme
1118
+ msgid "http://wpUXsolutions.com"
1119
+ msgstr ""
1120
+
1121
+ #. Description of the plugin/theme
1122
+ msgid ""
1123
+ "This plugin will be handy for those who need to manage a lot of media files."
1124
+ msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם קבצים רבים."
1125
+
1126
+ #. Author of the plugin/theme
1127
+ msgid "wpUXsolutions"
1128
+ msgstr ""
1129
+
1130
+ #~ msgid "Not in"
1131
+ #~ msgstr "לא ב-"
languages/enhanced-media-library-it_IT.mo CHANGED
Binary file
languages/enhanced-media-library-it_IT.po CHANGED
@@ -1,25 +1,20 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-08-09 17:45+0300\n"
7
- "PO-Revision-Date: \n"
 
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: \n"
10
  "Language: it_IT\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #: core/mime-types.php:30
25
  msgid "MIME Types settings restored."
@@ -36,13 +31,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:236
40
- #: core/options-pages.php:1003 core/options-pages.php:1128
41
- #: core/options-pages.php:1451 core/options-pages.php:1651
42
  msgid "Media Settings"
43
  msgstr "Impostazioni Media"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "Libreria Media"
48
 
@@ -50,7 +45,7 @@ msgstr "Libreria Media"
50
  msgid "Taxonomies"
51
  msgstr "Tassonomie"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "Tipi MIME"
56
 
@@ -58,25 +53,25 @@ msgstr "Tipi MIME"
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
60
 
61
- #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr "Generale"
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
  msgid "Media Taxonomies"
67
  msgstr "Tassonomie Media"
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
74
 
75
- #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr "Dimensioni immagine"
78
 
79
- #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
@@ -84,135 +79,135 @@ msgstr ""
84
  "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
85
  "quando si aggiunge un'immagine alla Libreria Media."
86
 
87
- #: core/options-pages.php:252
88
  msgid "Thumbnail size"
89
  msgstr "Dimensioni della miniatura"
90
 
91
- #: core/options-pages.php:254
92
  msgid "Width"
93
  msgstr "Larghezza"
94
 
95
- #: core/options-pages.php:256
96
  msgid "Height"
97
  msgstr "Altezza"
98
 
99
- #: core/options-pages.php:259
100
  msgid ""
101
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
102
  msgstr ""
103
  "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
104
  "proporzionali)"
105
 
106
- #: core/options-pages.php:264 core/options-pages.php:265
107
  msgid "Medium size"
108
  msgstr "Dimensioni medie"
109
 
110
- #: core/options-pages.php:266 core/options-pages.php:276
111
  msgid "Max Width"
112
  msgstr "Larghezza massima"
113
 
114
- #: core/options-pages.php:268 core/options-pages.php:278
115
  msgid "Max Height"
116
  msgstr "Altezza massima"
117
 
118
- #: core/options-pages.php:274 core/options-pages.php:275
119
  msgid "Large size"
120
  msgstr "Dimensioni grandi"
121
 
122
- #: core/options-pages.php:291
123
  msgid "Embeds"
124
  msgstr "Incorporamenti"
125
 
126
- #: core/options-pages.php:298
127
  msgid "Uploading Files"
128
  msgstr "Caricamento file"
129
 
130
- #: core/options-pages.php:305
131
  msgid "Store uploads in this folder"
132
  msgstr "Caricamento file"
133
 
134
- #: core/options-pages.php:309
135
  #, php-format
136
  msgid "Default is %s"
137
  msgstr "Il valore di default &egrave; %s"
138
 
139
- #: core/options-pages.php:315
140
  msgid "Full URL path to files"
141
  msgstr "URL completo dei file"
142
 
143
- #: core/options-pages.php:317
144
  msgid "Configuring this is optional. By default, it should be blank."
145
  msgstr ""
146
  "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
147
  "essere vuoto."
148
 
149
- #: core/options-pages.php:325
150
  msgid "Organize my uploads into month- and year-based folders"
151
  msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
152
 
153
- #: core/options-pages.php:397 core/options-pages.php:1173
154
- #: core/options-pages.php:1188 core/options-pages.php:1251
155
- #: core/options-pages.php:1320
156
  msgid "Edit"
157
  msgstr "Modifica"
158
 
159
- #: core/options-pages.php:398
160
  msgid "Close"
161
  msgstr "Chiudi"
162
 
163
- #: core/options-pages.php:399 core/options-pages.php:1189
164
- #: core/options-pages.php:1252
165
  msgid "View"
166
  msgstr "Visualizza"
167
 
168
- #: core/options-pages.php:400 core/options-pages.php:1190
169
- #: core/options-pages.php:1253
170
  msgid "Update"
171
  msgstr "Aggiorna"
172
 
173
- #: core/options-pages.php:401 core/options-pages.php:1191
174
- #: core/options-pages.php:1254
175
  msgid "Add New"
176
  msgstr "Aggiungi nuovo"
177
 
178
- #: core/options-pages.php:402 core/options-pages.php:1192
179
- #: core/options-pages.php:1255
180
  msgid "New"
181
  msgstr "Nuovo"
182
 
183
- #: core/options-pages.php:403
184
  msgid "Name"
185
  msgstr "Nome"
186
 
187
- #: core/options-pages.php:404 core/options-pages.php:1193
188
- #: core/options-pages.php:1256
189
  msgid "Parent"
190
  msgstr "Genitore"
191
 
192
- #: core/options-pages.php:405 core/options-pages.php:641
193
- #: core/options-pages.php:1187 core/options-pages.php:1250
194
- #: core/taxonomies.php:348 enhanced-media-library.php:485
195
  msgid "All"
196
  msgstr "Tutto"
197
 
198
- #: core/options-pages.php:406 core/options-pages.php:1194
199
- #: core/options-pages.php:1257
200
  msgid "Search"
201
  msgstr "Cerca"
202
 
203
- #: core/options-pages.php:408 core/options-pages.php:1238
204
  msgid "New Taxonomy"
205
  msgstr "Nuova tassonomia"
206
 
207
- #: core/options-pages.php:410
208
  msgid "Remove Taxonomy"
209
  msgstr "Elimina tassonomia"
210
 
211
- #: core/options-pages.php:411
212
  msgid "Taxonomy will be removed."
213
  msgstr "La tassonomia verr&agrave; rimossa."
214
 
215
- #: core/options-pages.php:412
216
  msgid ""
217
  "Taxonomy terms (categories) will remain intact in the database. If you "
218
  "create a taxonomy with the same name in the future, its terms (categories) "
@@ -222,102 +217,103 @@ msgstr ""
222
  "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
223
  "termini (categorie) saranno nuovamente disponibili."
224
 
225
- #: core/options-pages.php:413
226
  msgid "Media items will remain intact."
227
  msgstr "Gli elementi Media rimarranno invariati."
228
 
229
- #: core/options-pages.php:414
230
  msgid "Are you still sure?"
231
  msgstr "Sei ancora sicuro?"
232
 
233
- #: core/options-pages.php:415
234
  msgid "Yes, remove taxonomy"
235
  msgstr "S&igrave;, rimuovi la tassonomia"
236
 
237
- #: core/options-pages.php:417
238
  msgid "Duplicate"
239
  msgstr "Doppione"
240
 
241
- #: core/options-pages.php:418
242
  msgid "Taxonomy with the same name already exists. Please chose other one."
243
  msgstr ""
244
  "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
245
  "altro."
246
 
247
- #: core/options-pages.php:420
248
  msgid "Empty Fields"
249
  msgstr "Campi vuoti"
250
 
251
- #: core/options-pages.php:421
252
  msgid "Please choose Singular and Plural names for all new taxomonies."
253
  msgstr ""
254
  "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
255
  "tassonomie."
256
 
257
- #: core/options-pages.php:422
258
  msgid "Please choose Singular name for all new taxomonies."
259
  msgstr ""
260
 
261
- #: core/options-pages.php:423
262
  msgid "Please choose Plural Name for all new taxomonies."
263
  msgstr "Si prega di scegliere il nome plurale per tutte le nuove tassonomie."
264
 
265
- #: core/options-pages.php:425
266
  msgid "Ok"
267
  msgstr "Ok"
268
 
269
- #: core/options-pages.php:426 core/options-pages.php:431
270
- #: core/options-pages.php:475 core/options-pages.php:520
 
271
  msgid "Cancel"
272
  msgstr "Annulla"
273
 
274
- #: core/options-pages.php:428
275
  msgid "Synchronize Now"
276
  msgstr "Sincronizza ora"
277
 
278
- #: core/options-pages.php:429 core/options-pages.php:517
279
  msgid "This operation cannot be canceled! Are you still sure?"
280
  msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
281
 
282
- #: core/options-pages.php:430
283
  msgid "Synchronize"
284
  msgstr "Sincronizza"
285
 
286
- #: core/options-pages.php:432
287
  msgid "Synchronizing..."
288
  msgstr "Sincronizzazione..."
289
 
290
- #: core/options-pages.php:470 core/options-pages.php:1575
291
  msgid "Restore WordPress default MIME Types"
292
  msgstr "Ripristina i tipi MIME predefiniti di WordPress"
293
 
294
- #: core/options-pages.php:471
295
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
296
  msgstr ""
297
  "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
298
  "questa operazione."
299
 
300
- #: core/options-pages.php:472
301
  msgid "Restore Defaults"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:473
305
  msgid "Restoring..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:477
309
  msgid "Please fill into all fields."
310
  msgstr "Si prega di compilare in tutti i campi."
311
 
312
- #: core/options-pages.php:478
313
  msgid "Duplicate extensions or MIME types. Please chose other one."
314
  msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
315
 
316
- #: core/options-pages.php:515 core/options-pages.php:632
317
  msgid "Complete Cleanup"
318
  msgstr "Pulizia completa"
319
 
320
- #: core/options-pages.php:516
321
  msgid ""
322
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
323
  "plugin data</strong> from the database including backups."
@@ -325,23 +321,23 @@ msgstr ""
325
  "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
326
  "del plugin</strong> dal database inclusi i backup."
327
 
328
- #: core/options-pages.php:518
329
  msgid "Yes, delete all data"
330
  msgstr "S&igrave;, cancella tutti i dati"
331
 
332
- #: core/options-pages.php:519
333
  msgid "Cleaning..."
334
  msgstr "Pulizia in corso..."
335
 
336
- #: core/options-pages.php:550
337
  msgid "Enhanced Media Library Settings"
338
  msgstr "Impostazioni Enhanced Media Library"
339
 
340
- #: core/options-pages.php:560
341
  msgid "Export"
342
  msgstr "Esporta"
343
 
344
- #: core/options-pages.php:564
345
  msgid ""
346
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
347
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -353,15 +349,15 @@ msgstr ""
353
  "esportate in un file di configurazione. Questo consente di importare "
354
  "facilmente la configurazione in un altro sito web."
355
 
356
- #: core/options-pages.php:569
357
  msgid "Export Plugin Settings"
358
  msgstr "Esporta le impostazioni del plugin"
359
 
360
- #: core/options-pages.php:579
361
  msgid "Import"
362
  msgstr "Importa"
363
 
364
- #: core/options-pages.php:583
365
  msgid ""
366
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
367
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -374,7 +370,7 @@ msgstr ""
374
  "mediante l'esportazione da un altro sito web utilizzando il pulsante Esporta "
375
  "sopra."
376
 
377
- #: core/options-pages.php:584
378
  msgid ""
379
  "All plugin settings will be overridden by the import. You will have a chance "
380
  "to restore current data from an automatic backup in case you are not "
@@ -385,60 +381,60 @@ msgstr ""
385
  "automatico nel caso in cui non sarete soddisfatti del risultato "
386
  "dell'importazione."
387
 
388
- #: core/options-pages.php:591
389
  msgid "Import Plugin Settings"
390
  msgstr "Importa le impostazioni del plugin"
391
 
392
- #: core/options-pages.php:603
393
  msgid "Restore"
394
  msgstr "Ripristina"
395
 
396
- #: core/options-pages.php:609
397
  msgid "No backup available at the moment."
398
  msgstr "Nessun backup disponibile attualmente."
399
 
400
- #: core/options-pages.php:611
401
  msgid "Backup will be created automatically before any import operation."
402
  msgstr ""
403
  "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
404
  "di importazione."
405
 
406
- #: core/options-pages.php:615
407
  msgid ""
408
  "The backup has been automatically created before the latest import operation."
409
  msgstr ""
410
  "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
411
  "di importazione."
412
 
413
- #: core/options-pages.php:619
414
  msgid "Restore Settings from the Backup"
415
  msgstr "Ripristina le impostazioni dal backup"
416
 
417
- #: core/options-pages.php:639
418
  msgid "What will be deleted:"
419
  msgstr "Cosa sar&agrave; cancellato:"
420
 
421
- #: core/options-pages.php:644
422
  msgid "All plugin options"
423
  msgstr "Tutte le opzioni del plugin"
424
 
425
- #: core/options-pages.php:645
426
  msgid "All plugin backups stored in database"
427
  msgstr "Tutti i backup del plugin salvati nel database"
428
 
429
- #: core/options-pages.php:649
430
  msgid "What will remain intact:"
431
  msgstr "Cosa rester&agrave; invariato:"
432
 
433
- #: core/options-pages.php:650
434
  msgid "All media items"
435
  msgstr "Tutti gli elementi media"
436
 
437
- #: core/options-pages.php:651
438
  msgid "All taxonomies not listed above"
439
  msgstr " Tutte le tassonomie non elencate sopra"
440
 
441
- #: core/options-pages.php:654
442
  msgid ""
443
  "The plugin cannot delete itself because of security reason. Please delete it "
444
  "manually from plugin list after cleanup."
@@ -446,7 +442,7 @@ msgstr ""
446
  "Il plugin non pu&ograve; eliminare se stesso per motivi di sicurezza. Si "
447
  "prega di eliminarlo manualmente dalla lista plugin dopo la pulizia."
448
 
449
- #: core/options-pages.php:656
450
  msgid ""
451
  "If you are not sure about this operation please create a backup of your "
452
  "database prior to cleanup!"
@@ -454,73 +450,78 @@ msgstr ""
454
  "Se non siete sicuri su questa operazione si prega di creare un backup del "
455
  "vostro database prima di eseguire la pulizia!"
456
 
457
- #: core/options-pages.php:662
458
  msgid "Delete All Data & Deactivate"
459
  msgstr "Elimina tutti i dati e disattiva il plugin"
460
 
461
- #: core/options-pages.php:762
462
  msgid "Please upload a file to import settings."
463
  msgstr "Si prega di caricare un file da cui importare le impostazioni."
464
 
465
- #: core/options-pages.php:788
466
  msgid "Plugin settings imported."
467
  msgstr "Impstazioni del plugin importate."
468
 
469
- #: core/options-pages.php:835
470
  msgid "Plugin settings restored from the backup."
471
  msgstr "Impostazioni del plugin ripristinate dal backup."
472
 
473
- #: core/options-pages.php:1024
474
  msgid "Media Items Order"
475
  msgstr "Ordinamento elementi media"
476
 
477
- #: core/options-pages.php:1031
478
  msgid "Order media items by"
479
  msgstr "Ordina gli elementi media per"
480
 
481
- #: core/options-pages.php:1034
 
482
  msgid "Date"
483
  msgstr "Data"
484
 
485
- #: core/options-pages.php:1035
 
486
  msgid "Title"
487
  msgstr "Titolo"
488
 
489
- #: core/options-pages.php:1036
 
490
  msgid "Custom Order"
491
  msgstr "Ordinamento personalizzato"
492
 
493
- #: core/options-pages.php:1038 core/options-pages.php:1050
494
  msgid "For media library and media popups"
495
  msgstr "Per la libreria media e i pop-up media"
496
 
497
- #: core/options-pages.php:1039
498
  msgid "Option allows to change order by drag and drop with Custom Order value."
499
  msgstr ""
500
  "Questa opzione permette di modificare l'ordine con il drag &amp; drop con il "
501
  "valore dell'ordinamento personalizzato."
502
 
503
- #: core/options-pages.php:1044
504
  msgid "Sort order"
505
  msgstr "Ordinamento"
506
 
507
- #: core/options-pages.php:1047
 
508
  msgid "Ascending"
509
  msgstr "Ascendente"
510
 
511
- #: core/options-pages.php:1048
 
512
  msgid "Descending"
513
  msgstr "Discendente"
514
 
515
- #: core/options-pages.php:1063
516
  msgid "Media Shortcodes"
517
  msgstr "Shortcode Media"
518
 
519
- #: core/options-pages.php:1070 core/options-pages.php:1073
520
  msgid "Enhanced media shortcodes"
521
  msgstr "Shortcode media avanzati"
522
 
523
- #: core/options-pages.php:1074
524
  msgid ""
525
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
526
  "upload date, and media items number limit"
@@ -528,19 +529,19 @@ msgstr ""
528
  "Migliora gli shortcode media di WordPress in modo da poter usare le "
529
  "tassonomie Media, la data di caricamento e il limite di elementi media"
530
 
531
- #: core/options-pages.php:1075
532
  msgid "Gallery example:"
533
  msgstr "Esempio di galleria:"
534
 
535
- #: core/options-pages.php:1076
536
  msgid "Audio playlist example:"
537
  msgstr "Esempio di playlist audio:"
538
 
539
- #: core/options-pages.php:1077
540
  msgid "Video playlist example:"
541
  msgstr "Esempio di playlist video:"
542
 
543
- #: core/options-pages.php:1079
544
  #, php-format
545
  msgid ""
546
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
@@ -548,12 +549,12 @@ msgstr ""
548
  "%sAttenzione:%s &Egrave; possibile che ci sia Incompatibilit&agrave; con "
549
  "altri plugin gallery o temi!"
550
 
551
- #: core/options-pages.php:1081
552
  #, php-format
553
  msgid "%sLearn more%s."
554
  msgstr "%sPer saperne di pi&ugrave;%s."
555
 
556
- #: core/options-pages.php:1083
557
  #, php-format
558
  msgid ""
559
  "Please check out your gallery front-end and back-end functionality once this "
@@ -564,243 +565,243 @@ msgstr ""
564
  "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
565
  "trovate un problema si prega di informare gli autori del plugin %s or %s."
566
 
567
- #: core/options-pages.php:1153 core/options-pages.php:1300
568
  msgid "Assign following taxonomies to Media Library:"
569
  msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
570
 
571
- #: core/options-pages.php:1172 core/options-pages.php:1238
572
- #: core/options-pages.php:1319
573
  msgid "Assign Taxonomy"
574
  msgstr "Assegna tassonomia"
575
 
576
- #: core/options-pages.php:1173 core/options-pages.php:1320
577
  msgid "Edit Taxonomy"
578
  msgstr "Modifica tassonomia"
579
 
580
- #: core/options-pages.php:1177 core/options-pages.php:1240
581
  msgid "Delete Taxonomy"
582
  msgstr "Elimina tassonomia"
583
 
584
- #: core/options-pages.php:1182 core/options-pages.php:1245
585
  msgid "Labels"
586
  msgstr "Etichette"
587
 
588
- #: core/options-pages.php:1184 core/options-pages.php:1247
589
  msgid "Singular"
590
  msgstr "Singolare"
591
 
592
- #: core/options-pages.php:1185 core/options-pages.php:1248
593
  msgid "Plural"
594
  msgstr "Plurale"
595
 
596
- #: core/options-pages.php:1186 core/options-pages.php:1249
597
  msgid "Menu Name"
598
  msgstr "Nome menu"
599
 
600
- #: core/options-pages.php:1199 core/options-pages.php:1222
601
- #: core/options-pages.php:1262 core/options-pages.php:1323
602
  msgid "Settings"
603
  msgstr "Impostazioni"
604
 
605
- #: core/options-pages.php:1201 core/options-pages.php:1264
606
  msgid "Taxonomy Name"
607
  msgstr "Nome tassonomia"
608
 
609
- #: core/options-pages.php:1202 core/options-pages.php:1265
610
  msgid "Hierarchical"
611
  msgstr "Gerarchico"
612
 
613
- #: core/options-pages.php:1203 core/options-pages.php:1266
614
  msgid "Column for List View"
615
  msgstr "Colonna nella visualizzazione a lista"
616
 
617
- #: core/options-pages.php:1204 core/options-pages.php:1224
618
- #: core/options-pages.php:1267 core/options-pages.php:1325
619
  msgid "Filter for List View"
620
  msgstr "Filtro per la visualizzazione a lista"
621
 
622
- #: core/options-pages.php:1205 core/options-pages.php:1225
623
- #: core/options-pages.php:1268 core/options-pages.php:1326
624
  msgid "Filter for Grid View / Media Popup"
625
  msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
626
 
627
- #: core/options-pages.php:1206 core/options-pages.php:1226
628
- #: core/options-pages.php:1269 core/options-pages.php:1327
629
  msgid "Edit in Media Popup"
630
  msgstr "Modifica nel pop-up media"
631
 
632
- #: core/options-pages.php:1207 core/options-pages.php:1270
633
  msgid "Show in Nav Menu"
634
  msgstr "Mostra nel menu di navigazione"
635
 
636
- #: core/options-pages.php:1208 core/options-pages.php:1271
637
  msgid "Remember Terms Order (sort)"
638
  msgstr "Ricorda l'ordinamento dei termini (sort)"
639
 
640
- #: core/options-pages.php:1209 core/options-pages.php:1272
641
  msgid "Show in REST"
642
  msgstr "Mostra in REST"
643
 
644
- #: core/options-pages.php:1210 core/options-pages.php:1273
645
  msgid "Rewrite Slug"
646
  msgstr "Rewrite per lo slug"
647
 
648
- #: core/options-pages.php:1211 core/options-pages.php:1274
649
  msgid "Slug with Front"
650
  msgstr "Slug (with_front)"
651
 
652
- #: core/options-pages.php:1286
653
  msgid "Add New Taxonomy"
654
  msgstr "Aggiungi nuova tassonomia"
655
 
656
- #: core/options-pages.php:1296
657
  msgid "Non-Media Taxonomies"
658
  msgstr "Tassonomie non Media"
659
 
660
- #: core/options-pages.php:1357
661
  msgid "Options"
662
  msgstr "Opzioni"
663
 
664
- #: core/options-pages.php:1367 core/options-pages.php:1370
665
  msgid "Taxonomy archive pages"
666
  msgstr "Pagine di archivio della tassonomia"
667
 
668
- #: core/options-pages.php:1371
669
  msgid "Turn on media taxonomy archive pages on the front-end"
670
  msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
671
 
672
- #: core/options-pages.php:1372
673
  msgid ""
674
  "Re-save your permalink settings after this option change to make it work."
675
  msgstr ""
676
  "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
677
  "opzione affinch&egrave; i cambiamenti abbiano effetto."
678
 
679
- #: core/options-pages.php:1378 core/options-pages.php:1381
680
  msgid "Assign all like hierarchical"
681
  msgstr "Considera tutte le tassonomie come gerarchiche"
682
 
683
- #: core/options-pages.php:1382
684
  msgid ""
685
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
686
  msgstr ""
687
  "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
688
  "a griglia / pop-up media"
689
 
690
- #: core/options-pages.php:1388 core/options-pages.php:1391
691
  msgid "Force filters"
692
  msgstr "Forza i filtri"
693
 
694
- #: core/options-pages.php:1392
695
  msgid "Show media filters for ANY Media Popup"
696
  msgstr "Vistualizza i filtri media per tutti i pop-up media"
697
 
698
- #: core/options-pages.php:1393
699
  msgid "Try this if filters are not shown for third-party plugins or themes."
700
  msgstr ""
701
  "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
702
  "di terze parti."
703
 
704
- #: core/options-pages.php:1399 core/options-pages.php:1402
705
  msgid "Show count"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1403
709
  msgid "Show item count per category for media filters"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1457
713
  msgid "Add New MIME Type"
714
  msgstr "Aggiungi un nuovo tipo MIME"
715
 
716
- #: core/options-pages.php:1477 core/options-pages.php:1532
717
  msgid "Extension"
718
  msgstr "Estensione"
719
 
720
- #: core/options-pages.php:1478 core/options-pages.php:1533
721
  msgid "MIME Type"
722
  msgstr "Tipo MIME"
723
 
724
- #: core/options-pages.php:1479 core/options-pages.php:1534
725
  msgid "Singular Label"
726
  msgstr "Etichetta per il singolare"
727
 
728
- #: core/options-pages.php:1480 core/options-pages.php:1535
729
  msgid "Plural Label"
730
  msgstr "Etichetta per il plurale"
731
 
732
- #: core/options-pages.php:1481 core/options-pages.php:1511
733
- #: core/options-pages.php:1524 core/options-pages.php:1536
734
  msgid "Add Filter"
735
  msgstr "Aggiungi filtro"
736
 
737
- #: core/options-pages.php:1482 core/options-pages.php:1512
738
- #: core/options-pages.php:1525 core/options-pages.php:1537
739
  msgid "Allow Upload"
740
  msgstr "Permetti upload"
741
 
742
- #: core/options-pages.php:1513 core/options-pages.php:1526
743
  msgid "Delete MIME Type"
744
  msgstr "Elimina il tipo MIME"
745
 
746
- #: core/options-pages.php:1573
747
  msgid "Save Changes"
748
  msgstr "Salva le modifiche"
749
 
750
- #: core/options-pages.php:1603
751
  msgid "Changelog"
752
  msgstr "Changelog"
753
 
754
- #: core/options-pages.php:1604
755
  msgid "What's new in"
756
  msgstr "Cosa c'&egrave; di nuovo nella"
757
 
758
- #: core/options-pages.php:1604
759
  msgid "version"
760
  msgstr "versione"
761
 
762
- #: core/options-pages.php:1607
763
  msgid "More features under the hood"
764
  msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
765
 
766
- #: core/options-pages.php:1609
767
  msgid "Support"
768
  msgstr "Supporto"
769
 
770
- #: core/options-pages.php:1610
771
  msgid "Feel free to ask for help on"
772
  msgstr "Sentitevi liberi di chiedere aiuto su"
773
 
774
- #: core/options-pages.php:1610
775
  msgid "Support is free for both versions of the plugin."
776
  msgstr ""
777
  "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
778
 
779
- #: core/options-pages.php:1612
780
  msgid "Plugin rating"
781
  msgstr "Valutazione plugin"
782
 
783
- #: core/options-pages.php:1613
784
  msgid "Please"
785
  msgstr "Prego"
786
 
787
- #: core/options-pages.php:1613
788
  msgid "vote for the plugin"
789
  msgstr "vota il plugin"
790
 
791
- #: core/options-pages.php:1613
792
  msgid "Thanks!"
793
  msgstr "Grazie!"
794
 
795
- #: core/options-pages.php:1615
796
  msgid "Other plugins you may find useful"
797
  msgstr "Altri plugin che potresti trovare utili"
798
 
799
- #: core/options-pages.php:1654
800
  msgid "Utility"
801
  msgstr "Utilit&agrave;"
802
 
803
- #: core/options-pages.php:1677
804
  msgid "Vote!"
805
  msgstr "Vota!"
806
 
@@ -812,71 +813,422 @@ msgstr "Impostazioni Tassonomie Media salvate."
812
  msgid "Media Library settings saved."
813
  msgstr "Impostazioni Libreria Media salvate."
814
 
815
- #: core/taxonomies.php:341 core/taxonomies.php:347
816
- #: enhanced-media-library.php:484
817
  msgid "Filter by"
818
  msgstr "Filtra per"
819
 
820
- #: core/taxonomies.php:349 enhanced-media-library.php:486
821
- msgid "Not in"
822
  msgstr "Non in"
823
 
824
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
825
  msgid "All Uncategorized"
826
  msgstr "Tutti gli elementi non classificati"
827
 
828
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
829
  msgid "Reset All Filters"
830
  msgstr "Reimposta tutti i filtri"
831
 
832
- #: enhanced-media-library.php:517
833
  msgid "Uploaded to post #"
834
  msgstr "Caricato nel post #"
835
 
836
- #: enhanced-media-library.php:518
837
  msgid "Based On"
838
  msgstr "Basato su"
839
 
840
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
841
  msgid "Media Categories"
842
  msgstr "Categorie Media"
843
 
844
- #: enhanced-media-library.php:564
845
  msgid "Media Category"
846
  msgstr "Categoria Media"
847
 
848
- #: enhanced-media-library.php:566
849
  msgid "All Media Categories"
850
  msgstr "Tutte le categorie Media"
851
 
852
- #: enhanced-media-library.php:567
853
  msgid "Edit Media Category"
854
  msgstr "Modifica categoria Media"
855
 
856
- #: enhanced-media-library.php:568
857
  msgid "View Media Category"
858
  msgstr "Visualizza categoria Media"
859
 
860
- #: enhanced-media-library.php:569
861
  msgid "Update Media Category"
862
  msgstr "Aggiorna categoria Media"
863
 
864
- #: enhanced-media-library.php:570
865
  msgid "Add New Media Category"
866
  msgstr "Aggiungi nuova categoria Media"
867
 
868
- #: enhanced-media-library.php:571
869
  msgid "New Media Category Name"
870
  msgstr "Nome della nuova categoria Media"
871
 
872
- #: enhanced-media-library.php:572
873
  msgid "Parent Media Category"
874
  msgstr "Categoria media genitore"
875
 
876
- #: enhanced-media-library.php:573
877
  msgid "Parent Media Category:"
878
  msgstr "Categoria media genitore:"
879
 
880
- #: enhanced-media-library.php:574
881
  msgid "Search Media Categories"
882
  msgstr "Cerca nella categoria Media"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:40+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:40+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Italian (Italy)\n"
9
  "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160610-1\n"
 
 
 
 
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
31
  msgstr[0] " <span class=\"count\">(%s)</span>"
32
  msgstr[1] " <span class=\"count\">(%s)</span>"
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:239
35
+ #: core/options-pages.php:1006 core/options-pages.php:1130
36
+ #: core/options-pages.php:1455 core/options-pages.php:1655
37
  msgid "Media Settings"
38
  msgstr "Impostazioni Media"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Libreria Media"
43
 
45
  msgid "Taxonomies"
46
  msgstr "Tassonomie"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "Tipi MIME"
51
 
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
+ #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr "Generale"
59
 
60
+ #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Tassonomie Media"
63
 
64
+ #: core/options-pages.php:236 core/options-pages.php:548
65
+ #: core/options-pages.php:1002 core/options-pages.php:1127
66
+ #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
69
 
70
+ #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr "Dimensioni immagine"
73
 
74
+ #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
79
  "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
80
  "quando si aggiunge un'immagine alla Libreria Media."
81
 
82
+ #: core/options-pages.php:255
83
  msgid "Thumbnail size"
84
  msgstr "Dimensioni della miniatura"
85
 
86
+ #: core/options-pages.php:257
87
  msgid "Width"
88
  msgstr "Larghezza"
89
 
90
+ #: core/options-pages.php:259
91
  msgid "Height"
92
  msgstr "Altezza"
93
 
94
+ #: core/options-pages.php:262
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
  "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
99
  "proporzionali)"
100
 
101
+ #: core/options-pages.php:267 core/options-pages.php:268
102
  msgid "Medium size"
103
  msgstr "Dimensioni medie"
104
 
105
+ #: core/options-pages.php:269 core/options-pages.php:279
106
  msgid "Max Width"
107
  msgstr "Larghezza massima"
108
 
109
+ #: core/options-pages.php:271 core/options-pages.php:281
110
  msgid "Max Height"
111
  msgstr "Altezza massima"
112
 
113
+ #: core/options-pages.php:277 core/options-pages.php:278
114
  msgid "Large size"
115
  msgstr "Dimensioni grandi"
116
 
117
+ #: core/options-pages.php:294
118
  msgid "Embeds"
119
  msgstr "Incorporamenti"
120
 
121
+ #: core/options-pages.php:301
122
  msgid "Uploading Files"
123
  msgstr "Caricamento file"
124
 
125
+ #: core/options-pages.php:308
126
  msgid "Store uploads in this folder"
127
  msgstr "Caricamento file"
128
 
129
+ #: core/options-pages.php:312
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr "Il valore di default &egrave; %s"
133
 
134
+ #: core/options-pages.php:318
135
  msgid "Full URL path to files"
136
  msgstr "URL completo dei file"
137
 
138
+ #: core/options-pages.php:320
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
  "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
142
  "essere vuoto."
143
 
144
+ #: core/options-pages.php:328
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
147
 
148
+ #: core/options-pages.php:400 core/options-pages.php:1175
149
+ #: core/options-pages.php:1190 core/options-pages.php:1253
150
+ #: core/options-pages.php:1325
151
  msgid "Edit"
152
  msgstr "Modifica"
153
 
154
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
155
  msgid "Close"
156
  msgstr "Chiudi"
157
 
158
+ #: core/options-pages.php:402 core/options-pages.php:1191
159
+ #: core/options-pages.php:1254
160
  msgid "View"
161
  msgstr "Visualizza"
162
 
163
+ #: core/options-pages.php:403 core/options-pages.php:1192
164
+ #: core/options-pages.php:1255
165
  msgid "Update"
166
  msgstr "Aggiorna"
167
 
168
+ #: core/options-pages.php:404 core/options-pages.php:1193
169
+ #: core/options-pages.php:1256
170
  msgid "Add New"
171
  msgstr "Aggiungi nuovo"
172
 
173
+ #: core/options-pages.php:405 core/options-pages.php:1194
174
+ #: core/options-pages.php:1257
175
  msgid "New"
176
  msgstr "Nuovo"
177
 
178
+ #: core/options-pages.php:406
179
  msgid "Name"
180
  msgstr "Nome"
181
 
182
+ #: core/options-pages.php:407 core/options-pages.php:1195
183
+ #: core/options-pages.php:1258
184
  msgid "Parent"
185
  msgstr "Genitore"
186
 
187
+ #: core/options-pages.php:408 core/options-pages.php:644
188
+ #: core/options-pages.php:1189 core/options-pages.php:1252
189
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
190
  msgid "All"
191
  msgstr "Tutto"
192
 
193
+ #: core/options-pages.php:409 core/options-pages.php:1196
194
+ #: core/options-pages.php:1259
195
  msgid "Search"
196
  msgstr "Cerca"
197
 
198
+ #: core/options-pages.php:411 core/options-pages.php:1240
199
  msgid "New Taxonomy"
200
  msgstr "Nuova tassonomia"
201
 
202
+ #: core/options-pages.php:413
203
  msgid "Remove Taxonomy"
204
  msgstr "Elimina tassonomia"
205
 
206
+ #: core/options-pages.php:414
207
  msgid "Taxonomy will be removed."
208
  msgstr "La tassonomia verr&agrave; rimossa."
209
 
210
+ #: core/options-pages.php:415
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
217
  "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
218
  "termini (categorie) saranno nuovamente disponibili."
219
 
220
+ #: core/options-pages.php:416
221
  msgid "Media items will remain intact."
222
  msgstr "Gli elementi Media rimarranno invariati."
223
 
224
+ #: core/options-pages.php:417
225
  msgid "Are you still sure?"
226
  msgstr "Sei ancora sicuro?"
227
 
228
+ #: core/options-pages.php:418
229
  msgid "Yes, remove taxonomy"
230
  msgstr "S&igrave;, rimuovi la tassonomia"
231
 
232
+ #: core/options-pages.php:420
233
  msgid "Duplicate"
234
  msgstr "Doppione"
235
 
236
+ #: core/options-pages.php:421
237
  msgid "Taxonomy with the same name already exists. Please chose other one."
238
  msgstr ""
239
  "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
240
  "altro."
241
 
242
+ #: core/options-pages.php:423
243
  msgid "Empty Fields"
244
  msgstr "Campi vuoti"
245
 
246
+ #: core/options-pages.php:424
247
  msgid "Please choose Singular and Plural names for all new taxomonies."
248
  msgstr ""
249
  "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
250
  "tassonomie."
251
 
252
+ #: core/options-pages.php:425
253
  msgid "Please choose Singular name for all new taxomonies."
254
  msgstr ""
255
 
256
+ #: core/options-pages.php:426
257
  msgid "Please choose Plural Name for all new taxomonies."
258
  msgstr "Si prega di scegliere il nome plurale per tutte le nuove tassonomie."
259
 
260
+ #: core/options-pages.php:428
261
  msgid "Ok"
262
  msgstr "Ok"
263
 
264
+ #: core/options-pages.php:429 core/options-pages.php:434
265
+ #: core/options-pages.php:478 core/options-pages.php:523
266
+ #: pro/enhanced-media-library-pro.php:133
267
  msgid "Cancel"
268
  msgstr "Annulla"
269
 
270
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
271
  msgid "Synchronize Now"
272
  msgstr "Sincronizza ora"
273
 
274
+ #: core/options-pages.php:432 core/options-pages.php:520
275
  msgid "This operation cannot be canceled! Are you still sure?"
276
  msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
277
 
278
+ #: core/options-pages.php:433
279
  msgid "Synchronize"
280
  msgstr "Sincronizza"
281
 
282
+ #: core/options-pages.php:435
283
  msgid "Synchronizing..."
284
  msgstr "Sincronizzazione..."
285
 
286
+ #: core/options-pages.php:473 core/options-pages.php:1579
287
  msgid "Restore WordPress default MIME Types"
288
  msgstr "Ripristina i tipi MIME predefiniti di WordPress"
289
 
290
+ #: core/options-pages.php:474
291
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
292
  msgstr ""
293
  "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
294
  "questa operazione."
295
 
296
+ #: core/options-pages.php:475
297
  msgid "Restore Defaults"
298
  msgstr ""
299
 
300
+ #: core/options-pages.php:476
301
  msgid "Restoring..."
302
  msgstr ""
303
 
304
+ #: core/options-pages.php:480
305
  msgid "Please fill into all fields."
306
  msgstr "Si prega di compilare in tutti i campi."
307
 
308
+ #: core/options-pages.php:481
309
  msgid "Duplicate extensions or MIME types. Please chose other one."
310
  msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
311
 
312
+ #: core/options-pages.php:518 core/options-pages.php:635
313
  msgid "Complete Cleanup"
314
  msgstr "Pulizia completa"
315
 
316
+ #: core/options-pages.php:519
317
  msgid ""
318
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
319
  "plugin data</strong> from the database including backups."
321
  "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
322
  "del plugin</strong> dal database inclusi i backup."
323
 
324
+ #: core/options-pages.php:521
325
  msgid "Yes, delete all data"
326
  msgstr "S&igrave;, cancella tutti i dati"
327
 
328
+ #: core/options-pages.php:522
329
  msgid "Cleaning..."
330
  msgstr "Pulizia in corso..."
331
 
332
+ #: core/options-pages.php:553
333
  msgid "Enhanced Media Library Settings"
334
  msgstr "Impostazioni Enhanced Media Library"
335
 
336
+ #: core/options-pages.php:563
337
  msgid "Export"
338
  msgstr "Esporta"
339
 
340
+ #: core/options-pages.php:567
341
  msgid ""
342
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
349
  "esportate in un file di configurazione. Questo consente di importare "
350
  "facilmente la configurazione in un altro sito web."
351
 
352
+ #: core/options-pages.php:572
353
  msgid "Export Plugin Settings"
354
  msgstr "Esporta le impostazioni del plugin"
355
 
356
+ #: core/options-pages.php:582
357
  msgid "Import"
358
  msgstr "Importa"
359
 
360
+ #: core/options-pages.php:586
361
  msgid ""
362
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
363
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
370
  "mediante l'esportazione da un altro sito web utilizzando il pulsante Esporta "
371
  "sopra."
372
 
373
+ #: core/options-pages.php:587
374
  msgid ""
375
  "All plugin settings will be overridden by the import. You will have a chance "
376
  "to restore current data from an automatic backup in case you are not "
381
  "automatico nel caso in cui non sarete soddisfatti del risultato "
382
  "dell'importazione."
383
 
384
+ #: core/options-pages.php:594
385
  msgid "Import Plugin Settings"
386
  msgstr "Importa le impostazioni del plugin"
387
 
388
+ #: core/options-pages.php:606
389
  msgid "Restore"
390
  msgstr "Ripristina"
391
 
392
+ #: core/options-pages.php:612
393
  msgid "No backup available at the moment."
394
  msgstr "Nessun backup disponibile attualmente."
395
 
396
+ #: core/options-pages.php:614
397
  msgid "Backup will be created automatically before any import operation."
398
  msgstr ""
399
  "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
400
  "di importazione."
401
 
402
+ #: core/options-pages.php:618
403
  msgid ""
404
  "The backup has been automatically created before the latest import operation."
405
  msgstr ""
406
  "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
407
  "di importazione."
408
 
409
+ #: core/options-pages.php:622
410
  msgid "Restore Settings from the Backup"
411
  msgstr "Ripristina le impostazioni dal backup"
412
 
413
+ #: core/options-pages.php:642
414
  msgid "What will be deleted:"
415
  msgstr "Cosa sar&agrave; cancellato:"
416
 
417
+ #: core/options-pages.php:647
418
  msgid "All plugin options"
419
  msgstr "Tutte le opzioni del plugin"
420
 
421
+ #: core/options-pages.php:648
422
  msgid "All plugin backups stored in database"
423
  msgstr "Tutti i backup del plugin salvati nel database"
424
 
425
+ #: core/options-pages.php:652
426
  msgid "What will remain intact:"
427
  msgstr "Cosa rester&agrave; invariato:"
428
 
429
+ #: core/options-pages.php:653
430
  msgid "All media items"
431
  msgstr "Tutti gli elementi media"
432
 
433
+ #: core/options-pages.php:654
434
  msgid "All taxonomies not listed above"
435
  msgstr " Tutte le tassonomie non elencate sopra"
436
 
437
+ #: core/options-pages.php:657
438
  msgid ""
439
  "The plugin cannot delete itself because of security reason. Please delete it "
440
  "manually from plugin list after cleanup."
442
  "Il plugin non pu&ograve; eliminare se stesso per motivi di sicurezza. Si "
443
  "prega di eliminarlo manualmente dalla lista plugin dopo la pulizia."
444
 
445
+ #: core/options-pages.php:659
446
  msgid ""
447
  "If you are not sure about this operation please create a backup of your "
448
  "database prior to cleanup!"
450
  "Se non siete sicuri su questa operazione si prega di creare un backup del "
451
  "vostro database prima di eseguire la pulizia!"
452
 
453
+ #: core/options-pages.php:665
454
  msgid "Delete All Data & Deactivate"
455
  msgstr "Elimina tutti i dati e disattiva il plugin"
456
 
457
+ #: core/options-pages.php:765
458
  msgid "Please upload a file to import settings."
459
  msgstr "Si prega di caricare un file da cui importare le impostazioni."
460
 
461
+ #: core/options-pages.php:791
462
  msgid "Plugin settings imported."
463
  msgstr "Impstazioni del plugin importate."
464
 
465
+ #: core/options-pages.php:838
466
  msgid "Plugin settings restored from the backup."
467
  msgstr "Impostazioni del plugin ripristinate dal backup."
468
 
469
+ #: core/options-pages.php:1027
470
  msgid "Media Items Order"
471
  msgstr "Ordinamento elementi media"
472
 
473
+ #: core/options-pages.php:1034
474
  msgid "Order media items by"
475
  msgstr "Ordina gli elementi media per"
476
 
477
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
478
+ #: pro/core/medialist.php:73
479
  msgid "Date"
480
  msgstr "Data"
481
 
482
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
483
+ #: pro/core/medialist.php:76
484
  msgid "Title"
485
  msgstr "Titolo"
486
 
487
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
488
+ #: pro/core/medialist.php:79
489
  msgid "Custom Order"
490
  msgstr "Ordinamento personalizzato"
491
 
492
+ #: core/options-pages.php:1041 core/options-pages.php:1053
493
  msgid "For media library and media popups"
494
  msgstr "Per la libreria media e i pop-up media"
495
 
496
+ #: core/options-pages.php:1042
497
  msgid "Option allows to change order by drag and drop with Custom Order value."
498
  msgstr ""
499
  "Questa opzione permette di modificare l'ordine con il drag &amp; drop con il "
500
  "valore dell'ordinamento personalizzato."
501
 
502
+ #: core/options-pages.php:1047
503
  msgid "Sort order"
504
  msgstr "Ordinamento"
505
 
506
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
507
+ #: pro/core/medialist.php:92
508
  msgid "Ascending"
509
  msgstr "Ascendente"
510
 
511
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
512
+ #: pro/core/medialist.php:95
513
  msgid "Descending"
514
  msgstr "Discendente"
515
 
516
+ #: core/options-pages.php:1066
517
  msgid "Media Shortcodes"
518
  msgstr "Shortcode Media"
519
 
520
+ #: core/options-pages.php:1073 core/options-pages.php:1076
521
  msgid "Enhanced media shortcodes"
522
  msgstr "Shortcode media avanzati"
523
 
524
+ #: core/options-pages.php:1077
525
  msgid ""
526
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
527
  "upload date, and media items number limit"
529
  "Migliora gli shortcode media di WordPress in modo da poter usare le "
530
  "tassonomie Media, la data di caricamento e il limite di elementi media"
531
 
532
+ #: core/options-pages.php:1078
533
  msgid "Gallery example:"
534
  msgstr "Esempio di galleria:"
535
 
536
+ #: core/options-pages.php:1079
537
  msgid "Audio playlist example:"
538
  msgstr "Esempio di playlist audio:"
539
 
540
+ #: core/options-pages.php:1080
541
  msgid "Video playlist example:"
542
  msgstr "Esempio di playlist video:"
543
 
544
+ #: core/options-pages.php:1082
545
  #, php-format
546
  msgid ""
547
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
549
  "%sAttenzione:%s &Egrave; possibile che ci sia Incompatibilit&agrave; con "
550
  "altri plugin gallery o temi!"
551
 
552
+ #: core/options-pages.php:1084
553
  #, php-format
554
  msgid "%sLearn more%s."
555
  msgstr "%sPer saperne di pi&ugrave;%s."
556
 
557
+ #: core/options-pages.php:1086
558
  #, php-format
559
  msgid ""
560
  "Please check out your gallery front-end and back-end functionality once this "
565
  "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
566
  "trovate un problema si prega di informare gli autori del plugin %s or %s."
567
 
568
+ #: core/options-pages.php:1155 core/options-pages.php:1302
569
  msgid "Assign following taxonomies to Media Library:"
570
  msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
571
 
572
+ #: core/options-pages.php:1174 core/options-pages.php:1240
573
+ #: core/options-pages.php:1324
574
  msgid "Assign Taxonomy"
575
  msgstr "Assegna tassonomia"
576
 
577
+ #: core/options-pages.php:1175 core/options-pages.php:1325
578
  msgid "Edit Taxonomy"
579
  msgstr "Modifica tassonomia"
580
 
581
+ #: core/options-pages.php:1179 core/options-pages.php:1242
582
  msgid "Delete Taxonomy"
583
  msgstr "Elimina tassonomia"
584
 
585
+ #: core/options-pages.php:1184 core/options-pages.php:1247
586
  msgid "Labels"
587
  msgstr "Etichette"
588
 
589
+ #: core/options-pages.php:1186 core/options-pages.php:1249
590
  msgid "Singular"
591
  msgstr "Singolare"
592
 
593
+ #: core/options-pages.php:1187 core/options-pages.php:1250
594
  msgid "Plural"
595
  msgstr "Plurale"
596
 
597
+ #: core/options-pages.php:1188 core/options-pages.php:1251
598
  msgid "Menu Name"
599
  msgstr "Nome menu"
600
 
601
+ #: core/options-pages.php:1201 core/options-pages.php:1224
602
+ #: core/options-pages.php:1264 core/options-pages.php:1328
603
  msgid "Settings"
604
  msgstr "Impostazioni"
605
 
606
+ #: core/options-pages.php:1203 core/options-pages.php:1266
607
  msgid "Taxonomy Name"
608
  msgstr "Nome tassonomia"
609
 
610
+ #: core/options-pages.php:1204 core/options-pages.php:1267
611
  msgid "Hierarchical"
612
  msgstr "Gerarchico"
613
 
614
+ #: core/options-pages.php:1205 core/options-pages.php:1268
615
  msgid "Column for List View"
616
  msgstr "Colonna nella visualizzazione a lista"
617
 
618
+ #: core/options-pages.php:1206 core/options-pages.php:1226
619
+ #: core/options-pages.php:1269 core/options-pages.php:1330
620
  msgid "Filter for List View"
621
  msgstr "Filtro per la visualizzazione a lista"
622
 
623
+ #: core/options-pages.php:1207 core/options-pages.php:1227
624
+ #: core/options-pages.php:1270 core/options-pages.php:1331
625
  msgid "Filter for Grid View / Media Popup"
626
  msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
627
 
628
+ #: core/options-pages.php:1208 core/options-pages.php:1228
629
+ #: core/options-pages.php:1271 core/options-pages.php:1332
630
  msgid "Edit in Media Popup"
631
  msgstr "Modifica nel pop-up media"
632
 
633
+ #: core/options-pages.php:1209 core/options-pages.php:1272
634
  msgid "Show in Nav Menu"
635
  msgstr "Mostra nel menu di navigazione"
636
 
637
+ #: core/options-pages.php:1210 core/options-pages.php:1273
638
  msgid "Remember Terms Order (sort)"
639
  msgstr "Ricorda l'ordinamento dei termini (sort)"
640
 
641
+ #: core/options-pages.php:1211 core/options-pages.php:1274
642
  msgid "Show in REST"
643
  msgstr "Mostra in REST"
644
 
645
+ #: core/options-pages.php:1212 core/options-pages.php:1275
646
  msgid "Rewrite Slug"
647
  msgstr "Rewrite per lo slug"
648
 
649
+ #: core/options-pages.php:1213 core/options-pages.php:1276
650
  msgid "Slug with Front"
651
  msgstr "Slug (with_front)"
652
 
653
+ #: core/options-pages.php:1288
654
  msgid "Add New Taxonomy"
655
  msgstr "Aggiungi nuova tassonomia"
656
 
657
+ #: core/options-pages.php:1298
658
  msgid "Non-Media Taxonomies"
659
  msgstr "Tassonomie non Media"
660
 
661
+ #: core/options-pages.php:1361
662
  msgid "Options"
663
  msgstr "Opzioni"
664
 
665
+ #: core/options-pages.php:1371 core/options-pages.php:1374
666
  msgid "Taxonomy archive pages"
667
  msgstr "Pagine di archivio della tassonomia"
668
 
669
+ #: core/options-pages.php:1375
670
  msgid "Turn on media taxonomy archive pages on the front-end"
671
  msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
672
 
673
+ #: core/options-pages.php:1376
674
  msgid ""
675
  "Re-save your permalink settings after this option change to make it work."
676
  msgstr ""
677
  "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
678
  "opzione affinch&egrave; i cambiamenti abbiano effetto."
679
 
680
+ #: core/options-pages.php:1382 core/options-pages.php:1385
681
  msgid "Assign all like hierarchical"
682
  msgstr "Considera tutte le tassonomie come gerarchiche"
683
 
684
+ #: core/options-pages.php:1386
685
  msgid ""
686
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
687
  msgstr ""
688
  "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
689
  "a griglia / pop-up media"
690
 
691
+ #: core/options-pages.php:1392 core/options-pages.php:1395
692
  msgid "Force filters"
693
  msgstr "Forza i filtri"
694
 
695
+ #: core/options-pages.php:1396
696
  msgid "Show media filters for ANY Media Popup"
697
  msgstr "Vistualizza i filtri media per tutti i pop-up media"
698
 
699
+ #: core/options-pages.php:1397
700
  msgid "Try this if filters are not shown for third-party plugins or themes."
701
  msgstr ""
702
  "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
703
  "di terze parti."
704
 
705
+ #: core/options-pages.php:1403 core/options-pages.php:1406
706
  msgid "Show count"
707
  msgstr ""
708
 
709
+ #: core/options-pages.php:1407
710
  msgid "Show item count per category for media filters"
711
  msgstr ""
712
 
713
+ #: core/options-pages.php:1461
714
  msgid "Add New MIME Type"
715
  msgstr "Aggiungi un nuovo tipo MIME"
716
 
717
+ #: core/options-pages.php:1481 core/options-pages.php:1536
718
  msgid "Extension"
719
  msgstr "Estensione"
720
 
721
+ #: core/options-pages.php:1482 core/options-pages.php:1537
722
  msgid "MIME Type"
723
  msgstr "Tipo MIME"
724
 
725
+ #: core/options-pages.php:1483 core/options-pages.php:1538
726
  msgid "Singular Label"
727
  msgstr "Etichetta per il singolare"
728
 
729
+ #: core/options-pages.php:1484 core/options-pages.php:1539
730
  msgid "Plural Label"
731
  msgstr "Etichetta per il plurale"
732
 
733
+ #: core/options-pages.php:1485 core/options-pages.php:1515
734
+ #: core/options-pages.php:1528 core/options-pages.php:1540
735
  msgid "Add Filter"
736
  msgstr "Aggiungi filtro"
737
 
738
+ #: core/options-pages.php:1486 core/options-pages.php:1516
739
+ #: core/options-pages.php:1529 core/options-pages.php:1541
740
  msgid "Allow Upload"
741
  msgstr "Permetti upload"
742
 
743
+ #: core/options-pages.php:1517 core/options-pages.php:1530
744
  msgid "Delete MIME Type"
745
  msgstr "Elimina il tipo MIME"
746
 
747
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
748
  msgid "Save Changes"
749
  msgstr "Salva le modifiche"
750
 
751
+ #: core/options-pages.php:1607
752
  msgid "Changelog"
753
  msgstr "Changelog"
754
 
755
+ #: core/options-pages.php:1608
756
  msgid "What's new in"
757
  msgstr "Cosa c'&egrave; di nuovo nella"
758
 
759
+ #: core/options-pages.php:1608
760
  msgid "version"
761
  msgstr "versione"
762
 
763
+ #: core/options-pages.php:1611
764
  msgid "More features under the hood"
765
  msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
766
 
767
+ #: core/options-pages.php:1613
768
  msgid "Support"
769
  msgstr "Supporto"
770
 
771
+ #: core/options-pages.php:1614
772
  msgid "Feel free to ask for help on"
773
  msgstr "Sentitevi liberi di chiedere aiuto su"
774
 
775
+ #: core/options-pages.php:1614
776
  msgid "Support is free for both versions of the plugin."
777
  msgstr ""
778
  "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
779
 
780
+ #: core/options-pages.php:1616
781
  msgid "Plugin rating"
782
  msgstr "Valutazione plugin"
783
 
784
+ #: core/options-pages.php:1617
785
  msgid "Please"
786
  msgstr "Prego"
787
 
788
+ #: core/options-pages.php:1617
789
  msgid "vote for the plugin"
790
  msgstr "vota il plugin"
791
 
792
+ #: core/options-pages.php:1617
793
  msgid "Thanks!"
794
  msgstr "Grazie!"
795
 
796
+ #: core/options-pages.php:1619
797
  msgid "Other plugins you may find useful"
798
  msgstr "Altri plugin che potresti trovare utili"
799
 
800
+ #: core/options-pages.php:1658
801
  msgid "Utility"
802
  msgstr "Utilit&agrave;"
803
 
804
+ #: core/options-pages.php:1681
805
  msgid "Vote!"
806
  msgstr "Vota!"
807
 
813
  msgid "Media Library settings saved."
814
  msgstr "Impostazioni Libreria Media salvate."
815
 
816
+ #: core/taxonomies.php:333 core/taxonomies.php:339
817
+ #: enhanced-media-library.php:502
818
  msgid "Filter by"
819
  msgstr "Filtra per"
820
 
821
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
822
+ msgid "Not in a"
823
  msgstr "Non in"
824
 
825
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
826
  msgid "All Uncategorized"
827
  msgstr "Tutti gli elementi non classificati"
828
 
829
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
830
  msgid "Reset All Filters"
831
  msgstr "Reimposta tutti i filtri"
832
 
833
+ #: enhanced-media-library.php:535
834
  msgid "Uploaded to post #"
835
  msgstr "Caricato nel post #"
836
 
837
+ #: enhanced-media-library.php:536
838
  msgid "Based On"
839
  msgstr "Basato su"
840
 
841
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
842
  msgid "Media Categories"
843
  msgstr "Categorie Media"
844
 
845
+ #: enhanced-media-library.php:582
846
  msgid "Media Category"
847
  msgstr "Categoria Media"
848
 
849
+ #: enhanced-media-library.php:584
850
  msgid "All Media Categories"
851
  msgstr "Tutte le categorie Media"
852
 
853
+ #: enhanced-media-library.php:585
854
  msgid "Edit Media Category"
855
  msgstr "Modifica categoria Media"
856
 
857
+ #: enhanced-media-library.php:586
858
  msgid "View Media Category"
859
  msgstr "Visualizza categoria Media"
860
 
861
+ #: enhanced-media-library.php:587
862
  msgid "Update Media Category"
863
  msgstr "Aggiorna categoria Media"
864
 
865
+ #: enhanced-media-library.php:588
866
  msgid "Add New Media Category"
867
  msgstr "Aggiungi nuova categoria Media"
868
 
869
+ #: enhanced-media-library.php:589
870
  msgid "New Media Category Name"
871
  msgstr "Nome della nuova categoria Media"
872
 
873
+ #: enhanced-media-library.php:590
874
  msgid "Parent Media Category"
875
  msgstr "Categoria media genitore"
876
 
877
+ #: enhanced-media-library.php:591
878
  msgid "Parent Media Category:"
879
  msgstr "Categoria media genitore:"
880
 
881
+ #: enhanced-media-library.php:592
882
  msgid "Search Media Categories"
883
  msgstr "Cerca nella categoria Media"
884
+
885
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
886
+ msgid "Remove"
887
+ msgstr "Rimuovi"
888
+
889
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
890
+ msgid "Deselect"
891
+ msgstr "Deseleziona"
892
+
893
+ #: pro/core/bulk-edit.php:105
894
+ msgid "Caption this image&hellip;"
895
+ msgstr "Didascalia per questa immagine&hellip;"
896
+
897
+ #: pro/core/bulk-edit.php:109
898
+ msgid "Describe this video&hellip;"
899
+ msgstr "Descrivi questo video&hellip;"
900
+
901
+ #: pro/core/bulk-edit.php:111
902
+ msgid "Describe this audio file&hellip;"
903
+ msgstr "Descrivi questo file audio&hellip;"
904
+
905
+ #: pro/core/bulk-edit.php:113
906
+ msgid "Describe this media file&hellip;"
907
+ msgstr "Descrivi questo file multimediale&hellip;"
908
+
909
+ #: pro/core/bulk-edit.php:122
910
+ msgid "Attachments Details"
911
+ msgstr "Dettagli allegati"
912
+
913
+ #: pro/core/bulk-edit.php:175
914
+ msgid "Select All"
915
+ msgstr "Seleziona tutto"
916
+
917
+ #: pro/core/bulk-edit.php:176
918
+ msgid "Deselect All"
919
+ msgstr "Deseleziona tutto"
920
+
921
+ #: pro/core/bulk-edit.php:177
922
+ msgid "Delete Selected"
923
+ msgstr "Elimina selezionati"
924
+
925
+ #: pro/core/bulk-edit.php:178
926
+ msgid "Trash Selected"
927
+ msgstr ""
928
+
929
+ #: pro/core/bulk-edit.php:179
930
+ msgid "Restore Selected"
931
+ msgstr ""
932
+
933
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
934
+ msgid "Delete Selected Permanently"
935
+ msgstr ""
936
+
937
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
938
+ msgid "Order By"
939
+ msgstr "Ordina per"
940
+
941
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
942
+ msgid "Random"
943
+ msgstr "Casuale"
944
+
945
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
946
+ msgid "Order"
947
+ msgstr "Ordinamento"
948
+
949
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
950
+ msgid "Limit"
951
+ msgstr "Limite"
952
+
953
+ #: pro/core/options-pages.php:78
954
+ msgid "Your license has been deactivated."
955
+ msgstr "La tua licenza &egrave; stata disattivata."
956
+
957
+ #: pro/core/options-pages.php:88
958
+ msgid "Please check if your license key is correct and try again."
959
+ msgstr ""
960
+ "Si prega di verificare che la chiave della licenza sia correta e riprovare."
961
+
962
+ #: pro/core/options-pages.php:104
963
+ #, php-format
964
+ msgid ""
965
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
966
+ "authors</a>."
967
+ msgstr ""
968
+
969
+ #: pro/core/options-pages.php:119
970
+ #, php-format
971
+ msgid ""
972
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
973
+ "plugin authors</a>."
974
+ msgstr ""
975
+
976
+ #: pro/core/options-pages.php:130
977
+ msgid "You license has been activated."
978
+ msgstr "La tua licenza &egrave; stata attivata."
979
+
980
+ #: pro/core/options-pages.php:184
981
+ #, php-format
982
+ msgid "Auto-assign media items to parent %s %s on upload"
983
+ msgstr ""
984
+ "Assegna automaticamente gli elementi media al genitore %s %s al momento del "
985
+ "caricamento"
986
+
987
+ #: pro/core/options-pages.php:185
988
+ #, php-format
989
+ msgid ""
990
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
991
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
992
+ "assigned %s will not be saved. Media items that are not attached to any %s "
993
+ "will not be affected."
994
+ msgstr ""
995
+ "%sAttenzione:%s Come risultato del click su \"Sincronizza ora\" tutti gli "
996
+ "elementi mutlimediali allegati a %s saranno assegnati a %s del loro genitore "
997
+ "%s. I %s attualmente assegnati non saranno salvati. Gli elementi "
998
+ "multimediali che non sono collegati ad alcun %s non saranno interessati."
999
+
1000
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
1001
+ msgid "Bulk Edit"
1002
+ msgstr "Modifica di Gruppo"
1003
+
1004
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
1005
+ msgid "Turn off 'Save Changes' button"
1006
+ msgstr "Disattiva il pulsante 'Salva modifiche'"
1007
+
1008
+ #: pro/core/options-pages.php:220
1009
+ msgid "Save changes on the fly"
1010
+ msgstr "Salva le modifiche al volo"
1011
+
1012
+ #: pro/core/options-pages.php:221
1013
+ msgid ""
1014
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
1015
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
1016
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
1017
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
1018
+ "files / taxonomies with this option turned on."
1019
+ msgstr ""
1020
+ "Ogni click su una casella di controllo della tassonomia durante la modifica "
1021
+ "di gruppo dei file multimediali comporter&agrave; un <strong style=\"color:"
1022
+ "red\">immediato salvataggio</strong> dei dati. Fate attenzione! Hai molte "
1023
+ "possibilità di <strong style=\"color:red\">eseguire accidentalmente "
1024
+ "un'errata riassegnazione</strong> di un sacco di file multimediali e "
1025
+ "tassonomie quando questa opzione &egrave; attiva."
1026
+
1027
+ #: pro/core/options-pages.php:222
1028
+ msgid ""
1029
+ "Strongly NOT recommended option if you work with more than hundred of files "
1030
+ "at a time."
1031
+ msgstr ""
1032
+ "Opzione fortemente NON consigliata se si lavora con pi&ugrave; di cento file "
1033
+ "alla volta."
1034
+
1035
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
1036
+ msgid "License Key"
1037
+ msgstr "Chiave della licenza"
1038
+
1039
+ #: pro/core/options-pages.php:273
1040
+ #, php-format
1041
+ msgid ""
1042
+ "To unlock updates please enter your license key below. You can get your "
1043
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
1044
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
1045
+ msgstr ""
1046
+ "Per sbloccare gli aggiornamenti, inserirsci il codice della tua licenza qui "
1047
+ "sotto. &Egrave; possibile ottenere il codice della tua licenza nel <a href="
1048
+ "\"%s\">Tuo Account</a>. Se non si dispone di una licenza, sei invitato ad <a "
1049
+ "href=\"%s\">acquistarla</a>."
1050
+
1051
+ #: pro/core/options-pages.php:283
1052
+ msgid "Activate License"
1053
+ msgstr "Attiva licenza"
1054
+
1055
+ #: pro/core/options-pages.php:290
1056
+ msgid "Your license is active!"
1057
+ msgstr "La tua licenza è attiva!"
1058
+
1059
+ #: pro/core/options-pages.php:294
1060
+ msgid "Deactivate License"
1061
+ msgstr "Disattiva licenza"
1062
+
1063
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1064
+ msgid ""
1065
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
1066
+ "this server&#8217;s configuration. If you continue to have problems, please "
1067
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1068
+ msgstr ""
1069
+ "Si &egrave; verificato un errore inaspettato. Qualcosa deve essere andato "
1070
+ "male con WordPress.org o con la configurazione di questo server. Se continui "
1071
+ "ad avere problemi prova a consultare il <a href=\"https://wordpress.org/"
1072
+ "support/\">forum di supporto</a>."
1073
+
1074
+ #: pro/core/update.php:113
1075
+ msgid ""
1076
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1077
+ "contact your server administrator.)"
1078
+ msgstr ""
1079
+ "(WordPress non pu&ograve; stabilire una connessione sicura a WordPress.org. "
1080
+ "Contatta l’amministratore del tuo server.)"
1081
+
1082
+ #: pro/core/update.php:181
1083
+ #, php-format
1084
+ msgid ""
1085
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1086
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1087
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1088
+ msgstr ""
1089
+ "Per sbloccare gli aggiornamenti, si prega di <a href=\"%s\">attivare la tua "
1090
+ "licenza</a>. &Egrave; possibile ottenere il codice della tua licenza nel <a "
1091
+ "href=\"%s\">Tuo Account</a>. Se non si dispone di una licenza, siete "
1092
+ "invitati ad <a href=\"%s\">acquistarla</a>."
1093
+
1094
+ #: pro/enhanced-media-library-pro.php:119
1095
+ msgid "ALL files belong to this item"
1096
+ msgstr "TUTTI i file appartengono a questo elemento"
1097
+
1098
+ #: pro/enhanced-media-library-pro.php:120
1099
+ msgid "SOME files belong to this item"
1100
+ msgstr "ALCUNI file appartengono a questo elemento"
1101
+
1102
+ #: pro/enhanced-media-library-pro.php:121
1103
+ msgid "NO files belong to this item"
1104
+ msgstr "NESSUN file appartiene a questo elemento"
1105
+
1106
+ #: pro/enhanced-media-library-pro.php:122
1107
+ msgid "Changes saved."
1108
+ msgstr "Cambiamenti salvati."
1109
+
1110
+ #: pro/enhanced-media-library-pro.php:123
1111
+ msgid "Something went wrong."
1112
+ msgstr " Qualcosa è andato male."
1113
+
1114
+ #: pro/enhanced-media-library-pro.php:126
1115
+ msgid "Edit Media Files"
1116
+ msgstr "Modifica i file media"
1117
+
1118
+ #: pro/enhanced-media-library-pro.php:129
1119
+ msgid "Selecting"
1120
+ msgstr ""
1121
+
1122
+ #: pro/enhanced-media-library-pro.php:131
1123
+ msgid "You are about to permanently delete all selected items."
1124
+ msgstr ""
1125
+
1126
+ #: pro/enhanced-media-library-pro.php:132
1127
+ msgid "Delete"
1128
+ msgstr ""
1129
+
1130
+ #: pro/enhanced-media-library-pro.php:134
1131
+ msgid "Moving to Trash"
1132
+ msgstr ""
1133
+
1134
+ #: pro/enhanced-media-library-pro.php:135
1135
+ msgid "Restoring"
1136
+ msgstr ""
1137
+
1138
+ #: pro/enhanced-media-library-pro.php:136
1139
+ msgid "Deleting"
1140
+ msgstr ""
1141
+
1142
+ #: pro/enhanced-media-library-pro.php:160
1143
+ msgid "Create a filter-based gallery"
1144
+ msgstr "Crea una galleria basata su filtro"
1145
+
1146
+ #: pro/enhanced-media-library-pro.php:161
1147
+ msgid "Create a filter-based playlist"
1148
+ msgstr "Crea un playlist basata su filtro"
1149
+
1150
+ #: pro/enhanced-media-library-pro.php:162
1151
+ msgid "Create a filter-based video playlist"
1152
+ msgstr "Crea una playlist video basata su filtro"
1153
+
1154
+ #: pro/enhanced-media-library-pro.php:240
1155
+ msgid ""
1156
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1157
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1158
+ "will remain intact."
1159
+ msgstr ""
1160
+ "Si prega di disattivare e <strong>rimuovere /strong> la vecchia versione "
1161
+ "GRATUITA prima dell'attivazione di <strong>Enhanced Media Library PRO</"
1162
+ "strong>. Tutti i vostri dati rimarranno intatti."
1163
+
1164
+ #: pro/enhanced-media-library-pro.php:240
1165
+ msgid "Return to Plugins"
1166
+ msgstr "Torna ai plugin"
1167
+
1168
+ #: pro/enhanced-media-library-pro.php:291
1169
+ msgid ""
1170
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1171
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1172
+ "be active. Please network deactivate and delete the free versions of the "
1173
+ "plugin. All your data will remain intact."
1174
+ msgstr ""
1175
+ "Entrambe le versioni GRATUITA e PRO di Enhanced Media Library sono attive "
1176
+ "sul Network. <strong>Enhanced Media Library PRO</ strong> non richiede che "
1177
+ "la versione gratuita sia attiva. Si prega di disattivare sul Network ed "
1178
+ "eliminare le versioni gratuite del plugin. Tutti i vostri dati rimarranno "
1179
+ "intatti."
1180
+
1181
+ #: pro/enhanced-media-library-pro.php:308
1182
+ msgid ""
1183
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1184
+ "be active. Please deactivate and delete the free version of the plugin. All "
1185
+ "your data will remain intact."
1186
+ msgstr ""
1187
+ "<strong>Enhanced Media Library PRO</strong> non richiede che la version "
1188
+ "gratuita sia attiva. Si prega di disattivare ed eliminare la versione "
1189
+ "gratuita del plugin. Tutti i vostri dati rimarranno intatti."
1190
+
1191
+ #: pro/enhanced-media-library-pro.php:324
1192
+ msgid ""
1193
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1194
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1195
+ "version to be active. Please deactivate (or network deactivate) and delete "
1196
+ "the free version of the plugin for this site. All your data will remail "
1197
+ "intact."
1198
+ msgstr ""
1199
+ "Entrambe le versioni GRATUITA e PRO di Enhanced Media Library sono attive "
1200
+ "per questo sito. <strong>Enhanced Media Library PRO</ strong> non richiede "
1201
+ "che la versione gratuita sia attiva. Si prega di disattivare (eventualmente "
1202
+ "anche sul Network) ed eliminare la versione gratuita del plugin. Tutti i "
1203
+ "vostri dati rimarranno intatti."
1204
+
1205
+ #. Plugin Name of the plugin/theme
1206
+ msgid "Enhanced Media Library PRO"
1207
+ msgstr ""
1208
+
1209
+ #. Plugin URI of the plugin/theme
1210
+ #. Author URI of the plugin/theme
1211
+ msgid "http://wpUXsolutions.com"
1212
+ msgstr ""
1213
+
1214
+ #. Description of the plugin/theme
1215
+ msgid ""
1216
+ "This plugin will be handy for those who need to manage a lot of media files."
1217
+ msgstr ""
1218
+ "Questo plugin sar&agrave; utile per coloro che hanno bisogno di gestire "
1219
+ "grandi quantit&agrave; di file multimediali."
1220
+
1221
+ #. Author of the plugin/theme
1222
+ msgid "wpUXsolutions"
1223
+ msgstr ""
1224
+
1225
+ #~ msgid "Not in"
1226
+ #~ msgstr "Non in"
1227
+
1228
+ #~ msgid ""
1229
+ #~ "Wrong license key or a server error occured. Please check your license "
1230
+ #~ "key and try again."
1231
+ #~ msgstr ""
1232
+ #~ "La chiave della licenza non &egrave; corretta o si &egrave; verificato un "
1233
+ #~ "errore del server. Si prega di verificare la chiave della licenza e "
1234
+ #~ "riprovare."
languages/enhanced-media-library-ja.mo DELETED
Binary file
languages/enhanced-media-library-ja.po DELETED
@@ -1,857 +0,0 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-08-09 17:44+0300\n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: \n"
10
- "Language: ja_JP\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=1; plural=0;\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: core/mime-types.php:30
25
- msgid "MIME Types settings restored."
26
- msgstr ""
27
-
28
- #: core/mime-types.php:39
29
- msgid "MIME Types settings saved."
30
- msgstr ""
31
-
32
- #: core/mime-types.php:116
33
- #, php-format
34
- msgid " <span class=\"count\">(%s)</span>"
35
- msgid_plural " <span class=\"count\">(%s)</span>"
36
- msgstr[0] " <span class=\"count\">(%s)</span>"
37
-
38
- #: core/options-pages.php:97 core/options-pages.php:236
39
- #: core/options-pages.php:1003 core/options-pages.php:1128
40
- #: core/options-pages.php:1451 core/options-pages.php:1651
41
- msgid "Media Settings"
42
- msgstr "メディア設定"
43
-
44
- #: core/options-pages.php:106 core/options-pages.php:208
45
- msgid "Media Library"
46
- msgstr "メディアライブラリー"
47
-
48
- #: core/options-pages.php:115
49
- msgid "Taxonomies"
50
- msgstr "タクソノミー"
51
-
52
- #: core/options-pages.php:124 core/options-pages.php:210
53
- msgid "MIME Types"
54
- msgstr "MIME タイプ"
55
-
56
- #. Plugin Name of the plugin/theme
57
- #: core/options-pages.php:135 core/options-pages.php:136
58
- msgid "Enhanced Media Library"
59
- msgstr "Enhanced Media Library"
60
-
61
- #: core/options-pages.php:207
62
- msgid "General"
63
- msgstr "一般"
64
-
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
- msgid "Media Taxonomies"
67
- msgstr "メディアタクソノミー(分類法)"
68
-
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
- msgid "You do not have sufficient permissions to access this page."
73
- msgstr "このページにアクセスするための十分な権限がありません。"
74
-
75
- #: core/options-pages.php:247
76
- msgid "Image sizes"
77
- msgstr ""
78
-
79
- #: core/options-pages.php:248
80
- msgid ""
81
- "The sizes listed below determine the maximum dimensions in pixels to use "
82
- "when adding an image to the Media Library."
83
- msgstr ""
84
-
85
- #: core/options-pages.php:252
86
- msgid "Thumbnail size"
87
- msgstr ""
88
-
89
- #: core/options-pages.php:254
90
- msgid "Width"
91
- msgstr ""
92
-
93
- #: core/options-pages.php:256
94
- msgid "Height"
95
- msgstr ""
96
-
97
- #: core/options-pages.php:259
98
- msgid ""
99
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
- msgstr ""
101
-
102
- #: core/options-pages.php:264 core/options-pages.php:265
103
- msgid "Medium size"
104
- msgstr ""
105
-
106
- #: core/options-pages.php:266 core/options-pages.php:276
107
- msgid "Max Width"
108
- msgstr ""
109
-
110
- #: core/options-pages.php:268 core/options-pages.php:278
111
- msgid "Max Height"
112
- msgstr ""
113
-
114
- #: core/options-pages.php:274 core/options-pages.php:275
115
- msgid "Large size"
116
- msgstr ""
117
-
118
- #: core/options-pages.php:291
119
- msgid "Embeds"
120
- msgstr ""
121
-
122
- #: core/options-pages.php:298
123
- msgid "Uploading Files"
124
- msgstr ""
125
-
126
- #: core/options-pages.php:305
127
- msgid "Store uploads in this folder"
128
- msgstr ""
129
-
130
- #: core/options-pages.php:309
131
- #, php-format
132
- msgid "Default is %s"
133
- msgstr ""
134
-
135
- #: core/options-pages.php:315
136
- msgid "Full URL path to files"
137
- msgstr ""
138
-
139
- #: core/options-pages.php:317
140
- msgid "Configuring this is optional. By default, it should be blank."
141
- msgstr ""
142
-
143
- #: core/options-pages.php:325
144
- msgid "Organize my uploads into month- and year-based folders"
145
- msgstr ""
146
-
147
- #: core/options-pages.php:397 core/options-pages.php:1173
148
- #: core/options-pages.php:1188 core/options-pages.php:1251
149
- #: core/options-pages.php:1320
150
- msgid "Edit"
151
- msgstr "編集"
152
-
153
- #: core/options-pages.php:398
154
- msgid "Close"
155
- msgstr "閉じる"
156
-
157
- #: core/options-pages.php:399 core/options-pages.php:1189
158
- #: core/options-pages.php:1252
159
- msgid "View"
160
- msgstr "表示"
161
-
162
- #: core/options-pages.php:400 core/options-pages.php:1190
163
- #: core/options-pages.php:1253
164
- msgid "Update"
165
- msgstr "更新"
166
-
167
- #: core/options-pages.php:401 core/options-pages.php:1191
168
- #: core/options-pages.php:1254
169
- msgid "Add New"
170
- msgstr "新規追加"
171
-
172
- #: core/options-pages.php:402 core/options-pages.php:1192
173
- #: core/options-pages.php:1255
174
- msgid "New"
175
- msgstr "新規"
176
-
177
- #: core/options-pages.php:403
178
- msgid "Name"
179
- msgstr "名前"
180
-
181
- #: core/options-pages.php:404 core/options-pages.php:1193
182
- #: core/options-pages.php:1256
183
- msgid "Parent"
184
- msgstr "親カテゴリー"
185
-
186
- #: core/options-pages.php:405 core/options-pages.php:641
187
- #: core/options-pages.php:1187 core/options-pages.php:1250
188
- #: core/taxonomies.php:348 enhanced-media-library.php:485
189
- msgid "All"
190
- msgstr "全て"
191
-
192
- #: core/options-pages.php:406 core/options-pages.php:1194
193
- #: core/options-pages.php:1257
194
- msgid "Search"
195
- msgstr "検索"
196
-
197
- #: core/options-pages.php:408 core/options-pages.php:1238
198
- msgid "New Taxonomy"
199
- msgstr "新しいタクソノミー (分類)"
200
-
201
- #: core/options-pages.php:410
202
- msgid "Remove Taxonomy"
203
- msgstr ""
204
-
205
- #: core/options-pages.php:411
206
- msgid "Taxonomy will be removed."
207
- msgstr ""
208
-
209
- #: core/options-pages.php:412
210
- msgid ""
211
- "Taxonomy terms (categories) will remain intact in the database. If you "
212
- "create a taxonomy with the same name in the future, its terms (categories) "
213
- "will be available again."
214
- msgstr ""
215
-
216
- #: core/options-pages.php:413
217
- msgid "Media items will remain intact."
218
- msgstr ""
219
-
220
- #: core/options-pages.php:414
221
- msgid "Are you still sure?"
222
- msgstr ""
223
-
224
- #: core/options-pages.php:415
225
- msgid "Yes, remove taxonomy"
226
- msgstr ""
227
-
228
- #: core/options-pages.php:417
229
- msgid "Duplicate"
230
- msgstr ""
231
-
232
- #: core/options-pages.php:418
233
- msgid "Taxonomy with the same name already exists. Please chose other one."
234
- msgstr ""
235
- "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
236
-
237
- #: core/options-pages.php:420
238
- msgid "Empty Fields"
239
- msgstr ""
240
-
241
- #: core/options-pages.php:421
242
- msgid "Please choose Singular and Plural names for all new taxomonies."
243
- msgstr ""
244
-
245
- #: core/options-pages.php:422
246
- msgid "Please choose Singular name for all new taxomonies."
247
- msgstr ""
248
-
249
- #: core/options-pages.php:423
250
- msgid "Please choose Plural Name for all new taxomonies."
251
- msgstr ""
252
-
253
- #: core/options-pages.php:425
254
- msgid "Ok"
255
- msgstr ""
256
-
257
- #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:475 core/options-pages.php:520
259
- msgid "Cancel"
260
- msgstr ""
261
-
262
- #: core/options-pages.php:428
263
- msgid "Synchronize Now"
264
- msgstr ""
265
-
266
- #: core/options-pages.php:429 core/options-pages.php:517
267
- msgid "This operation cannot be canceled! Are you still sure?"
268
- msgstr ""
269
-
270
- #: core/options-pages.php:430
271
- msgid "Synchronize"
272
- msgstr ""
273
-
274
- #: core/options-pages.php:432
275
- msgid "Synchronizing..."
276
- msgstr ""
277
-
278
- #: core/options-pages.php:470 core/options-pages.php:1575
279
- msgid "Restore WordPress default MIME Types"
280
- msgstr "WordPressのデフォルトのMIMEタイプを復元"
281
-
282
- #: core/options-pages.php:471
283
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
284
- msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
285
-
286
- #: core/options-pages.php:472
287
- msgid "Restore Defaults"
288
- msgstr ""
289
-
290
- #: core/options-pages.php:473
291
- msgid "Restoring..."
292
- msgstr ""
293
-
294
- #: core/options-pages.php:477
295
- msgid "Please fill into all fields."
296
- msgstr "すべてのフィールドに記入してください。"
297
-
298
- #: core/options-pages.php:478
299
- msgid "Duplicate extensions or MIME types. Please chose other one."
300
- msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
301
-
302
- #: core/options-pages.php:515 core/options-pages.php:632
303
- msgid "Complete Cleanup"
304
- msgstr ""
305
-
306
- #: core/options-pages.php:516
307
- msgid ""
308
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
309
- "plugin data</strong> from the database including backups."
310
- msgstr ""
311
-
312
- #: core/options-pages.php:518
313
- msgid "Yes, delete all data"
314
- msgstr ""
315
-
316
- #: core/options-pages.php:519
317
- msgid "Cleaning..."
318
- msgstr ""
319
-
320
- #: core/options-pages.php:550
321
- msgid "Enhanced Media Library Settings"
322
- msgstr "Enhanced Media Library 設定"
323
-
324
- #: core/options-pages.php:560
325
- msgid "Export"
326
- msgstr "エクスポート"
327
-
328
- #: core/options-pages.php:564
329
- msgid ""
330
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
331
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
332
- "configuration file. It allows you to easily import the configuration into "
333
- "another website."
334
- msgstr ""
335
-
336
- #: core/options-pages.php:569
337
- msgid "Export Plugin Settings"
338
- msgstr "プラグイン設定をエクスポート"
339
-
340
- #: core/options-pages.php:579
341
- msgid "Import"
342
- msgstr "インポート"
343
-
344
- #: core/options-pages.php:583
345
- msgid ""
346
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
347
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
348
- "configuration file which can be obtained by exporting the settings on "
349
- "another website using the export button above."
350
- msgstr ""
351
-
352
- #: core/options-pages.php:584
353
- msgid ""
354
- "All plugin settings will be overridden by the import. You will have a chance "
355
- "to restore current data from an automatic backup in case you are not "
356
- "satisfied with the result of the import."
357
- msgstr ""
358
-
359
- #: core/options-pages.php:591
360
- msgid "Import Plugin Settings"
361
- msgstr "プラグイン設定をインポート"
362
-
363
- #: core/options-pages.php:603
364
- msgid "Restore"
365
- msgstr "リストア(復元する)"
366
-
367
- #: core/options-pages.php:609
368
- msgid "No backup available at the moment."
369
- msgstr "現在利用できるバックアップはありません。"
370
-
371
- #: core/options-pages.php:611
372
- msgid "Backup will be created automatically before any import operation."
373
- msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
374
-
375
- #: core/options-pages.php:615
376
- msgid ""
377
- "The backup has been automatically created before the latest import operation."
378
- msgstr ""
379
-
380
- #: core/options-pages.php:619
381
- msgid "Restore Settings from the Backup"
382
- msgstr "バックアップから設定を復元させて下さい。"
383
-
384
- #: core/options-pages.php:639
385
- msgid "What will be deleted:"
386
- msgstr ""
387
-
388
- #: core/options-pages.php:644
389
- msgid "All plugin options"
390
- msgstr ""
391
-
392
- #: core/options-pages.php:645
393
- msgid "All plugin backups stored in database"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:649
397
- msgid "What will remain intact:"
398
- msgstr ""
399
-
400
- #: core/options-pages.php:650
401
- msgid "All media items"
402
- msgstr ""
403
-
404
- #: core/options-pages.php:651
405
- msgid "All taxonomies not listed above"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:654
409
- msgid ""
410
- "The plugin cannot delete itself because of security reason. Please delete it "
411
- "manually from plugin list after cleanup."
412
- msgstr ""
413
-
414
- #: core/options-pages.php:656
415
- msgid ""
416
- "If you are not sure about this operation please create a backup of your "
417
- "database prior to cleanup!"
418
- msgstr ""
419
-
420
- #: core/options-pages.php:662
421
- msgid "Delete All Data & Deactivate"
422
- msgstr ""
423
-
424
- #: core/options-pages.php:762
425
- msgid "Please upload a file to import settings."
426
- msgstr "設定をインポートするファイルをアップロードしてください。"
427
-
428
- #: core/options-pages.php:788
429
- msgid "Plugin settings imported."
430
- msgstr "プラグインの設定がインポートされました。"
431
-
432
- #: core/options-pages.php:835
433
- msgid "Plugin settings restored from the backup."
434
- msgstr "プラグインの設定は、バックアップから復元させて下さい。"
435
-
436
- #: core/options-pages.php:1024
437
- msgid "Media Items Order"
438
- msgstr ""
439
-
440
- #: core/options-pages.php:1031
441
- msgid "Order media items by"
442
- msgstr "メディアアイテムの順番"
443
-
444
- #: core/options-pages.php:1034
445
- msgid "Date"
446
- msgstr "日付"
447
-
448
- #: core/options-pages.php:1035
449
- msgid "Title"
450
- msgstr "タイトル"
451
-
452
- #: core/options-pages.php:1036
453
- msgid "Custom Order"
454
- msgstr "カスタムオーダー"
455
-
456
- #: core/options-pages.php:1038 core/options-pages.php:1050
457
- msgid "For media library and media popups"
458
- msgstr "メディアライブラリとメディアポップアップについて"
459
-
460
- #: core/options-pages.php:1039
461
- msgid "Option allows to change order by drag and drop with Custom Order value."
462
- msgstr ""
463
- "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
464
- "ロップすることができます。"
465
-
466
- #: core/options-pages.php:1044
467
- msgid "Sort order"
468
- msgstr "ソート順"
469
-
470
- #: core/options-pages.php:1047
471
- msgid "Ascending"
472
- msgstr "昇順"
473
-
474
- #: core/options-pages.php:1048
475
- msgid "Descending"
476
- msgstr "降順"
477
-
478
- #: core/options-pages.php:1063
479
- msgid "Media Shortcodes"
480
- msgstr "メディアのショートコード"
481
-
482
- #: core/options-pages.php:1070 core/options-pages.php:1073
483
- msgid "Enhanced media shortcodes"
484
- msgstr "強化されたメディアのショートコード"
485
-
486
- #: core/options-pages.php:1074
487
- msgid ""
488
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
- "upload date, and media items number limit"
490
- msgstr ""
491
- "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
492
- "メディア・アイテム数の上限を取得させます。"
493
-
494
- #: core/options-pages.php:1075
495
- msgid "Gallery example:"
496
- msgstr "ギャラリーの例:"
497
-
498
- #: core/options-pages.php:1076
499
- msgid "Audio playlist example:"
500
- msgstr "オーディオプレイリストの例:"
501
-
502
- #: core/options-pages.php:1077
503
- msgid "Video playlist example:"
504
- msgstr "ビデオプレイリストの例:"
505
-
506
- #: core/options-pages.php:1079
507
- #, php-format
508
- msgid ""
509
- "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
510
- msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
511
-
512
- #: core/options-pages.php:1081
513
- #, php-format
514
- msgid "%sLearn more%s."
515
- msgstr "%sもっと詳しく%s."
516
-
517
- #: core/options-pages.php:1083
518
- #, php-format
519
- msgid ""
520
- "Please check out your gallery front-end and back-end functionality once this "
521
- "option activated. If you find an issue please inform plugin authors at %s or "
522
- "%s."
523
- msgstr ""
524
- "あなたのギャラリーフロントエンドをチェックアウトし、活性化するには、このオプ"
525
- "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
526
- "イン作者までご連絡ください %s か %s."
527
-
528
- #: core/options-pages.php:1153 core/options-pages.php:1300
529
- msgid "Assign following taxonomies to Media Library:"
530
- msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
531
-
532
- #: core/options-pages.php:1172 core/options-pages.php:1238
533
- #: core/options-pages.php:1319
534
- msgid "Assign Taxonomy"
535
- msgstr "タクソノミーを割り当て"
536
-
537
- #: core/options-pages.php:1173 core/options-pages.php:1320
538
- msgid "Edit Taxonomy"
539
- msgstr "タクソノミーの編集"
540
-
541
- #: core/options-pages.php:1177 core/options-pages.php:1240
542
- msgid "Delete Taxonomy"
543
- msgstr "タクソノミーを削除します"
544
-
545
- #: core/options-pages.php:1182 core/options-pages.php:1245
546
- msgid "Labels"
547
- msgstr "ラベル"
548
-
549
- #: core/options-pages.php:1184 core/options-pages.php:1247
550
- msgid "Singular"
551
- msgstr "単数"
552
-
553
- #: core/options-pages.php:1185 core/options-pages.php:1248
554
- msgid "Plural"
555
- msgstr "複数"
556
-
557
- #: core/options-pages.php:1186 core/options-pages.php:1249
558
- msgid "Menu Name"
559
- msgstr "メニュー名"
560
-
561
- #: core/options-pages.php:1199 core/options-pages.php:1222
562
- #: core/options-pages.php:1262 core/options-pages.php:1323
563
- msgid "Settings"
564
- msgstr "設定"
565
-
566
- #: core/options-pages.php:1201 core/options-pages.php:1264
567
- msgid "Taxonomy Name"
568
- msgstr "タクソノミー名"
569
-
570
- #: core/options-pages.php:1202 core/options-pages.php:1265
571
- msgid "Hierarchical"
572
- msgstr "階層"
573
-
574
- #: core/options-pages.php:1203 core/options-pages.php:1266
575
- msgid "Column for List View"
576
- msgstr "リスト表示の列"
577
-
578
- #: core/options-pages.php:1204 core/options-pages.php:1224
579
- #: core/options-pages.php:1267 core/options-pages.php:1325
580
- msgid "Filter for List View"
581
- msgstr "リスト表示のフィルター"
582
-
583
- #: core/options-pages.php:1205 core/options-pages.php:1225
584
- #: core/options-pages.php:1268 core/options-pages.php:1326
585
- msgid "Filter for Grid View / Media Popup"
586
- msgstr "グリット表示/メディアポップアップのフィルター"
587
-
588
- #: core/options-pages.php:1206 core/options-pages.php:1226
589
- #: core/options-pages.php:1269 core/options-pages.php:1327
590
- msgid "Edit in Media Popup"
591
- msgstr "メディアポップアップの編集"
592
-
593
- #: core/options-pages.php:1207 core/options-pages.php:1270
594
- msgid "Show in Nav Menu"
595
- msgstr "ナビゲーションメニューに表示"
596
-
597
- #: core/options-pages.php:1208 core/options-pages.php:1271
598
- msgid "Remember Terms Order (sort)"
599
- msgstr ""
600
-
601
- #: core/options-pages.php:1209 core/options-pages.php:1272
602
- msgid "Show in REST"
603
- msgstr "リストに表示"
604
-
605
- #: core/options-pages.php:1210 core/options-pages.php:1273
606
- msgid "Rewrite Slug"
607
- msgstr "スラッグを書き換え"
608
-
609
- #: core/options-pages.php:1211 core/options-pages.php:1274
610
- msgid "Slug with Front"
611
- msgstr "フロントとスラッグ"
612
-
613
- #: core/options-pages.php:1286
614
- msgid "Add New Taxonomy"
615
- msgstr "新しいタクソノミーを追加"
616
-
617
- #: core/options-pages.php:1296
618
- msgid "Non-Media Taxonomies"
619
- msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
620
-
621
- #: core/options-pages.php:1357
622
- msgid "Options"
623
- msgstr "オプション"
624
-
625
- #: core/options-pages.php:1367 core/options-pages.php:1370
626
- msgid "Taxonomy archive pages"
627
- msgstr "タクソノミーのアーカイブページ"
628
-
629
- #: core/options-pages.php:1371
630
- msgid "Turn on media taxonomy archive pages on the front-end"
631
- msgstr ""
632
- "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
633
-
634
- #: core/options-pages.php:1372
635
- msgid ""
636
- "Re-save your permalink settings after this option change to make it work."
637
- msgstr ""
638
- "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
639
- "しましょう。"
640
-
641
- #: core/options-pages.php:1378 core/options-pages.php:1381
642
- msgid "Assign all like hierarchical"
643
- msgstr "階層のように全て割り当てます"
644
-
645
- #: core/options-pages.php:1382
646
- msgid ""
647
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
648
- msgstr ""
649
- "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
650
- "する"
651
-
652
- #: core/options-pages.php:1388 core/options-pages.php:1391
653
- msgid "Force filters"
654
- msgstr "フォースフィルター"
655
-
656
- #: core/options-pages.php:1392
657
- msgid "Show media filters for ANY Media Popup"
658
- msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
659
-
660
- #: core/options-pages.php:1393
661
- msgid "Try this if filters are not shown for third-party plugins or themes."
662
- msgstr ""
663
- "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
664
- "試してみてください。"
665
-
666
- #: core/options-pages.php:1399 core/options-pages.php:1402
667
- msgid "Show count"
668
- msgstr ""
669
-
670
- #: core/options-pages.php:1403
671
- msgid "Show item count per category for media filters"
672
- msgstr ""
673
-
674
- #: core/options-pages.php:1457
675
- msgid "Add New MIME Type"
676
- msgstr "MIMEタイプ新規追加"
677
-
678
- #: core/options-pages.php:1477 core/options-pages.php:1532
679
- msgid "Extension"
680
- msgstr "拡張子"
681
-
682
- #: core/options-pages.php:1478 core/options-pages.php:1533
683
- msgid "MIME Type"
684
- msgstr "MIMEタイプ"
685
-
686
- #: core/options-pages.php:1479 core/options-pages.php:1534
687
- msgid "Singular Label"
688
- msgstr "単数のラベル"
689
-
690
- #: core/options-pages.php:1480 core/options-pages.php:1535
691
- msgid "Plural Label"
692
- msgstr "複数のラベル"
693
-
694
- #: core/options-pages.php:1481 core/options-pages.php:1511
695
- #: core/options-pages.php:1524 core/options-pages.php:1536
696
- msgid "Add Filter"
697
- msgstr "フィルタを追加"
698
-
699
- #: core/options-pages.php:1482 core/options-pages.php:1512
700
- #: core/options-pages.php:1525 core/options-pages.php:1537
701
- msgid "Allow Upload"
702
- msgstr "アップロードを許可"
703
-
704
- #: core/options-pages.php:1513 core/options-pages.php:1526
705
- msgid "Delete MIME Type"
706
- msgstr "MIMEタイプを削除します"
707
-
708
- #: core/options-pages.php:1573
709
- msgid "Save Changes"
710
- msgstr "変更内容を保存"
711
-
712
- #: core/options-pages.php:1603
713
- msgid "Changelog"
714
- msgstr ""
715
-
716
- #: core/options-pages.php:1604
717
- msgid "What's new in"
718
- msgstr ""
719
-
720
- #: core/options-pages.php:1604
721
- msgid "version"
722
- msgstr ""
723
-
724
- #: core/options-pages.php:1607
725
- msgid "More features under the hood"
726
- msgstr ""
727
-
728
- #: core/options-pages.php:1609
729
- msgid "Support"
730
- msgstr ""
731
-
732
- #: core/options-pages.php:1610
733
- msgid "Feel free to ask for help on"
734
- msgstr ""
735
-
736
- #: core/options-pages.php:1610
737
- msgid "Support is free for both versions of the plugin."
738
- msgstr ""
739
-
740
- #: core/options-pages.php:1612
741
- msgid "Plugin rating"
742
- msgstr ""
743
-
744
- #: core/options-pages.php:1613
745
- msgid "Please"
746
- msgstr ""
747
-
748
- #: core/options-pages.php:1613
749
- msgid "vote for the plugin"
750
- msgstr ""
751
-
752
- #: core/options-pages.php:1613
753
- msgid "Thanks!"
754
- msgstr ""
755
-
756
- #: core/options-pages.php:1615
757
- msgid "Other plugins you may find useful"
758
- msgstr ""
759
-
760
- #: core/options-pages.php:1654
761
- msgid "Utility"
762
- msgstr ""
763
-
764
- #: core/options-pages.php:1677
765
- msgid "Vote!"
766
- msgstr ""
767
-
768
- #: core/taxonomies.php:101
769
- msgid "Media Taxonomies settings saved."
770
- msgstr ""
771
-
772
- #: core/taxonomies.php:159
773
- msgid "Media Library settings saved."
774
- msgstr ""
775
-
776
- #: core/taxonomies.php:341 core/taxonomies.php:347
777
- #: enhanced-media-library.php:484
778
- msgid "Filter by"
779
- msgstr ""
780
-
781
- #: core/taxonomies.php:349 enhanced-media-library.php:486
782
- msgid "Not in"
783
- msgstr ""
784
-
785
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
786
- msgid "All Uncategorized"
787
- msgstr "未分類"
788
-
789
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
790
- msgid "Reset All Filters"
791
- msgstr "絞り込みを解除"
792
-
793
- #: enhanced-media-library.php:517
794
- msgid "Uploaded to post #"
795
- msgstr "投稿をアップロード #"
796
-
797
- #: enhanced-media-library.php:518
798
- msgid "Based On"
799
- msgstr ""
800
-
801
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
802
- msgid "Media Categories"
803
- msgstr ""
804
-
805
- #: enhanced-media-library.php:564
806
- msgid "Media Category"
807
- msgstr ""
808
-
809
- #: enhanced-media-library.php:566
810
- msgid "All Media Categories"
811
- msgstr ""
812
-
813
- #: enhanced-media-library.php:567
814
- msgid "Edit Media Category"
815
- msgstr ""
816
-
817
- #: enhanced-media-library.php:568
818
- msgid "View Media Category"
819
- msgstr ""
820
-
821
- #: enhanced-media-library.php:569
822
- msgid "Update Media Category"
823
- msgstr ""
824
-
825
- #: enhanced-media-library.php:570
826
- msgid "Add New Media Category"
827
- msgstr ""
828
-
829
- #: enhanced-media-library.php:571
830
- msgid "New Media Category Name"
831
- msgstr ""
832
-
833
- #: enhanced-media-library.php:572
834
- msgid "Parent Media Category"
835
- msgstr ""
836
-
837
- #: enhanced-media-library.php:573
838
- msgid "Parent Media Category:"
839
- msgstr ""
840
-
841
- #: enhanced-media-library.php:574
842
- msgid "Search Media Categories"
843
- msgstr ""
844
-
845
- #. Plugin URI of the plugin/theme
846
- #. Author URI of the plugin/theme
847
- msgid "http://wpUXsolutions.com"
848
- msgstr ""
849
-
850
- #. Description of the plugin/theme
851
- msgid ""
852
- "This plugin will be handy for those who need to manage a lot of media files."
853
- msgstr ""
854
-
855
- #. Author of the plugin/theme
856
- msgid "wpUXsolutions"
857
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ja_JP.mo ADDED
Binary file
languages/enhanced-media-library-ja_JP.po ADDED
@@ -0,0 +1,1163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:35+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:35+0200\n"
7
+ "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Japanese (Japan)\n"
9
+ "Language: ja_JP\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160726-1\n"
18
+
19
+ #: core/mime-types.php:30
20
+ msgid "MIME Types settings restored."
21
+ msgstr ""
22
+
23
+ #: core/mime-types.php:39
24
+ msgid "MIME Types settings saved."
25
+ msgstr ""
26
+
27
+ #: core/mime-types.php:116
28
+ #, php-format
29
+ msgid " <span class=\"count\">(%s)</span>"
30
+ msgid_plural " <span class=\"count\">(%s)</span>"
31
+ msgstr[0] ""
32
+
33
+ #: core/options-pages.php:97 core/options-pages.php:239
34
+ #: core/options-pages.php:1006 core/options-pages.php:1130
35
+ #: core/options-pages.php:1455 core/options-pages.php:1655
36
+ msgid "Media Settings"
37
+ msgstr "メディア設定"
38
+
39
+ #: core/options-pages.php:106 core/options-pages.php:211
40
+ msgid "Media Library"
41
+ msgstr "メディアライブラリー"
42
+
43
+ #: core/options-pages.php:115
44
+ msgid "Taxonomies"
45
+ msgstr "タクソノミー"
46
+
47
+ #: core/options-pages.php:124 core/options-pages.php:213
48
+ msgid "MIME Types"
49
+ msgstr "MIME タイプ"
50
+
51
+ #: core/options-pages.php:135 core/options-pages.php:136
52
+ msgid "Enhanced Media Library"
53
+ msgstr "Enhanced Media Library"
54
+
55
+ #: core/options-pages.php:210
56
+ msgid "General"
57
+ msgstr "一般"
58
+
59
+ #: core/options-pages.php:212 core/options-pages.php:1151
60
+ msgid "Media Taxonomies"
61
+ msgstr "メディアタクソノミー(分類法)"
62
+
63
+ #: core/options-pages.php:236 core/options-pages.php:548
64
+ #: core/options-pages.php:1002 core/options-pages.php:1127
65
+ #: core/options-pages.php:1451
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "このページにアクセスするための十分な権限がありません。"
68
+
69
+ #: core/options-pages.php:250
70
+ msgid "Image sizes"
71
+ msgstr ""
72
+
73
+ #: core/options-pages.php:251
74
+ msgid ""
75
+ "The sizes listed below determine the maximum dimensions in pixels to use "
76
+ "when adding an image to the Media Library."
77
+ msgstr ""
78
+
79
+ #: core/options-pages.php:255
80
+ msgid "Thumbnail size"
81
+ msgstr ""
82
+
83
+ #: core/options-pages.php:257
84
+ msgid "Width"
85
+ msgstr ""
86
+
87
+ #: core/options-pages.php:259
88
+ msgid "Height"
89
+ msgstr ""
90
+
91
+ #: core/options-pages.php:262
92
+ msgid ""
93
+ "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
94
+ msgstr ""
95
+
96
+ #: core/options-pages.php:267 core/options-pages.php:268
97
+ msgid "Medium size"
98
+ msgstr ""
99
+
100
+ #: core/options-pages.php:269 core/options-pages.php:279
101
+ msgid "Max Width"
102
+ msgstr ""
103
+
104
+ #: core/options-pages.php:271 core/options-pages.php:281
105
+ msgid "Max Height"
106
+ msgstr ""
107
+
108
+ #: core/options-pages.php:277 core/options-pages.php:278
109
+ msgid "Large size"
110
+ msgstr ""
111
+
112
+ #: core/options-pages.php:294
113
+ msgid "Embeds"
114
+ msgstr ""
115
+
116
+ #: core/options-pages.php:301
117
+ msgid "Uploading Files"
118
+ msgstr ""
119
+
120
+ #: core/options-pages.php:308
121
+ msgid "Store uploads in this folder"
122
+ msgstr ""
123
+
124
+ #: core/options-pages.php:312
125
+ #, php-format
126
+ msgid "Default is %s"
127
+ msgstr ""
128
+
129
+ #: core/options-pages.php:318
130
+ msgid "Full URL path to files"
131
+ msgstr ""
132
+
133
+ #: core/options-pages.php:320
134
+ msgid "Configuring this is optional. By default, it should be blank."
135
+ msgstr ""
136
+
137
+ #: core/options-pages.php:328
138
+ msgid "Organize my uploads into month- and year-based folders"
139
+ msgstr ""
140
+
141
+ #: core/options-pages.php:400 core/options-pages.php:1175
142
+ #: core/options-pages.php:1190 core/options-pages.php:1253
143
+ #: core/options-pages.php:1325
144
+ msgid "Edit"
145
+ msgstr "編集"
146
+
147
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
148
+ msgid "Close"
149
+ msgstr "閉じる"
150
+
151
+ #: core/options-pages.php:402 core/options-pages.php:1191
152
+ #: core/options-pages.php:1254
153
+ msgid "View"
154
+ msgstr "表示"
155
+
156
+ #: core/options-pages.php:403 core/options-pages.php:1192
157
+ #: core/options-pages.php:1255
158
+ msgid "Update"
159
+ msgstr "更新"
160
+
161
+ #: core/options-pages.php:404 core/options-pages.php:1193
162
+ #: core/options-pages.php:1256
163
+ msgid "Add New"
164
+ msgstr "新規追加"
165
+
166
+ #: core/options-pages.php:405 core/options-pages.php:1194
167
+ #: core/options-pages.php:1257
168
+ msgid "New"
169
+ msgstr "新規"
170
+
171
+ #: core/options-pages.php:406
172
+ msgid "Name"
173
+ msgstr "名前"
174
+
175
+ #: core/options-pages.php:407 core/options-pages.php:1195
176
+ #: core/options-pages.php:1258
177
+ msgid "Parent"
178
+ msgstr "親カテゴリー"
179
+
180
+ #: core/options-pages.php:408 core/options-pages.php:644
181
+ #: core/options-pages.php:1189 core/options-pages.php:1252
182
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
183
+ msgid "All"
184
+ msgstr "全て"
185
+
186
+ #: core/options-pages.php:409 core/options-pages.php:1196
187
+ #: core/options-pages.php:1259
188
+ msgid "Search"
189
+ msgstr "検索"
190
+
191
+ #: core/options-pages.php:411 core/options-pages.php:1240
192
+ msgid "New Taxonomy"
193
+ msgstr "新しいタクソノミー (分類)"
194
+
195
+ #: core/options-pages.php:413
196
+ msgid "Remove Taxonomy"
197
+ msgstr ""
198
+
199
+ #: core/options-pages.php:414
200
+ msgid "Taxonomy will be removed."
201
+ msgstr ""
202
+
203
+ #: core/options-pages.php:415
204
+ msgid ""
205
+ "Taxonomy terms (categories) will remain intact in the database. If you "
206
+ "create a taxonomy with the same name in the future, its terms (categories) "
207
+ "will be available again."
208
+ msgstr ""
209
+
210
+ #: core/options-pages.php:416
211
+ msgid "Media items will remain intact."
212
+ msgstr ""
213
+
214
+ #: core/options-pages.php:417
215
+ msgid "Are you still sure?"
216
+ msgstr ""
217
+
218
+ #: core/options-pages.php:418
219
+ msgid "Yes, remove taxonomy"
220
+ msgstr ""
221
+
222
+ #: core/options-pages.php:420
223
+ msgid "Duplicate"
224
+ msgstr ""
225
+
226
+ #: core/options-pages.php:421
227
+ msgid "Taxonomy with the same name already exists. Please chose other one."
228
+ msgstr ""
229
+ "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
230
+
231
+ #: core/options-pages.php:423
232
+ msgid "Empty Fields"
233
+ msgstr ""
234
+
235
+ #: core/options-pages.php:424
236
+ msgid "Please choose Singular and Plural names for all new taxomonies."
237
+ msgstr ""
238
+
239
+ #: core/options-pages.php:425
240
+ msgid "Please choose Singular name for all new taxomonies."
241
+ msgstr ""
242
+
243
+ #: core/options-pages.php:426
244
+ msgid "Please choose Plural Name for all new taxomonies."
245
+ msgstr ""
246
+
247
+ #: core/options-pages.php:428
248
+ msgid "Ok"
249
+ msgstr ""
250
+
251
+ #: core/options-pages.php:429 core/options-pages.php:434
252
+ #: core/options-pages.php:478 core/options-pages.php:523
253
+ #: pro/enhanced-media-library-pro.php:133
254
+ msgid "Cancel"
255
+ msgstr ""
256
+
257
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
258
+ msgid "Synchronize Now"
259
+ msgstr ""
260
+
261
+ #: core/options-pages.php:432 core/options-pages.php:520
262
+ msgid "This operation cannot be canceled! Are you still sure?"
263
+ msgstr ""
264
+
265
+ #: core/options-pages.php:433
266
+ msgid "Synchronize"
267
+ msgstr ""
268
+
269
+ #: core/options-pages.php:435
270
+ msgid "Synchronizing..."
271
+ msgstr ""
272
+
273
+ #: core/options-pages.php:473 core/options-pages.php:1579
274
+ msgid "Restore WordPress default MIME Types"
275
+ msgstr "WordPressのデフォルトのMIMEタイプを復元"
276
+
277
+ #: core/options-pages.php:474
278
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
+ msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
280
+
281
+ #: core/options-pages.php:475
282
+ msgid "Restore Defaults"
283
+ msgstr ""
284
+
285
+ #: core/options-pages.php:476
286
+ msgid "Restoring..."
287
+ msgstr ""
288
+
289
+ #: core/options-pages.php:480
290
+ msgid "Please fill into all fields."
291
+ msgstr "すべてのフィールドに記入してください。"
292
+
293
+ #: core/options-pages.php:481
294
+ msgid "Duplicate extensions or MIME types. Please chose other one."
295
+ msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
296
+
297
+ #: core/options-pages.php:518 core/options-pages.php:635
298
+ msgid "Complete Cleanup"
299
+ msgstr ""
300
+
301
+ #: core/options-pages.php:519
302
+ msgid ""
303
+ "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
+ "plugin data</strong> from the database including backups."
305
+ msgstr ""
306
+
307
+ #: core/options-pages.php:521
308
+ msgid "Yes, delete all data"
309
+ msgstr ""
310
+
311
+ #: core/options-pages.php:522
312
+ msgid "Cleaning..."
313
+ msgstr ""
314
+
315
+ #: core/options-pages.php:553
316
+ msgid "Enhanced Media Library Settings"
317
+ msgstr "Enhanced Media Library 設定"
318
+
319
+ #: core/options-pages.php:563
320
+ msgid "Export"
321
+ msgstr "エクスポート"
322
+
323
+ #: core/options-pages.php:567
324
+ msgid ""
325
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
327
+ "configuration file. It allows you to easily import the configuration into "
328
+ "another website."
329
+ msgstr ""
330
+
331
+ #: core/options-pages.php:572
332
+ msgid "Export Plugin Settings"
333
+ msgstr "プラグイン設定をエクスポート"
334
+
335
+ #: core/options-pages.php:582
336
+ msgid "Import"
337
+ msgstr "インポート"
338
+
339
+ #: core/options-pages.php:586
340
+ msgid ""
341
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
343
+ "configuration file which can be obtained by exporting the settings on "
344
+ "another website using the export button above."
345
+ msgstr ""
346
+
347
+ #: core/options-pages.php:587
348
+ msgid ""
349
+ "All plugin settings will be overridden by the import. You will have a chance "
350
+ "to restore current data from an automatic backup in case you are not "
351
+ "satisfied with the result of the import."
352
+ msgstr ""
353
+
354
+ #: core/options-pages.php:594
355
+ msgid "Import Plugin Settings"
356
+ msgstr "プラグイン設定をインポート"
357
+
358
+ #: core/options-pages.php:606
359
+ msgid "Restore"
360
+ msgstr "リストア(復元する)"
361
+
362
+ #: core/options-pages.php:612
363
+ msgid "No backup available at the moment."
364
+ msgstr "現在利用できるバックアップはありません。"
365
+
366
+ #: core/options-pages.php:614
367
+ msgid "Backup will be created automatically before any import operation."
368
+ msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
369
+
370
+ #: core/options-pages.php:618
371
+ msgid ""
372
+ "The backup has been automatically created before the latest import operation."
373
+ msgstr ""
374
+
375
+ #: core/options-pages.php:622
376
+ msgid "Restore Settings from the Backup"
377
+ msgstr "バックアップから設定を復元させて下さい。"
378
+
379
+ #: core/options-pages.php:642
380
+ msgid "What will be deleted:"
381
+ msgstr ""
382
+
383
+ #: core/options-pages.php:647
384
+ msgid "All plugin options"
385
+ msgstr ""
386
+
387
+ #: core/options-pages.php:648
388
+ msgid "All plugin backups stored in database"
389
+ msgstr ""
390
+
391
+ #: core/options-pages.php:652
392
+ msgid "What will remain intact:"
393
+ msgstr ""
394
+
395
+ #: core/options-pages.php:653
396
+ msgid "All media items"
397
+ msgstr ""
398
+
399
+ #: core/options-pages.php:654
400
+ msgid "All taxonomies not listed above"
401
+ msgstr ""
402
+
403
+ #: core/options-pages.php:657
404
+ msgid ""
405
+ "The plugin cannot delete itself because of security reason. Please delete it "
406
+ "manually from plugin list after cleanup."
407
+ msgstr ""
408
+
409
+ #: core/options-pages.php:659
410
+ msgid ""
411
+ "If you are not sure about this operation please create a backup of your "
412
+ "database prior to cleanup!"
413
+ msgstr ""
414
+
415
+ #: core/options-pages.php:665
416
+ msgid "Delete All Data & Deactivate"
417
+ msgstr ""
418
+
419
+ #: core/options-pages.php:765
420
+ msgid "Please upload a file to import settings."
421
+ msgstr "設定をインポートするファイルをアップロードしてください。"
422
+
423
+ #: core/options-pages.php:791
424
+ msgid "Plugin settings imported."
425
+ msgstr "プラグインの設定がインポートされました。"
426
+
427
+ #: core/options-pages.php:838
428
+ msgid "Plugin settings restored from the backup."
429
+ msgstr "プラグインの設定は、バックアップから復元させて下さい。"
430
+
431
+ #: core/options-pages.php:1027
432
+ msgid "Media Items Order"
433
+ msgstr ""
434
+
435
+ #: core/options-pages.php:1034
436
+ msgid "Order media items by"
437
+ msgstr "メディアアイテムの順番"
438
+
439
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
440
+ #: pro/core/medialist.php:73
441
+ msgid "Date"
442
+ msgstr "日付"
443
+
444
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
445
+ #: pro/core/medialist.php:76
446
+ msgid "Title"
447
+ msgstr "タイトル"
448
+
449
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
450
+ #: pro/core/medialist.php:79
451
+ msgid "Custom Order"
452
+ msgstr "カスタムオーダー"
453
+
454
+ #: core/options-pages.php:1041 core/options-pages.php:1053
455
+ msgid "For media library and media popups"
456
+ msgstr "メディアライブラリとメディアポップアップについて"
457
+
458
+ #: core/options-pages.php:1042
459
+ msgid "Option allows to change order by drag and drop with Custom Order value."
460
+ msgstr ""
461
+ "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
462
+ "ロップすることができます。"
463
+
464
+ #: core/options-pages.php:1047
465
+ msgid "Sort order"
466
+ msgstr "ソート順"
467
+
468
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
469
+ #: pro/core/medialist.php:92
470
+ msgid "Ascending"
471
+ msgstr "昇順"
472
+
473
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
474
+ #: pro/core/medialist.php:95
475
+ msgid "Descending"
476
+ msgstr "降順"
477
+
478
+ #: core/options-pages.php:1066
479
+ msgid "Media Shortcodes"
480
+ msgstr "メディアのショートコード"
481
+
482
+ #: core/options-pages.php:1073 core/options-pages.php:1076
483
+ msgid "Enhanced media shortcodes"
484
+ msgstr "強化されたメディアのショートコード"
485
+
486
+ #: core/options-pages.php:1077
487
+ msgid ""
488
+ "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
+ "upload date, and media items number limit"
490
+ msgstr ""
491
+ "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
492
+ "メディア・アイテム数の上限を取得させます。"
493
+
494
+ #: core/options-pages.php:1078
495
+ msgid "Gallery example:"
496
+ msgstr "ギャラリーの例:"
497
+
498
+ #: core/options-pages.php:1079
499
+ msgid "Audio playlist example:"
500
+ msgstr "オーディオプレイリストの例:"
501
+
502
+ #: core/options-pages.php:1080
503
+ msgid "Video playlist example:"
504
+ msgstr "ビデオプレイリストの例:"
505
+
506
+ #: core/options-pages.php:1082
507
+ #, php-format
508
+ msgid ""
509
+ "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
510
+ msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
511
+
512
+ #: core/options-pages.php:1084
513
+ #, php-format
514
+ msgid "%sLearn more%s."
515
+ msgstr "%sもっと詳しく%s."
516
+
517
+ #: core/options-pages.php:1086
518
+ #, php-format
519
+ msgid ""
520
+ "Please check out your gallery front-end and back-end functionality once this "
521
+ "option activated. If you find an issue please inform plugin authors at %s or "
522
+ "%s."
523
+ msgstr ""
524
+ "あなたのギャラリーフロントエンドをチェックアウトし、活性化するには、このオプ"
525
+ "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
526
+ "イン作者までご連絡ください %s か %s."
527
+
528
+ #: core/options-pages.php:1155 core/options-pages.php:1302
529
+ msgid "Assign following taxonomies to Media Library:"
530
+ msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
531
+
532
+ #: core/options-pages.php:1174 core/options-pages.php:1240
533
+ #: core/options-pages.php:1324
534
+ msgid "Assign Taxonomy"
535
+ msgstr "タクソノミーを割り当て"
536
+
537
+ #: core/options-pages.php:1175 core/options-pages.php:1325
538
+ msgid "Edit Taxonomy"
539
+ msgstr "タクソノミーの編集"
540
+
541
+ #: core/options-pages.php:1179 core/options-pages.php:1242
542
+ msgid "Delete Taxonomy"
543
+ msgstr "タクソノミーを削除します"
544
+
545
+ #: core/options-pages.php:1184 core/options-pages.php:1247
546
+ msgid "Labels"
547
+ msgstr "ラベル"
548
+
549
+ #: core/options-pages.php:1186 core/options-pages.php:1249
550
+ msgid "Singular"
551
+ msgstr "単数"
552
+
553
+ #: core/options-pages.php:1187 core/options-pages.php:1250
554
+ msgid "Plural"
555
+ msgstr "複数"
556
+
557
+ #: core/options-pages.php:1188 core/options-pages.php:1251
558
+ msgid "Menu Name"
559
+ msgstr "メニュー名"
560
+
561
+ #: core/options-pages.php:1201 core/options-pages.php:1224
562
+ #: core/options-pages.php:1264 core/options-pages.php:1328
563
+ msgid "Settings"
564
+ msgstr "設定"
565
+
566
+ #: core/options-pages.php:1203 core/options-pages.php:1266
567
+ msgid "Taxonomy Name"
568
+ msgstr "タクソノミー名"
569
+
570
+ #: core/options-pages.php:1204 core/options-pages.php:1267
571
+ msgid "Hierarchical"
572
+ msgstr "階層"
573
+
574
+ #: core/options-pages.php:1205 core/options-pages.php:1268
575
+ msgid "Column for List View"
576
+ msgstr "リスト表示の列"
577
+
578
+ #: core/options-pages.php:1206 core/options-pages.php:1226
579
+ #: core/options-pages.php:1269 core/options-pages.php:1330
580
+ msgid "Filter for List View"
581
+ msgstr "リスト表示のフィルター"
582
+
583
+ #: core/options-pages.php:1207 core/options-pages.php:1227
584
+ #: core/options-pages.php:1270 core/options-pages.php:1331
585
+ msgid "Filter for Grid View / Media Popup"
586
+ msgstr "グリット表示/メディアポップアップのフィルター"
587
+
588
+ #: core/options-pages.php:1208 core/options-pages.php:1228
589
+ #: core/options-pages.php:1271 core/options-pages.php:1332
590
+ msgid "Edit in Media Popup"
591
+ msgstr "メディアポップアップの編集"
592
+
593
+ #: core/options-pages.php:1209 core/options-pages.php:1272
594
+ msgid "Show in Nav Menu"
595
+ msgstr "ナビゲーションメニューに表示"
596
+
597
+ #: core/options-pages.php:1210 core/options-pages.php:1273
598
+ msgid "Remember Terms Order (sort)"
599
+ msgstr ""
600
+
601
+ #: core/options-pages.php:1211 core/options-pages.php:1274
602
+ msgid "Show in REST"
603
+ msgstr "リストに表示"
604
+
605
+ #: core/options-pages.php:1212 core/options-pages.php:1275
606
+ msgid "Rewrite Slug"
607
+ msgstr "スラッグを書き換え"
608
+
609
+ #: core/options-pages.php:1213 core/options-pages.php:1276
610
+ msgid "Slug with Front"
611
+ msgstr "フロントとスラッグ"
612
+
613
+ #: core/options-pages.php:1288
614
+ msgid "Add New Taxonomy"
615
+ msgstr "新しいタクソノミーを追加"
616
+
617
+ #: core/options-pages.php:1298
618
+ msgid "Non-Media Taxonomies"
619
+ msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
620
+
621
+ #: core/options-pages.php:1361
622
+ msgid "Options"
623
+ msgstr "オプション"
624
+
625
+ #: core/options-pages.php:1371 core/options-pages.php:1374
626
+ msgid "Taxonomy archive pages"
627
+ msgstr "タクソノミーのアーカイブページ"
628
+
629
+ #: core/options-pages.php:1375
630
+ msgid "Turn on media taxonomy archive pages on the front-end"
631
+ msgstr ""
632
+ "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
633
+
634
+ #: core/options-pages.php:1376
635
+ msgid ""
636
+ "Re-save your permalink settings after this option change to make it work."
637
+ msgstr ""
638
+ "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
639
+ "しましょう。"
640
+
641
+ #: core/options-pages.php:1382 core/options-pages.php:1385
642
+ msgid "Assign all like hierarchical"
643
+ msgstr "階層のように全て割り当てます"
644
+
645
+ #: core/options-pages.php:1386
646
+ msgid ""
647
+ "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
648
+ msgstr ""
649
+ "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
650
+ "する"
651
+
652
+ #: core/options-pages.php:1392 core/options-pages.php:1395
653
+ msgid "Force filters"
654
+ msgstr "フォースフィルター"
655
+
656
+ #: core/options-pages.php:1396
657
+ msgid "Show media filters for ANY Media Popup"
658
+ msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
659
+
660
+ #: core/options-pages.php:1397
661
+ msgid "Try this if filters are not shown for third-party plugins or themes."
662
+ msgstr ""
663
+ "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
664
+ "試してみてください。"
665
+
666
+ #: core/options-pages.php:1403 core/options-pages.php:1406
667
+ msgid "Show count"
668
+ msgstr ""
669
+
670
+ #: core/options-pages.php:1407
671
+ msgid "Show item count per category for media filters"
672
+ msgstr ""
673
+
674
+ #: core/options-pages.php:1461
675
+ msgid "Add New MIME Type"
676
+ msgstr "MIMEタイプ新規追加"
677
+
678
+ #: core/options-pages.php:1481 core/options-pages.php:1536
679
+ msgid "Extension"
680
+ msgstr "拡張子"
681
+
682
+ #: core/options-pages.php:1482 core/options-pages.php:1537
683
+ msgid "MIME Type"
684
+ msgstr "MIMEタイプ"
685
+
686
+ #: core/options-pages.php:1483 core/options-pages.php:1538
687
+ msgid "Singular Label"
688
+ msgstr "単数のラベル"
689
+
690
+ #: core/options-pages.php:1484 core/options-pages.php:1539
691
+ msgid "Plural Label"
692
+ msgstr "複数のラベル"
693
+
694
+ #: core/options-pages.php:1485 core/options-pages.php:1515
695
+ #: core/options-pages.php:1528 core/options-pages.php:1540
696
+ msgid "Add Filter"
697
+ msgstr "フィルタを追加"
698
+
699
+ #: core/options-pages.php:1486 core/options-pages.php:1516
700
+ #: core/options-pages.php:1529 core/options-pages.php:1541
701
+ msgid "Allow Upload"
702
+ msgstr "アップロードを許可"
703
+
704
+ #: core/options-pages.php:1517 core/options-pages.php:1530
705
+ msgid "Delete MIME Type"
706
+ msgstr "MIMEタイプを削除します"
707
+
708
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
709
+ msgid "Save Changes"
710
+ msgstr "変更内容を保存"
711
+
712
+ #: core/options-pages.php:1607
713
+ msgid "Changelog"
714
+ msgstr ""
715
+
716
+ #: core/options-pages.php:1608
717
+ msgid "What's new in"
718
+ msgstr ""
719
+
720
+ #: core/options-pages.php:1608
721
+ msgid "version"
722
+ msgstr ""
723
+
724
+ #: core/options-pages.php:1611
725
+ msgid "More features under the hood"
726
+ msgstr ""
727
+
728
+ #: core/options-pages.php:1613
729
+ msgid "Support"
730
+ msgstr ""
731
+
732
+ #: core/options-pages.php:1614
733
+ msgid "Feel free to ask for help on"
734
+ msgstr ""
735
+
736
+ #: core/options-pages.php:1614
737
+ msgid "Support is free for both versions of the plugin."
738
+ msgstr ""
739
+
740
+ #: core/options-pages.php:1616
741
+ msgid "Plugin rating"
742
+ msgstr ""
743
+
744
+ #: core/options-pages.php:1617
745
+ msgid "Please"
746
+ msgstr ""
747
+
748
+ #: core/options-pages.php:1617
749
+ msgid "vote for the plugin"
750
+ msgstr ""
751
+
752
+ #: core/options-pages.php:1617
753
+ msgid "Thanks!"
754
+ msgstr ""
755
+
756
+ #: core/options-pages.php:1619
757
+ msgid "Other plugins you may find useful"
758
+ msgstr ""
759
+
760
+ #: core/options-pages.php:1658
761
+ msgid "Utility"
762
+ msgstr ""
763
+
764
+ #: core/options-pages.php:1681
765
+ msgid "Vote!"
766
+ msgstr ""
767
+
768
+ #: core/taxonomies.php:101
769
+ msgid "Media Taxonomies settings saved."
770
+ msgstr ""
771
+
772
+ #: core/taxonomies.php:159
773
+ msgid "Media Library settings saved."
774
+ msgstr ""
775
+
776
+ #: core/taxonomies.php:333 core/taxonomies.php:339
777
+ #: enhanced-media-library.php:502
778
+ msgid "Filter by"
779
+ msgstr ""
780
+
781
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
782
+ msgid "Not in a"
783
+ msgstr ""
784
+
785
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
786
+ msgid "All Uncategorized"
787
+ msgstr "未分類"
788
+
789
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
790
+ msgid "Reset All Filters"
791
+ msgstr "絞り込みを解除"
792
+
793
+ #: enhanced-media-library.php:535
794
+ msgid "Uploaded to post #"
795
+ msgstr "投稿をアップロード #"
796
+
797
+ #: enhanced-media-library.php:536
798
+ msgid "Based On"
799
+ msgstr ""
800
+
801
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
802
+ msgid "Media Categories"
803
+ msgstr ""
804
+
805
+ #: enhanced-media-library.php:582
806
+ msgid "Media Category"
807
+ msgstr ""
808
+
809
+ #: enhanced-media-library.php:584
810
+ msgid "All Media Categories"
811
+ msgstr ""
812
+
813
+ #: enhanced-media-library.php:585
814
+ msgid "Edit Media Category"
815
+ msgstr ""
816
+
817
+ #: enhanced-media-library.php:586
818
+ msgid "View Media Category"
819
+ msgstr ""
820
+
821
+ #: enhanced-media-library.php:587
822
+ msgid "Update Media Category"
823
+ msgstr ""
824
+
825
+ #: enhanced-media-library.php:588
826
+ msgid "Add New Media Category"
827
+ msgstr ""
828
+
829
+ #: enhanced-media-library.php:589
830
+ msgid "New Media Category Name"
831
+ msgstr ""
832
+
833
+ #: enhanced-media-library.php:590
834
+ msgid "Parent Media Category"
835
+ msgstr ""
836
+
837
+ #: enhanced-media-library.php:591
838
+ msgid "Parent Media Category:"
839
+ msgstr ""
840
+
841
+ #: enhanced-media-library.php:592
842
+ msgid "Search Media Categories"
843
+ msgstr ""
844
+
845
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
846
+ msgid "Remove"
847
+ msgstr "削除"
848
+
849
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
850
+ msgid "Deselect"
851
+ msgstr "選択を解除"
852
+
853
+ #: pro/core/bulk-edit.php:105
854
+ msgid "Caption this image&hellip;"
855
+ msgstr "この画像をキャプション&hellip;"
856
+
857
+ #: pro/core/bulk-edit.php:109
858
+ msgid "Describe this video&hellip;"
859
+ msgstr "このビデオを説明してください&hellip;"
860
+
861
+ #: pro/core/bulk-edit.php:111
862
+ msgid "Describe this audio file&hellip;"
863
+ msgstr "このオーディオファイルを説明してください&hellip;"
864
+
865
+ #: pro/core/bulk-edit.php:113
866
+ msgid "Describe this media file&hellip;"
867
+ msgstr "このメディアファイルを記述します&hellip;"
868
+
869
+ #: pro/core/bulk-edit.php:122
870
+ msgid "Attachments Details"
871
+ msgstr "添付ファイルの詳細"
872
+
873
+ #: pro/core/bulk-edit.php:175
874
+ msgid "Select All"
875
+ msgstr "全て選択"
876
+
877
+ #: pro/core/bulk-edit.php:176
878
+ msgid "Deselect All"
879
+ msgstr "全ての選択を解除"
880
+
881
+ #: pro/core/bulk-edit.php:177
882
+ msgid "Delete Selected"
883
+ msgstr "選択を削除します"
884
+
885
+ #: pro/core/bulk-edit.php:178
886
+ msgid "Trash Selected"
887
+ msgstr ""
888
+
889
+ #: pro/core/bulk-edit.php:179
890
+ msgid "Restore Selected"
891
+ msgstr ""
892
+
893
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
894
+ msgid "Delete Selected Permanently"
895
+ msgstr ""
896
+
897
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
898
+ msgid "Order By"
899
+ msgstr ""
900
+
901
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
902
+ msgid "Random"
903
+ msgstr "ランダム"
904
+
905
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
906
+ msgid "Order"
907
+ msgstr " 並び順"
908
+
909
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
910
+ msgid "Limit"
911
+ msgstr "制限"
912
+
913
+ #: pro/core/options-pages.php:78
914
+ msgid "Your license has been deactivated."
915
+ msgstr "あなたのライセンスが無効になっています。"
916
+
917
+ #: pro/core/options-pages.php:88
918
+ msgid "Please check if your license key is correct and try again."
919
+ msgstr "ライセンスキーが正しいかどうかを確認して、もう一度お試しください。"
920
+
921
+ #: pro/core/options-pages.php:104
922
+ #, php-format
923
+ msgid ""
924
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
925
+ "authors</a>."
926
+ msgstr ""
927
+
928
+ #: pro/core/options-pages.php:119
929
+ #, php-format
930
+ msgid ""
931
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
932
+ "plugin authors</a>."
933
+ msgstr ""
934
+
935
+ #: pro/core/options-pages.php:130
936
+ msgid "You license has been activated."
937
+ msgstr "活性化されているライセンスを許諾します。"
938
+
939
+ #: pro/core/options-pages.php:184
940
+ #, php-format
941
+ msgid "Auto-assign media items to parent %s %s on upload"
942
+ msgstr ""
943
+
944
+ #: pro/core/options-pages.php:185
945
+ #, php-format
946
+ msgid ""
947
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
948
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
949
+ "assigned %s will not be saved. Media items that are not attached to any %s "
950
+ "will not be affected."
951
+ msgstr ""
952
+
953
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
954
+ msgid "Bulk Edit"
955
+ msgstr "一括編集"
956
+
957
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
958
+ msgid "Turn off 'Save Changes' button"
959
+ msgstr "[変更を保存]ボタンオフ"
960
+
961
+ #: pro/core/options-pages.php:220
962
+ msgid "Save changes on the fly"
963
+ msgstr "変更内容を保存"
964
+
965
+ #: pro/core/options-pages.php:221
966
+ msgid ""
967
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
968
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
969
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
970
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
971
+ "files / taxonomies with this option turned on."
972
+ msgstr ""
973
+ "メディアの間に分類するチェックボックス上の任意のクリックは、バルク版に繋がる"
974
+ "ファイルデータを<strong style=\"color:red\">即時保存する</strong>ので 気を付"
975
+ "けてください!あなたには大きなチャンスがあります<strong style=\"color:red\">"
976
+ "間違っても再割り当てを行います</strong> 多くのメディアファイル/このオプション"
977
+ "を指定したタクソノミーをオンにします。"
978
+
979
+ #: pro/core/options-pages.php:222
980
+ msgid ""
981
+ "Strongly NOT recommended option if you work with more than hundred of files "
982
+ "at a time."
983
+ msgstr "一度に100以上のファイルで作業する場合オプションを推奨しません。"
984
+
985
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
986
+ msgid "License Key"
987
+ msgstr "ライセンスキー"
988
+
989
+ #: pro/core/options-pages.php:273
990
+ #, php-format
991
+ msgid ""
992
+ "To unlock updates please enter your license key below. You can get your "
993
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
994
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
995
+ msgstr ""
996
+ "アップデートのロックを解除するには、以下のライセンスキーを入力してください。"
997
+ "あなたのライセンスキーを取得することができます<a href=\"%s\">あなたのアカウン"
998
+ "ト</a>に。ライセンスをお持ちでない場合は、歓迎しています<a href=\"%s\">購入</"
999
+ "a>に。"
1000
+
1001
+ #: pro/core/options-pages.php:283
1002
+ msgid "Activate License"
1003
+ msgstr "ライセンスを有効化"
1004
+
1005
+ #: pro/core/options-pages.php:290
1006
+ msgid "Your license is active!"
1007
+ msgstr "ライセンスがアクティブになっています!"
1008
+
1009
+ #: pro/core/options-pages.php:294
1010
+ msgid "Deactivate License"
1011
+ msgstr "ライセンスを無効化"
1012
+
1013
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1014
+ msgid ""
1015
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
1016
+ "this server&#8217;s configuration. If you continue to have problems, please "
1017
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1018
+ msgstr ""
1019
+ "予期しないエラーが発生しました。WordPress.orgまたは、このサーバーで何かが間"
1020
+ "違っている可能性があります&#8217;s 設定。問題が解決しない場合は、試してみてく"
1021
+ "ださい<a href=\"https://wordpress.org/support/\">サポートフォーラム</a>."
1022
+
1023
+ #: pro/core/update.php:113
1024
+ msgid ""
1025
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1026
+ "contact your server administrator.)"
1027
+ msgstr ""
1028
+ "(WordPressはWordPress.orgへの安全な接続を確立できませんでした。サーバー管理"
1029
+ "者に問い合わせてください。)"
1030
+
1031
+ #: pro/core/update.php:181
1032
+ #, php-format
1033
+ msgid ""
1034
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1035
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1036
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1037
+ msgstr ""
1038
+ "アップデートのロックを解除するには、 <a href=\"%s\">ライセンス</a>を活性化さ"
1039
+ "せる<a href=\"%s\">あなたはライセンスキーはアカウント</a>を得ることができま"
1040
+ "す。ライセンスをお持ちでない場合は、<a href=\"%s\">が購入を歓迎しています。</"
1041
+ "a>"
1042
+
1043
+ #: pro/enhanced-media-library-pro.php:119
1044
+ msgid "ALL files belong to this item"
1045
+ msgstr "全てのファイルはこの項目に属しています"
1046
+
1047
+ #: pro/enhanced-media-library-pro.php:120
1048
+ msgid "SOME files belong to this item"
1049
+ msgstr "いくつかのファイルは、この項目に属しています"
1050
+
1051
+ #: pro/enhanced-media-library-pro.php:121
1052
+ msgid "NO files belong to this item"
1053
+ msgstr "ファイルなし この項目に属していません"
1054
+
1055
+ #: pro/enhanced-media-library-pro.php:122
1056
+ msgid "Changes saved."
1057
+ msgstr "変更が保存されました。"
1058
+
1059
+ #: pro/enhanced-media-library-pro.php:123
1060
+ msgid "Something went wrong."
1061
+ msgstr "何かが間違っています。"
1062
+
1063
+ #: pro/enhanced-media-library-pro.php:126
1064
+ msgid "Edit Media Files"
1065
+ msgstr "メディアファイル編集"
1066
+
1067
+ #: pro/enhanced-media-library-pro.php:129
1068
+ msgid "Selecting"
1069
+ msgstr ""
1070
+
1071
+ #: pro/enhanced-media-library-pro.php:131
1072
+ msgid "You are about to permanently delete all selected items."
1073
+ msgstr ""
1074
+
1075
+ #: pro/enhanced-media-library-pro.php:132
1076
+ msgid "Delete"
1077
+ msgstr ""
1078
+
1079
+ #: pro/enhanced-media-library-pro.php:134
1080
+ msgid "Moving to Trash"
1081
+ msgstr ""
1082
+
1083
+ #: pro/enhanced-media-library-pro.php:135
1084
+ msgid "Restoring"
1085
+ msgstr ""
1086
+
1087
+ #: pro/enhanced-media-library-pro.php:136
1088
+ msgid "Deleting"
1089
+ msgstr ""
1090
+
1091
+ #: pro/enhanced-media-library-pro.php:160
1092
+ msgid "Create a filter-based gallery"
1093
+ msgstr "フィルターベースのギャラリーを作成します。"
1094
+
1095
+ #: pro/enhanced-media-library-pro.php:161
1096
+ msgid "Create a filter-based playlist"
1097
+ msgstr "フィルターベースのプレイリストを作成します。"
1098
+
1099
+ #: pro/enhanced-media-library-pro.php:162
1100
+ msgid "Create a filter-based video playlist"
1101
+ msgstr "フィルターベースのビデオプレイリストを作成します。"
1102
+
1103
+ #: pro/enhanced-media-library-pro.php:240
1104
+ msgid ""
1105
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1106
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1107
+ "will remain intact."
1108
+ msgstr ""
1109
+ "無効化してください<strong>削除</strong>の前に古い無料版を。<strong>Enhanced "
1110
+ "Media Library PRO</ strong>の活性化。すべてのデータはそのまま残ります。"
1111
+
1112
+ #: pro/enhanced-media-library-pro.php:240
1113
+ msgid "Return to Plugins"
1114
+ msgstr "プラグインに戻ります"
1115
+
1116
+ #: pro/enhanced-media-library-pro.php:291
1117
+ msgid ""
1118
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1119
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1120
+ "be active. Please network deactivate and delete the free versions of the "
1121
+ "plugin. All your data will remain intact."
1122
+ msgstr ""
1123
+
1124
+ #: pro/enhanced-media-library-pro.php:308
1125
+ msgid ""
1126
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1127
+ "be active. Please deactivate and delete the free version of the plugin. All "
1128
+ "your data will remain intact."
1129
+ msgstr ""
1130
+ "<strong>Enhanced Media Library PRO</strong> は無料版を必要としません。有効化"
1131
+ "します。無効化し、プラグインの無料版を削除してください。全てのデータはそのま"
1132
+ "ま残ります。"
1133
+
1134
+ #: pro/enhanced-media-library-pro.php:324
1135
+ msgid ""
1136
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1137
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1138
+ "version to be active. Please deactivate (or network deactivate) and delete "
1139
+ "the free version of the plugin for this site. All your data will remail "
1140
+ "intact."
1141
+ msgstr ""
1142
+ "Enhanced Media Library の無料版とPROバージョンでは、どちらもこのサイトの有効"
1143
+ "です。 <strong>Enhanced Media Library PRO</strong>を有効化にする場合無料版を"
1144
+ "必要としません。無効化(またはネットワーク無効化)し、このサイトのプラグイン"
1145
+ "の無料版を削除してください。全てのデータはそのまま残ります。"
1146
+
1147
+ #. Plugin Name of the plugin/theme
1148
+ msgid "Enhanced Media Library PRO"
1149
+ msgstr ""
1150
+
1151
+ #. Plugin URI of the plugin/theme
1152
+ #. Author URI of the plugin/theme
1153
+ msgid "http://wpUXsolutions.com"
1154
+ msgstr ""
1155
+
1156
+ #. Description of the plugin/theme
1157
+ msgid ""
1158
+ "This plugin will be handy for those who need to manage a lot of media files."
1159
+ msgstr ""
1160
+
1161
+ #. Author of the plugin/theme
1162
+ msgid "wpUXsolutions"
1163
+ msgstr ""
languages/enhanced-media-library-ko_KR.mo CHANGED
Binary file
languages/enhanced-media-library-ko_KR.po CHANGED
@@ -2,26 +2,19 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-09 17:44+0300\n"
6
- "PO-Revision-Date: 2016-08-09 17:44+0300\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: ko\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.8.8\n"
16
- "X-Poedit-Basepath: ..\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Loco-Target-Locale: ko_KR\n"
23
- "X-Poedit-SearchPath-0: .\n"
24
- "X-Poedit-SearchPathExcluded-0: *.js\n"
25
 
26
  #: core/mime-types.php:30
27
  msgid "MIME Types settings restored."
@@ -35,15 +28,15 @@ msgstr ""
35
  #, php-format
36
  msgid " <span class=\"count\">(%s)</span>"
37
  msgid_plural " <span class=\"count\">(%s)</span>"
38
- msgstr[0] "<span class=\"count\">(%s)</span>"
39
 
40
- #: core/options-pages.php:97 core/options-pages.php:236
41
- #: core/options-pages.php:1003 core/options-pages.php:1128
42
- #: core/options-pages.php:1451 core/options-pages.php:1651
43
  msgid "Media Settings"
44
  msgstr "미디어 설정"
45
 
46
- #: core/options-pages.php:106 core/options-pages.php:208
47
  msgid "Media Library"
48
  msgstr "미디어 라이브러리"
49
 
@@ -51,7 +44,7 @@ msgstr "미디어 라이브러리"
51
  msgid "Taxonomies"
52
  msgstr "카테고리"
53
 
54
- #: core/options-pages.php:124 core/options-pages.php:210
55
  msgid "MIME Types"
56
  msgstr "MIME 유형"
57
 
@@ -59,273 +52,274 @@ msgstr "MIME 유형"
59
  msgid "Enhanced Media Library"
60
  msgstr "Enhanced Media Library"
61
 
62
- #: core/options-pages.php:207
63
  msgid "General"
64
  msgstr ""
65
 
66
- #: core/options-pages.php:209 core/options-pages.php:1149
67
  msgid "Media Taxonomies"
68
  msgstr "미디어 카테고리"
69
 
70
- #: core/options-pages.php:233 core/options-pages.php:545
71
- #: core/options-pages.php:999 core/options-pages.php:1124
72
- #: core/options-pages.php:1447
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr "이 페이지에 접근할 권한이 없습니다."
75
 
76
- #: core/options-pages.php:247
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
- #: core/options-pages.php:248
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
- #: core/options-pages.php:252
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
- #: core/options-pages.php:254
91
  msgid "Width"
92
  msgstr ""
93
 
94
- #: core/options-pages.php:256
95
  msgid "Height"
96
  msgstr ""
97
 
98
- #: core/options-pages.php:259
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
- #: core/options-pages.php:264 core/options-pages.php:265
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
- #: core/options-pages.php:266 core/options-pages.php:276
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
- #: core/options-pages.php:268 core/options-pages.php:278
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
- #: core/options-pages.php:274 core/options-pages.php:275
116
  msgid "Large size"
117
  msgstr ""
118
 
119
- #: core/options-pages.php:291
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
- #: core/options-pages.php:298
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
- #: core/options-pages.php:305
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
- #: core/options-pages.php:309
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
- #: core/options-pages.php:315
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
- #: core/options-pages.php:317
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
- #: core/options-pages.php:325
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:397 core/options-pages.php:1173
149
- #: core/options-pages.php:1188 core/options-pages.php:1251
150
- #: core/options-pages.php:1320
151
  msgid "Edit"
152
  msgstr "편집"
153
 
154
- #: core/options-pages.php:398
155
  msgid "Close"
156
  msgstr "닫기"
157
 
158
- #: core/options-pages.php:399 core/options-pages.php:1189
159
- #: core/options-pages.php:1252
160
  msgid "View"
161
  msgstr "보기"
162
 
163
- #: core/options-pages.php:400 core/options-pages.php:1190
164
- #: core/options-pages.php:1253
165
  msgid "Update"
166
  msgstr "업데이트"
167
 
168
- #: core/options-pages.php:401 core/options-pages.php:1191
169
- #: core/options-pages.php:1254
170
  msgid "Add New"
171
  msgstr "새로 추가하기"
172
 
173
- #: core/options-pages.php:402 core/options-pages.php:1192
174
- #: core/options-pages.php:1255
175
  msgid "New"
176
  msgstr "신규"
177
 
178
- #: core/options-pages.php:403
179
  msgid "Name"
180
  msgstr "이름"
181
 
182
- #: core/options-pages.php:404 core/options-pages.php:1193
183
- #: core/options-pages.php:1256
184
  msgid "Parent"
185
  msgstr "부모"
186
 
187
- #: core/options-pages.php:405 core/options-pages.php:641
188
- #: core/options-pages.php:1187 core/options-pages.php:1250
189
- #: core/taxonomies.php:348 enhanced-media-library.php:485
190
  msgid "All"
191
  msgstr "모두"
192
 
193
- #: core/options-pages.php:406 core/options-pages.php:1194
194
- #: core/options-pages.php:1257
195
  msgid "Search"
196
  msgstr "검색"
197
 
198
- #: core/options-pages.php:408 core/options-pages.php:1238
199
  msgid "New Taxonomy"
200
  msgstr "새로운 카테고리"
201
 
202
- #: core/options-pages.php:410
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
- #: core/options-pages.php:411
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
- #: core/options-pages.php:412
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
- #: core/options-pages.php:413
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
- #: core/options-pages.php:414
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
- #: core/options-pages.php:415
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
- #: core/options-pages.php:417
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
- #: core/options-pages.php:418
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr ""
236
 
237
- #: core/options-pages.php:420
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
- #: core/options-pages.php:421
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:422
246
  msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:423
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
- #: core/options-pages.php:425
254
  msgid "Ok"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:475 core/options-pages.php:520
 
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:428
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:429 core/options-pages.php:517
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:430
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
- #: core/options-pages.php:432
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:470 core/options-pages.php:1575
279
  msgid "Restore WordPress default MIME Types"
280
  msgstr ""
281
 
282
- #: core/options-pages.php:471
283
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
284
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
285
 
286
- #: core/options-pages.php:472
287
  msgid "Restore Defaults"
288
  msgstr ""
289
 
290
- #: core/options-pages.php:473
291
  msgid "Restoring..."
292
  msgstr ""
293
 
294
- #: core/options-pages.php:477
295
  msgid "Please fill into all fields."
296
  msgstr "모든 필드에 입력해주세요."
297
 
298
- #: core/options-pages.php:478
299
  msgid "Duplicate extensions or MIME types. Please chose other one."
300
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
301
 
302
- #: core/options-pages.php:515 core/options-pages.php:632
303
  msgid "Complete Cleanup"
304
  msgstr ""
305
 
306
- #: core/options-pages.php:516
307
  msgid ""
308
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
309
  "plugin data</strong> from the database including backups."
310
  msgstr ""
311
 
312
- #: core/options-pages.php:518
313
  msgid "Yes, delete all data"
314
  msgstr ""
315
 
316
- #: core/options-pages.php:519
317
  msgid "Cleaning..."
318
  msgstr ""
319
 
320
- #: core/options-pages.php:550
321
  msgid "Enhanced Media Library Settings"
322
  msgstr ""
323
 
324
- #: core/options-pages.php:560
325
  msgid "Export"
326
  msgstr ""
327
 
328
- #: core/options-pages.php:564
329
  msgid ""
330
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
331
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -333,15 +327,15 @@ msgid ""
333
  "another website."
334
  msgstr ""
335
 
336
- #: core/options-pages.php:569
337
  msgid "Export Plugin Settings"
338
  msgstr ""
339
 
340
- #: core/options-pages.php:579
341
  msgid "Import"
342
  msgstr ""
343
 
344
- #: core/options-pages.php:583
345
  msgid ""
346
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
347
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -349,168 +343,173 @@ msgid ""
349
  "another website using the export button above."
350
  msgstr ""
351
 
352
- #: core/options-pages.php:584
353
  msgid ""
354
  "All plugin settings will be overridden by the import. You will have a chance "
355
  "to restore current data from an automatic backup in case you are not "
356
  "satisfied with the result of the import."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:591
360
  msgid "Import Plugin Settings"
361
  msgstr ""
362
 
363
- #: core/options-pages.php:603
364
  msgid "Restore"
365
  msgstr ""
366
 
367
- #: core/options-pages.php:609
368
  msgid "No backup available at the moment."
369
  msgstr ""
370
 
371
- #: core/options-pages.php:611
372
  msgid "Backup will be created automatically before any import operation."
373
  msgstr ""
374
 
375
- #: core/options-pages.php:615
376
  msgid ""
377
  "The backup has been automatically created before the latest import operation."
378
  msgstr ""
379
 
380
- #: core/options-pages.php:619
381
  msgid "Restore Settings from the Backup"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:639
385
  msgid "What will be deleted:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:644
389
  msgid "All plugin options"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:645
393
  msgid "All plugin backups stored in database"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:649
397
  msgid "What will remain intact:"
398
  msgstr ""
399
 
400
- #: core/options-pages.php:650
401
  msgid "All media items"
402
  msgstr ""
403
 
404
- #: core/options-pages.php:651
405
  msgid "All taxonomies not listed above"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:654
409
  msgid ""
410
  "The plugin cannot delete itself because of security reason. Please delete it "
411
  "manually from plugin list after cleanup."
412
  msgstr ""
413
 
414
- #: core/options-pages.php:656
415
  msgid ""
416
  "If you are not sure about this operation please create a backup of your "
417
  "database prior to cleanup!"
418
  msgstr ""
419
 
420
- #: core/options-pages.php:662
421
  msgid "Delete All Data & Deactivate"
422
  msgstr ""
423
 
424
- #: core/options-pages.php:762
425
  msgid "Please upload a file to import settings."
426
  msgstr ""
427
 
428
- #: core/options-pages.php:788
429
  msgid "Plugin settings imported."
430
  msgstr ""
431
 
432
- #: core/options-pages.php:835
433
  msgid "Plugin settings restored from the backup."
434
  msgstr ""
435
 
436
- #: core/options-pages.php:1024
437
  msgid "Media Items Order"
438
  msgstr ""
439
 
440
- #: core/options-pages.php:1031
441
  msgid "Order media items by"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1034
 
445
  msgid "Date"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1035
 
449
  msgid "Title"
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1036
 
453
  msgid "Custom Order"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1038 core/options-pages.php:1050
457
  msgid "For media library and media popups"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1039
461
  msgid "Option allows to change order by drag and drop with Custom Order value."
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1044
465
  msgid "Sort order"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1047
 
469
  msgid "Ascending"
470
  msgstr ""
471
 
472
- #: core/options-pages.php:1048
 
473
  msgid "Descending"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1063
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1070 core/options-pages.php:1073
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1074
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1075
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
- #: core/options-pages.php:1076
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1077
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1079
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1081
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
- #: core/options-pages.php:1083
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
@@ -518,237 +517,237 @@ msgid ""
518
  "%s."
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1153 core/options-pages.php:1300
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
524
 
525
- #: core/options-pages.php:1172 core/options-pages.php:1238
526
- #: core/options-pages.php:1319
527
  msgid "Assign Taxonomy"
528
  msgstr "카테고리 할당"
529
 
530
- #: core/options-pages.php:1173 core/options-pages.php:1320
531
  msgid "Edit Taxonomy"
532
  msgstr "카테고리 편집"
533
 
534
- #: core/options-pages.php:1177 core/options-pages.php:1240
535
  msgid "Delete Taxonomy"
536
  msgstr "카테고리 삭제"
537
 
538
- #: core/options-pages.php:1182 core/options-pages.php:1245
539
  msgid "Labels"
540
  msgstr "라벨"
541
 
542
- #: core/options-pages.php:1184 core/options-pages.php:1247
543
  msgid "Singular"
544
  msgstr "단수"
545
 
546
- #: core/options-pages.php:1185 core/options-pages.php:1248
547
  msgid "Plural"
548
  msgstr "복수"
549
 
550
- #: core/options-pages.php:1186 core/options-pages.php:1249
551
  msgid "Menu Name"
552
  msgstr "메뉴명"
553
 
554
- #: core/options-pages.php:1199 core/options-pages.php:1222
555
- #: core/options-pages.php:1262 core/options-pages.php:1323
556
  msgid "Settings"
557
  msgstr "설정"
558
 
559
- #: core/options-pages.php:1201 core/options-pages.php:1264
560
  msgid "Taxonomy Name"
561
  msgstr "카테고리명"
562
 
563
- #: core/options-pages.php:1202 core/options-pages.php:1265
564
  msgid "Hierarchical"
565
  msgstr "계층 구조"
566
 
567
- #: core/options-pages.php:1203 core/options-pages.php:1266
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
- #: core/options-pages.php:1204 core/options-pages.php:1224
572
- #: core/options-pages.php:1267 core/options-pages.php:1325
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
- #: core/options-pages.php:1205 core/options-pages.php:1225
577
- #: core/options-pages.php:1268 core/options-pages.php:1326
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
- #: core/options-pages.php:1206 core/options-pages.php:1226
582
- #: core/options-pages.php:1269 core/options-pages.php:1327
583
  msgid "Edit in Media Popup"
584
  msgstr "미디어 팝업에서 편집"
585
 
586
- #: core/options-pages.php:1207 core/options-pages.php:1270
587
  msgid "Show in Nav Menu"
588
  msgstr "탐색 메뉴에서 표시"
589
 
590
- #: core/options-pages.php:1208 core/options-pages.php:1271
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1209 core/options-pages.php:1272
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
- #: core/options-pages.php:1210 core/options-pages.php:1273
599
  msgid "Rewrite Slug"
600
  msgstr "슬러그 다시 쓰기"
601
 
602
- #: core/options-pages.php:1211 core/options-pages.php:1274
603
  msgid "Slug with Front"
604
  msgstr "프런트를 포함한 슬러그"
605
 
606
- #: core/options-pages.php:1286
607
  msgid "Add New Taxonomy"
608
  msgstr "새로운 카테고리 추가"
609
 
610
- #: core/options-pages.php:1296
611
  msgid "Non-Media Taxonomies"
612
  msgstr "비 미디어 카테고리"
613
 
614
- #: core/options-pages.php:1357
615
  msgid "Options"
616
  msgstr "옵션"
617
 
618
- #: core/options-pages.php:1367 core/options-pages.php:1370
619
  msgid "Taxonomy archive pages"
620
  msgstr "카테고리 보관 페이지"
621
 
622
- #: core/options-pages.php:1371
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
625
 
626
- #: core/options-pages.php:1372
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
630
 
631
- #: core/options-pages.php:1378 core/options-pages.php:1381
632
  msgid "Assign all like hierarchical"
633
  msgstr "모두 계층 구조와 같이 할당"
634
 
635
- #: core/options-pages.php:1382
636
  msgid ""
637
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
638
  msgstr ""
639
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
640
 
641
- #: core/options-pages.php:1388 core/options-pages.php:1391
642
  msgid "Force filters"
643
  msgstr "필터 강제 적용"
644
 
645
- #: core/options-pages.php:1392
646
  msgid "Show media filters for ANY Media Popup"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1393
650
  msgid "Try this if filters are not shown for third-party plugins or themes."
651
  msgstr ""
652
 
653
- #: core/options-pages.php:1399 core/options-pages.php:1402
654
  msgid "Show count"
655
  msgstr ""
656
 
657
- #: core/options-pages.php:1403
658
  msgid "Show item count per category for media filters"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1457
662
  msgid "Add New MIME Type"
663
  msgstr "새로운 MIME 유형 추가"
664
 
665
- #: core/options-pages.php:1477 core/options-pages.php:1532
666
  msgid "Extension"
667
  msgstr "확장자"
668
 
669
- #: core/options-pages.php:1478 core/options-pages.php:1533
670
  msgid "MIME Type"
671
  msgstr "MIME 유형"
672
 
673
- #: core/options-pages.php:1479 core/options-pages.php:1534
674
  msgid "Singular Label"
675
  msgstr "단수 라벨"
676
 
677
- #: core/options-pages.php:1480 core/options-pages.php:1535
678
  msgid "Plural Label"
679
  msgstr "복수 라벨"
680
 
681
- #: core/options-pages.php:1481 core/options-pages.php:1511
682
- #: core/options-pages.php:1524 core/options-pages.php:1536
683
  msgid "Add Filter"
684
  msgstr "필터 추가"
685
 
686
- #: core/options-pages.php:1482 core/options-pages.php:1512
687
- #: core/options-pages.php:1525 core/options-pages.php:1537
688
  msgid "Allow Upload"
689
  msgstr "업로드 허용"
690
 
691
- #: core/options-pages.php:1513 core/options-pages.php:1526
692
  msgid "Delete MIME Type"
693
  msgstr "MIME 유형 삭제"
694
 
695
- #: core/options-pages.php:1573
696
  msgid "Save Changes"
697
  msgstr "변경 사항 저장"
698
 
699
- #: core/options-pages.php:1603
700
  msgid "Changelog"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1604
704
  msgid "What's new in"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1604
708
  msgid "version"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1607
712
  msgid "More features under the hood"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1609
716
  msgid "Support"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1610
720
  msgid "Feel free to ask for help on"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1610
724
  msgid "Support is free for both versions of the plugin."
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1612
728
  msgid "Plugin rating"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1613
732
  msgid "Please"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1613
736
  msgid "vote for the plugin"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1613
740
  msgid "Thanks!"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1615
744
  msgid "Other plugins you may find useful"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1654
748
  msgid "Utility"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1677
752
  msgid "Vote!"
753
  msgstr ""
754
 
@@ -760,71 +759,373 @@ msgstr ""
760
  msgid "Media Library settings saved."
761
  msgstr ""
762
 
763
- #: core/taxonomies.php:341 core/taxonomies.php:347
764
- #: enhanced-media-library.php:484
765
  msgid "Filter by"
766
  msgstr "필터 적용:"
767
 
768
- #: core/taxonomies.php:349 enhanced-media-library.php:486
769
- msgid "Not in"
770
  msgstr "포함되지 않음:"
771
 
772
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
773
  msgid "All Uncategorized"
774
  msgstr "모두 미분류됨"
775
 
776
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
777
  msgid "Reset All Filters"
778
  msgstr "모든 필터 재설정"
779
 
780
- #: enhanced-media-library.php:517
781
  msgid "Uploaded to post #"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:518
785
  msgid "Based On"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
789
  msgid "Media Categories"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:564
793
  msgid "Media Category"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:566
797
  msgid "All Media Categories"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:567
801
  msgid "Edit Media Category"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:568
805
  msgid "View Media Category"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:569
809
  msgid "Update Media Category"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:570
813
  msgid "Add New Media Category"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:571
817
  msgid "New Media Category Name"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:572
821
  msgid "Parent Media Category"
822
  msgstr ""
823
 
824
- #: enhanced-media-library.php:573
825
  msgid "Parent Media Category:"
826
  msgstr ""
827
 
828
- #: enhanced-media-library.php:574
829
  msgid "Search Media Categories"
830
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:35+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:35+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Korean (Republic of Korea)\n"
9
+ "Language: ko_KR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160726-1\n"
 
 
 
 
 
 
 
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
28
  #, php-format
29
  msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
+ msgstr[0] ""
32
 
33
+ #: core/options-pages.php:97 core/options-pages.php:239
34
+ #: core/options-pages.php:1006 core/options-pages.php:1130
35
+ #: core/options-pages.php:1455 core/options-pages.php:1655
36
  msgid "Media Settings"
37
  msgstr "미디어 설정"
38
 
39
+ #: core/options-pages.php:106 core/options-pages.php:211
40
  msgid "Media Library"
41
  msgstr "미디어 라이브러리"
42
 
44
  msgid "Taxonomies"
45
  msgstr "카테고리"
46
 
47
+ #: core/options-pages.php:124 core/options-pages.php:213
48
  msgid "MIME Types"
49
  msgstr "MIME 유형"
50
 
52
  msgid "Enhanced Media Library"
53
  msgstr "Enhanced Media Library"
54
 
55
+ #: core/options-pages.php:210
56
  msgid "General"
57
  msgstr ""
58
 
59
+ #: core/options-pages.php:212 core/options-pages.php:1151
60
  msgid "Media Taxonomies"
61
  msgstr "미디어 카테고리"
62
 
63
+ #: core/options-pages.php:236 core/options-pages.php:548
64
+ #: core/options-pages.php:1002 core/options-pages.php:1127
65
+ #: core/options-pages.php:1451
66
  msgid "You do not have sufficient permissions to access this page."
67
  msgstr "이 페이지에 접근할 권한이 없습니다."
68
 
69
+ #: core/options-pages.php:250
70
  msgid "Image sizes"
71
  msgstr ""
72
 
73
+ #: core/options-pages.php:251
74
  msgid ""
75
  "The sizes listed below determine the maximum dimensions in pixels to use "
76
  "when adding an image to the Media Library."
77
  msgstr ""
78
 
79
+ #: core/options-pages.php:255
80
  msgid "Thumbnail size"
81
  msgstr ""
82
 
83
+ #: core/options-pages.php:257
84
  msgid "Width"
85
  msgstr ""
86
 
87
+ #: core/options-pages.php:259
88
  msgid "Height"
89
  msgstr ""
90
 
91
+ #: core/options-pages.php:262
92
  msgid ""
93
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
94
  msgstr ""
95
 
96
+ #: core/options-pages.php:267 core/options-pages.php:268
97
  msgid "Medium size"
98
  msgstr ""
99
 
100
+ #: core/options-pages.php:269 core/options-pages.php:279
101
  msgid "Max Width"
102
  msgstr ""
103
 
104
+ #: core/options-pages.php:271 core/options-pages.php:281
105
  msgid "Max Height"
106
  msgstr ""
107
 
108
+ #: core/options-pages.php:277 core/options-pages.php:278
109
  msgid "Large size"
110
  msgstr ""
111
 
112
+ #: core/options-pages.php:294
113
  msgid "Embeds"
114
  msgstr ""
115
 
116
+ #: core/options-pages.php:301
117
  msgid "Uploading Files"
118
  msgstr ""
119
 
120
+ #: core/options-pages.php:308
121
  msgid "Store uploads in this folder"
122
  msgstr ""
123
 
124
+ #: core/options-pages.php:312
125
  #, php-format
126
  msgid "Default is %s"
127
  msgstr ""
128
 
129
+ #: core/options-pages.php:318
130
  msgid "Full URL path to files"
131
  msgstr ""
132
 
133
+ #: core/options-pages.php:320
134
  msgid "Configuring this is optional. By default, it should be blank."
135
  msgstr ""
136
 
137
+ #: core/options-pages.php:328
138
  msgid "Organize my uploads into month- and year-based folders"
139
  msgstr ""
140
 
141
+ #: core/options-pages.php:400 core/options-pages.php:1175
142
+ #: core/options-pages.php:1190 core/options-pages.php:1253
143
+ #: core/options-pages.php:1325
144
  msgid "Edit"
145
  msgstr "편집"
146
 
147
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
148
  msgid "Close"
149
  msgstr "닫기"
150
 
151
+ #: core/options-pages.php:402 core/options-pages.php:1191
152
+ #: core/options-pages.php:1254
153
  msgid "View"
154
  msgstr "보기"
155
 
156
+ #: core/options-pages.php:403 core/options-pages.php:1192
157
+ #: core/options-pages.php:1255
158
  msgid "Update"
159
  msgstr "업데이트"
160
 
161
+ #: core/options-pages.php:404 core/options-pages.php:1193
162
+ #: core/options-pages.php:1256
163
  msgid "Add New"
164
  msgstr "새로 추가하기"
165
 
166
+ #: core/options-pages.php:405 core/options-pages.php:1194
167
+ #: core/options-pages.php:1257
168
  msgid "New"
169
  msgstr "신규"
170
 
171
+ #: core/options-pages.php:406
172
  msgid "Name"
173
  msgstr "이름"
174
 
175
+ #: core/options-pages.php:407 core/options-pages.php:1195
176
+ #: core/options-pages.php:1258
177
  msgid "Parent"
178
  msgstr "부모"
179
 
180
+ #: core/options-pages.php:408 core/options-pages.php:644
181
+ #: core/options-pages.php:1189 core/options-pages.php:1252
182
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
183
  msgid "All"
184
  msgstr "모두"
185
 
186
+ #: core/options-pages.php:409 core/options-pages.php:1196
187
+ #: core/options-pages.php:1259
188
  msgid "Search"
189
  msgstr "검색"
190
 
191
+ #: core/options-pages.php:411 core/options-pages.php:1240
192
  msgid "New Taxonomy"
193
  msgstr "새로운 카테고리"
194
 
195
+ #: core/options-pages.php:413
196
  msgid "Remove Taxonomy"
197
  msgstr ""
198
 
199
+ #: core/options-pages.php:414
200
  msgid "Taxonomy will be removed."
201
  msgstr ""
202
 
203
+ #: core/options-pages.php:415
204
  msgid ""
205
  "Taxonomy terms (categories) will remain intact in the database. If you "
206
  "create a taxonomy with the same name in the future, its terms (categories) "
207
  "will be available again."
208
  msgstr ""
209
 
210
+ #: core/options-pages.php:416
211
  msgid "Media items will remain intact."
212
  msgstr ""
213
 
214
+ #: core/options-pages.php:417
215
  msgid "Are you still sure?"
216
  msgstr ""
217
 
218
+ #: core/options-pages.php:418
219
  msgid "Yes, remove taxonomy"
220
  msgstr ""
221
 
222
+ #: core/options-pages.php:420
223
  msgid "Duplicate"
224
  msgstr ""
225
 
226
+ #: core/options-pages.php:421
227
  msgid "Taxonomy with the same name already exists. Please chose other one."
228
  msgstr ""
229
 
230
+ #: core/options-pages.php:423
231
  msgid "Empty Fields"
232
  msgstr ""
233
 
234
+ #: core/options-pages.php:424
235
  msgid "Please choose Singular and Plural names for all new taxomonies."
236
  msgstr ""
237
 
238
+ #: core/options-pages.php:425
239
  msgid "Please choose Singular name for all new taxomonies."
240
  msgstr ""
241
 
242
+ #: core/options-pages.php:426
243
  msgid "Please choose Plural Name for all new taxomonies."
244
  msgstr ""
245
 
246
+ #: core/options-pages.php:428
247
  msgid "Ok"
248
  msgstr ""
249
 
250
+ #: core/options-pages.php:429 core/options-pages.php:434
251
+ #: core/options-pages.php:478 core/options-pages.php:523
252
+ #: pro/enhanced-media-library-pro.php:133
253
  msgid "Cancel"
254
  msgstr ""
255
 
256
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
257
  msgid "Synchronize Now"
258
  msgstr ""
259
 
260
+ #: core/options-pages.php:432 core/options-pages.php:520
261
  msgid "This operation cannot be canceled! Are you still sure?"
262
  msgstr ""
263
 
264
+ #: core/options-pages.php:433
265
  msgid "Synchronize"
266
  msgstr ""
267
 
268
+ #: core/options-pages.php:435
269
  msgid "Synchronizing..."
270
  msgstr ""
271
 
272
+ #: core/options-pages.php:473 core/options-pages.php:1579
273
  msgid "Restore WordPress default MIME Types"
274
  msgstr ""
275
 
276
+ #: core/options-pages.php:474
277
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
278
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
279
 
280
+ #: core/options-pages.php:475
281
  msgid "Restore Defaults"
282
  msgstr ""
283
 
284
+ #: core/options-pages.php:476
285
  msgid "Restoring..."
286
  msgstr ""
287
 
288
+ #: core/options-pages.php:480
289
  msgid "Please fill into all fields."
290
  msgstr "모든 필드에 입력해주세요."
291
 
292
+ #: core/options-pages.php:481
293
  msgid "Duplicate extensions or MIME types. Please chose other one."
294
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
295
 
296
+ #: core/options-pages.php:518 core/options-pages.php:635
297
  msgid "Complete Cleanup"
298
  msgstr ""
299
 
300
+ #: core/options-pages.php:519
301
  msgid ""
302
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
303
  "plugin data</strong> from the database including backups."
304
  msgstr ""
305
 
306
+ #: core/options-pages.php:521
307
  msgid "Yes, delete all data"
308
  msgstr ""
309
 
310
+ #: core/options-pages.php:522
311
  msgid "Cleaning..."
312
  msgstr ""
313
 
314
+ #: core/options-pages.php:553
315
  msgid "Enhanced Media Library Settings"
316
  msgstr ""
317
 
318
+ #: core/options-pages.php:563
319
  msgid "Export"
320
  msgstr ""
321
 
322
+ #: core/options-pages.php:567
323
  msgid ""
324
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
325
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
327
  "another website."
328
  msgstr ""
329
 
330
+ #: core/options-pages.php:572
331
  msgid "Export Plugin Settings"
332
  msgstr ""
333
 
334
+ #: core/options-pages.php:582
335
  msgid "Import"
336
  msgstr ""
337
 
338
+ #: core/options-pages.php:586
339
  msgid ""
340
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
341
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
343
  "another website using the export button above."
344
  msgstr ""
345
 
346
+ #: core/options-pages.php:587
347
  msgid ""
348
  "All plugin settings will be overridden by the import. You will have a chance "
349
  "to restore current data from an automatic backup in case you are not "
350
  "satisfied with the result of the import."
351
  msgstr ""
352
 
353
+ #: core/options-pages.php:594
354
  msgid "Import Plugin Settings"
355
  msgstr ""
356
 
357
+ #: core/options-pages.php:606
358
  msgid "Restore"
359
  msgstr ""
360
 
361
+ #: core/options-pages.php:612
362
  msgid "No backup available at the moment."
363
  msgstr ""
364
 
365
+ #: core/options-pages.php:614
366
  msgid "Backup will be created automatically before any import operation."
367
  msgstr ""
368
 
369
+ #: core/options-pages.php:618
370
  msgid ""
371
  "The backup has been automatically created before the latest import operation."
372
  msgstr ""
373
 
374
+ #: core/options-pages.php:622
375
  msgid "Restore Settings from the Backup"
376
  msgstr ""
377
 
378
+ #: core/options-pages.php:642
379
  msgid "What will be deleted:"
380
  msgstr ""
381
 
382
+ #: core/options-pages.php:647
383
  msgid "All plugin options"
384
  msgstr ""
385
 
386
+ #: core/options-pages.php:648
387
  msgid "All plugin backups stored in database"
388
  msgstr ""
389
 
390
+ #: core/options-pages.php:652
391
  msgid "What will remain intact:"
392
  msgstr ""
393
 
394
+ #: core/options-pages.php:653
395
  msgid "All media items"
396
  msgstr ""
397
 
398
+ #: core/options-pages.php:654
399
  msgid "All taxonomies not listed above"
400
  msgstr ""
401
 
402
+ #: core/options-pages.php:657
403
  msgid ""
404
  "The plugin cannot delete itself because of security reason. Please delete it "
405
  "manually from plugin list after cleanup."
406
  msgstr ""
407
 
408
+ #: core/options-pages.php:659
409
  msgid ""
410
  "If you are not sure about this operation please create a backup of your "
411
  "database prior to cleanup!"
412
  msgstr ""
413
 
414
+ #: core/options-pages.php:665
415
  msgid "Delete All Data & Deactivate"
416
  msgstr ""
417
 
418
+ #: core/options-pages.php:765
419
  msgid "Please upload a file to import settings."
420
  msgstr ""
421
 
422
+ #: core/options-pages.php:791
423
  msgid "Plugin settings imported."
424
  msgstr ""
425
 
426
+ #: core/options-pages.php:838
427
  msgid "Plugin settings restored from the backup."
428
  msgstr ""
429
 
430
+ #: core/options-pages.php:1027
431
  msgid "Media Items Order"
432
  msgstr ""
433
 
434
+ #: core/options-pages.php:1034
435
  msgid "Order media items by"
436
  msgstr ""
437
 
438
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
439
+ #: pro/core/medialist.php:73
440
  msgid "Date"
441
  msgstr ""
442
 
443
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
444
+ #: pro/core/medialist.php:76
445
  msgid "Title"
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
449
+ #: pro/core/medialist.php:79
450
  msgid "Custom Order"
451
  msgstr ""
452
 
453
+ #: core/options-pages.php:1041 core/options-pages.php:1053
454
  msgid "For media library and media popups"
455
  msgstr ""
456
 
457
+ #: core/options-pages.php:1042
458
  msgid "Option allows to change order by drag and drop with Custom Order value."
459
  msgstr ""
460
 
461
+ #: core/options-pages.php:1047
462
  msgid "Sort order"
463
  msgstr ""
464
 
465
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
466
+ #: pro/core/medialist.php:92
467
  msgid "Ascending"
468
  msgstr ""
469
 
470
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
471
+ #: pro/core/medialist.php:95
472
  msgid "Descending"
473
  msgstr ""
474
 
475
+ #: core/options-pages.php:1066
476
  msgid "Media Shortcodes"
477
  msgstr ""
478
 
479
+ #: core/options-pages.php:1073 core/options-pages.php:1076
480
  msgid "Enhanced media shortcodes"
481
  msgstr ""
482
 
483
+ #: core/options-pages.php:1077
484
  msgid ""
485
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
486
  "upload date, and media items number limit"
487
  msgstr ""
488
 
489
+ #: core/options-pages.php:1078
490
  msgid "Gallery example:"
491
  msgstr ""
492
 
493
+ #: core/options-pages.php:1079
494
  msgid "Audio playlist example:"
495
  msgstr ""
496
 
497
+ #: core/options-pages.php:1080
498
  msgid "Video playlist example:"
499
  msgstr ""
500
 
501
+ #: core/options-pages.php:1082
502
  #, php-format
503
  msgid ""
504
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
505
  msgstr ""
506
 
507
+ #: core/options-pages.php:1084
508
  #, php-format
509
  msgid "%sLearn more%s."
510
  msgstr ""
511
 
512
+ #: core/options-pages.php:1086
513
  #, php-format
514
  msgid ""
515
  "Please check out your gallery front-end and back-end functionality once this "
517
  "%s."
518
  msgstr ""
519
 
520
+ #: core/options-pages.php:1155 core/options-pages.php:1302
521
  msgid "Assign following taxonomies to Media Library:"
522
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
523
 
524
+ #: core/options-pages.php:1174 core/options-pages.php:1240
525
+ #: core/options-pages.php:1324
526
  msgid "Assign Taxonomy"
527
  msgstr "카테고리 할당"
528
 
529
+ #: core/options-pages.php:1175 core/options-pages.php:1325
530
  msgid "Edit Taxonomy"
531
  msgstr "카테고리 편집"
532
 
533
+ #: core/options-pages.php:1179 core/options-pages.php:1242
534
  msgid "Delete Taxonomy"
535
  msgstr "카테고리 삭제"
536
 
537
+ #: core/options-pages.php:1184 core/options-pages.php:1247
538
  msgid "Labels"
539
  msgstr "라벨"
540
 
541
+ #: core/options-pages.php:1186 core/options-pages.php:1249
542
  msgid "Singular"
543
  msgstr "단수"
544
 
545
+ #: core/options-pages.php:1187 core/options-pages.php:1250
546
  msgid "Plural"
547
  msgstr "복수"
548
 
549
+ #: core/options-pages.php:1188 core/options-pages.php:1251
550
  msgid "Menu Name"
551
  msgstr "메뉴명"
552
 
553
+ #: core/options-pages.php:1201 core/options-pages.php:1224
554
+ #: core/options-pages.php:1264 core/options-pages.php:1328
555
  msgid "Settings"
556
  msgstr "설정"
557
 
558
+ #: core/options-pages.php:1203 core/options-pages.php:1266
559
  msgid "Taxonomy Name"
560
  msgstr "카테고리명"
561
 
562
+ #: core/options-pages.php:1204 core/options-pages.php:1267
563
  msgid "Hierarchical"
564
  msgstr "계층 구조"
565
 
566
+ #: core/options-pages.php:1205 core/options-pages.php:1268
567
  msgid "Column for List View"
568
  msgstr ""
569
 
570
+ #: core/options-pages.php:1206 core/options-pages.php:1226
571
+ #: core/options-pages.php:1269 core/options-pages.php:1330
572
  msgid "Filter for List View"
573
  msgstr ""
574
 
575
+ #: core/options-pages.php:1207 core/options-pages.php:1227
576
+ #: core/options-pages.php:1270 core/options-pages.php:1331
577
  msgid "Filter for Grid View / Media Popup"
578
  msgstr ""
579
 
580
+ #: core/options-pages.php:1208 core/options-pages.php:1228
581
+ #: core/options-pages.php:1271 core/options-pages.php:1332
582
  msgid "Edit in Media Popup"
583
  msgstr "미디어 팝업에서 편집"
584
 
585
+ #: core/options-pages.php:1209 core/options-pages.php:1272
586
  msgid "Show in Nav Menu"
587
  msgstr "탐색 메뉴에서 표시"
588
 
589
+ #: core/options-pages.php:1210 core/options-pages.php:1273
590
  msgid "Remember Terms Order (sort)"
591
  msgstr ""
592
 
593
+ #: core/options-pages.php:1211 core/options-pages.php:1274
594
  msgid "Show in REST"
595
  msgstr ""
596
 
597
+ #: core/options-pages.php:1212 core/options-pages.php:1275
598
  msgid "Rewrite Slug"
599
  msgstr "슬러그 다시 쓰기"
600
 
601
+ #: core/options-pages.php:1213 core/options-pages.php:1276
602
  msgid "Slug with Front"
603
  msgstr "프런트를 포함한 슬러그"
604
 
605
+ #: core/options-pages.php:1288
606
  msgid "Add New Taxonomy"
607
  msgstr "새로운 카테고리 추가"
608
 
609
+ #: core/options-pages.php:1298
610
  msgid "Non-Media Taxonomies"
611
  msgstr "비 미디어 카테고리"
612
 
613
+ #: core/options-pages.php:1361
614
  msgid "Options"
615
  msgstr "옵션"
616
 
617
+ #: core/options-pages.php:1371 core/options-pages.php:1374
618
  msgid "Taxonomy archive pages"
619
  msgstr "카테고리 보관 페이지"
620
 
621
+ #: core/options-pages.php:1375
622
  msgid "Turn on media taxonomy archive pages on the front-end"
623
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
624
 
625
+ #: core/options-pages.php:1376
626
  msgid ""
627
  "Re-save your permalink settings after this option change to make it work."
628
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
629
 
630
+ #: core/options-pages.php:1382 core/options-pages.php:1385
631
  msgid "Assign all like hierarchical"
632
  msgstr "모두 계층 구조와 같이 할당"
633
 
634
+ #: core/options-pages.php:1386
635
  msgid ""
636
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
637
  msgstr ""
638
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
639
 
640
+ #: core/options-pages.php:1392 core/options-pages.php:1395
641
  msgid "Force filters"
642
  msgstr "필터 강제 적용"
643
 
644
+ #: core/options-pages.php:1396
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
+ #: core/options-pages.php:1397
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1403 core/options-pages.php:1406
653
  msgid "Show count"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1407
657
  msgid "Show item count per category for media filters"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1461
661
  msgid "Add New MIME Type"
662
  msgstr "새로운 MIME 유형 추가"
663
 
664
+ #: core/options-pages.php:1481 core/options-pages.php:1536
665
  msgid "Extension"
666
  msgstr "확장자"
667
 
668
+ #: core/options-pages.php:1482 core/options-pages.php:1537
669
  msgid "MIME Type"
670
  msgstr "MIME 유형"
671
 
672
+ #: core/options-pages.php:1483 core/options-pages.php:1538
673
  msgid "Singular Label"
674
  msgstr "단수 라벨"
675
 
676
+ #: core/options-pages.php:1484 core/options-pages.php:1539
677
  msgid "Plural Label"
678
  msgstr "복수 라벨"
679
 
680
+ #: core/options-pages.php:1485 core/options-pages.php:1515
681
+ #: core/options-pages.php:1528 core/options-pages.php:1540
682
  msgid "Add Filter"
683
  msgstr "필터 추가"
684
 
685
+ #: core/options-pages.php:1486 core/options-pages.php:1516
686
+ #: core/options-pages.php:1529 core/options-pages.php:1541
687
  msgid "Allow Upload"
688
  msgstr "업로드 허용"
689
 
690
+ #: core/options-pages.php:1517 core/options-pages.php:1530
691
  msgid "Delete MIME Type"
692
  msgstr "MIME 유형 삭제"
693
 
694
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
695
  msgid "Save Changes"
696
  msgstr "변경 사항 저장"
697
 
698
+ #: core/options-pages.php:1607
699
  msgid "Changelog"
700
  msgstr ""
701
 
702
+ #: core/options-pages.php:1608
703
  msgid "What's new in"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1608
707
  msgid "version"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1611
711
  msgid "More features under the hood"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1613
715
  msgid "Support"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1614
719
  msgid "Feel free to ask for help on"
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1614
723
  msgid "Support is free for both versions of the plugin."
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1616
727
  msgid "Plugin rating"
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1617
731
  msgid "Please"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1617
735
  msgid "vote for the plugin"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1617
739
  msgid "Thanks!"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1619
743
  msgid "Other plugins you may find useful"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1658
747
  msgid "Utility"
748
  msgstr ""
749
 
750
+ #: core/options-pages.php:1681
751
  msgid "Vote!"
752
  msgstr ""
753
 
759
  msgid "Media Library settings saved."
760
  msgstr ""
761
 
762
+ #: core/taxonomies.php:333 core/taxonomies.php:339
763
+ #: enhanced-media-library.php:502
764
  msgid "Filter by"
765
  msgstr "필터 적용:"
766
 
767
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
768
+ msgid "Not in a"
769
  msgstr "포함되지 않음:"
770
 
771
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
772
  msgid "All Uncategorized"
773
  msgstr "모두 미분류됨"
774
 
775
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
776
  msgid "Reset All Filters"
777
  msgstr "모든 필터 재설정"
778
 
779
+ #: enhanced-media-library.php:535
780
  msgid "Uploaded to post #"
781
  msgstr ""
782
 
783
+ #: enhanced-media-library.php:536
784
  msgid "Based On"
785
  msgstr ""
786
 
787
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
788
  msgid "Media Categories"
789
  msgstr ""
790
 
791
+ #: enhanced-media-library.php:582
792
  msgid "Media Category"
793
  msgstr ""
794
 
795
+ #: enhanced-media-library.php:584
796
  msgid "All Media Categories"
797
  msgstr ""
798
 
799
+ #: enhanced-media-library.php:585
800
  msgid "Edit Media Category"
801
  msgstr ""
802
 
803
+ #: enhanced-media-library.php:586
804
  msgid "View Media Category"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:587
808
  msgid "Update Media Category"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:588
812
  msgid "Add New Media Category"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:589
816
  msgid "New Media Category Name"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:590
820
  msgid "Parent Media Category"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:591
824
  msgid "Parent Media Category:"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:592
828
  msgid "Search Media Categories"
829
  msgstr ""
830
+
831
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
832
+ msgid "Remove"
833
+ msgstr "제거"
834
+
835
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
836
+ msgid "Deselect"
837
+ msgstr "선택 해제"
838
+
839
+ #: pro/core/bulk-edit.php:105
840
+ msgid "Caption this image&hellip;"
841
+ msgstr "이 이미지에 캡션을 추가..."
842
+
843
+ #: pro/core/bulk-edit.php:109
844
+ msgid "Describe this video&hellip;"
845
+ msgstr "이 비디오를 설명..."
846
+
847
+ #: pro/core/bulk-edit.php:111
848
+ msgid "Describe this audio file&hellip;"
849
+ msgstr "이 오디오 파일을 설명..."
850
+
851
+ #: pro/core/bulk-edit.php:113
852
+ msgid "Describe this media file&hellip;"
853
+ msgstr "이 미디어 파일을 설명..."
854
+
855
+ #: pro/core/bulk-edit.php:122
856
+ msgid "Attachments Details"
857
+ msgstr "첨부 파일 세부 정보"
858
+
859
+ #: pro/core/bulk-edit.php:175
860
+ msgid "Select All"
861
+ msgstr "모두 선택"
862
+
863
+ #: pro/core/bulk-edit.php:176
864
+ msgid "Deselect All"
865
+ msgstr "모두 선택 해제"
866
+
867
+ #: pro/core/bulk-edit.php:177
868
+ msgid "Delete Selected"
869
+ msgstr "선택 삭제"
870
+
871
+ #: pro/core/bulk-edit.php:178
872
+ msgid "Trash Selected"
873
+ msgstr ""
874
+
875
+ #: pro/core/bulk-edit.php:179
876
+ msgid "Restore Selected"
877
+ msgstr ""
878
+
879
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
880
+ msgid "Delete Selected Permanently"
881
+ msgstr ""
882
+
883
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
884
+ msgid "Order By"
885
+ msgstr ""
886
+
887
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
888
+ msgid "Random"
889
+ msgstr ""
890
+
891
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
892
+ msgid "Order"
893
+ msgstr ""
894
+
895
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
896
+ msgid "Limit"
897
+ msgstr ""
898
+
899
+ #: pro/core/options-pages.php:78
900
+ msgid "Your license has been deactivated."
901
+ msgstr ""
902
+
903
+ #: pro/core/options-pages.php:88
904
+ msgid "Please check if your license key is correct and try again."
905
+ msgstr ""
906
+
907
+ #: pro/core/options-pages.php:104
908
+ #, php-format
909
+ msgid ""
910
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
911
+ "authors</a>."
912
+ msgstr ""
913
+
914
+ #: pro/core/options-pages.php:119
915
+ #, php-format
916
+ msgid ""
917
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
918
+ "plugin authors</a>."
919
+ msgstr ""
920
+
921
+ #: pro/core/options-pages.php:130
922
+ msgid "You license has been activated."
923
+ msgstr ""
924
+
925
+ #: pro/core/options-pages.php:184
926
+ #, php-format
927
+ msgid "Auto-assign media items to parent %s %s on upload"
928
+ msgstr ""
929
+
930
+ #: pro/core/options-pages.php:185
931
+ #, php-format
932
+ msgid ""
933
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
934
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
935
+ "assigned %s will not be saved. Media items that are not attached to any %s "
936
+ "will not be affected."
937
+ msgstr ""
938
+
939
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
940
+ msgid "Bulk Edit"
941
+ msgstr "일괄 편집"
942
+
943
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
944
+ msgid "Turn off 'Save Changes' button"
945
+ msgstr "'변경 사항 저장' 버튼 해제"
946
+
947
+ #: pro/core/options-pages.php:220
948
+ msgid "Save changes on the fly"
949
+ msgstr "변경 사항 즉시 저장"
950
+
951
+ #: pro/core/options-pages.php:221
952
+ msgid ""
953
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
954
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
955
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
956
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
957
+ "files / taxonomies with this option turned on."
958
+ msgstr ""
959
+
960
+ #: pro/core/options-pages.php:222
961
+ msgid ""
962
+ "Strongly NOT recommended option if you work with more than hundred of files "
963
+ "at a time."
964
+ msgstr ""
965
+ "한 번에 100 개 이상의 파일을 작업을하는 경우 절대로 권장하지 않는 옵션임."
966
+
967
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
968
+ msgid "License Key"
969
+ msgstr "라이센스 키"
970
+
971
+ #: pro/core/options-pages.php:273
972
+ #, php-format
973
+ msgid ""
974
+ "To unlock updates please enter your license key below. You can get your "
975
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
976
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
977
+ msgstr ""
978
+
979
+ #: pro/core/options-pages.php:283
980
+ msgid "Activate License"
981
+ msgstr "라이센스 활성화"
982
+
983
+ #: pro/core/options-pages.php:290
984
+ msgid "Your license is active!"
985
+ msgstr "라이센스가 활성화되었습니다!"
986
+
987
+ #: pro/core/options-pages.php:294
988
+ msgid "Deactivate License"
989
+ msgstr ""
990
+
991
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
992
+ msgid ""
993
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
994
+ "this server&#8217;s configuration. If you continue to have problems, please "
995
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
996
+ msgstr ""
997
+ "예기치 않은 오류가 발생했습니다. WordPress.org 또는 이 서버의 구성에 문제가 "
998
+ "있을 수 있습니다. 문제가 계속될 경우, <a href=\"https://wordpress.org/"
999
+ "support/\">지원 포럼</a>을 시도해 보시기 바랍니다."
1000
+
1001
+ #: pro/core/update.php:113
1002
+ msgid ""
1003
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
+ "contact your server administrator.)"
1005
+ msgstr ""
1006
+ "(워드프레스가 WordPress.org에 보안 연결을 설정할 수 없습니다. 서버 관리자에"
1007
+ "게 문의하세요.)"
1008
+
1009
+ #: pro/core/update.php:181
1010
+ #, php-format
1011
+ msgid ""
1012
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
+ msgstr ""
1016
+
1017
+ #: pro/enhanced-media-library-pro.php:119
1018
+ msgid "ALL files belong to this item"
1019
+ msgstr "이 항목에 모든 파일이 속합니다"
1020
+
1021
+ #: pro/enhanced-media-library-pro.php:120
1022
+ msgid "SOME files belong to this item"
1023
+ msgstr "이 항목에 SOME 파일이 속합니다"
1024
+
1025
+ #: pro/enhanced-media-library-pro.php:121
1026
+ msgid "NO files belong to this item"
1027
+ msgstr "이 항목에 속한 파일이 없습니다"
1028
+
1029
+ #: pro/enhanced-media-library-pro.php:122
1030
+ msgid "Changes saved."
1031
+ msgstr "변경 사항이 저장됨."
1032
+
1033
+ #: pro/enhanced-media-library-pro.php:123
1034
+ msgid "Something went wrong."
1035
+ msgstr "문제가 발생했습니다."
1036
+
1037
+ #: pro/enhanced-media-library-pro.php:126
1038
+ msgid "Edit Media Files"
1039
+ msgstr "미디어 파일 편집"
1040
+
1041
+ #: pro/enhanced-media-library-pro.php:129
1042
+ msgid "Selecting"
1043
+ msgstr ""
1044
+
1045
+ #: pro/enhanced-media-library-pro.php:131
1046
+ msgid "You are about to permanently delete all selected items."
1047
+ msgstr ""
1048
+
1049
+ #: pro/enhanced-media-library-pro.php:132
1050
+ msgid "Delete"
1051
+ msgstr ""
1052
+
1053
+ #: pro/enhanced-media-library-pro.php:134
1054
+ msgid "Moving to Trash"
1055
+ msgstr ""
1056
+
1057
+ #: pro/enhanced-media-library-pro.php:135
1058
+ msgid "Restoring"
1059
+ msgstr ""
1060
+
1061
+ #: pro/enhanced-media-library-pro.php:136
1062
+ msgid "Deleting"
1063
+ msgstr ""
1064
+
1065
+ #: pro/enhanced-media-library-pro.php:160
1066
+ msgid "Create a filter-based gallery"
1067
+ msgstr ""
1068
+
1069
+ #: pro/enhanced-media-library-pro.php:161
1070
+ msgid "Create a filter-based playlist"
1071
+ msgstr ""
1072
+
1073
+ #: pro/enhanced-media-library-pro.php:162
1074
+ msgid "Create a filter-based video playlist"
1075
+ msgstr ""
1076
+
1077
+ #: pro/enhanced-media-library-pro.php:240
1078
+ msgid ""
1079
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
+ "will remain intact."
1082
+ msgstr ""
1083
+
1084
+ #: pro/enhanced-media-library-pro.php:240
1085
+ msgid "Return to Plugins"
1086
+ msgstr "플러그인으로 돌아가기"
1087
+
1088
+ #: pro/enhanced-media-library-pro.php:291
1089
+ msgid ""
1090
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
+ "be active. Please network deactivate and delete the free versions of the "
1093
+ "plugin. All your data will remain intact."
1094
+ msgstr ""
1095
+
1096
+ #: pro/enhanced-media-library-pro.php:308
1097
+ msgid ""
1098
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
+ "be active. Please deactivate and delete the free version of the plugin. All "
1100
+ "your data will remain intact."
1101
+ msgstr ""
1102
+
1103
+ #: pro/enhanced-media-library-pro.php:324
1104
+ msgid ""
1105
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
+ "version to be active. Please deactivate (or network deactivate) and delete "
1108
+ "the free version of the plugin for this site. All your data will remail "
1109
+ "intact."
1110
+ msgstr ""
1111
+
1112
+ #. Plugin Name of the plugin/theme
1113
+ msgid "Enhanced Media Library PRO"
1114
+ msgstr ""
1115
+
1116
+ #. Plugin URI of the plugin/theme
1117
+ #. Author URI of the plugin/theme
1118
+ msgid "http://wpUXsolutions.com"
1119
+ msgstr ""
1120
+
1121
+ #. Description of the plugin/theme
1122
+ msgid ""
1123
+ "This plugin will be handy for those who need to manage a lot of media files."
1124
+ msgstr "이 플러그인은 많은 미디어 파일을 관리해야 하는 사용자에게 유용합니다."
1125
+
1126
+ #. Author of the plugin/theme
1127
+ msgid "wpUXsolutions"
1128
+ msgstr ""
1129
+
1130
+ #~ msgid "Not in"
1131
+ #~ msgstr "포함되지 않음:"
languages/enhanced-media-library-nl_NL.mo CHANGED
Binary file
languages/enhanced-media-library-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library v1.0.4\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
5
- "POT-Creation-Date: 2016-08-09 17:43+0300\n"
6
- "PO-Revision-Date: 2016-08-09 17:44+0300\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: De B.A.A.T. <de_baat@de-baat.nl>\n"
9
  "Language: nl_NL\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
@@ -35,13 +35,13 @@ msgstr[0] ""
35
  msgstr[1] ""
36
 
37
  # @ eml
38
- #: core/options-pages.php:97 core/options-pages.php:236
39
- #: core/options-pages.php:1003 core/options-pages.php:1128
40
- #: core/options-pages.php:1451 core/options-pages.php:1651
41
  msgid "Media Settings"
42
  msgstr "Media Instellingen"
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:208
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -51,7 +51,7 @@ msgid "Taxonomies"
51
  msgstr "Taxonomies"
52
 
53
  # @ eml
54
- #: core/options-pages.php:124 core/options-pages.php:210
55
  msgid "MIME Types"
56
  msgstr "MIME Types"
57
 
@@ -60,291 +60,292 @@ msgstr "MIME Types"
60
  msgid "Enhanced Media Library"
61
  msgstr ""
62
 
63
- #: core/options-pages.php:207
64
  msgid "General"
65
  msgstr ""
66
 
67
  # @ eml
68
- #: core/options-pages.php:209 core/options-pages.php:1149
69
  msgid "Media Taxonomies"
70
  msgstr "Media Taxonomies"
71
 
72
  # @ eml
73
- #: core/options-pages.php:233 core/options-pages.php:545
74
- #: core/options-pages.php:999 core/options-pages.php:1124
75
- #: core/options-pages.php:1447
76
  msgid "You do not have sufficient permissions to access this page."
77
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
78
 
79
- #: core/options-pages.php:247
80
  msgid "Image sizes"
81
  msgstr ""
82
 
83
- #: core/options-pages.php:248
84
  msgid ""
85
  "The sizes listed below determine the maximum dimensions in pixels to use "
86
  "when adding an image to the Media Library."
87
  msgstr ""
88
 
89
- #: core/options-pages.php:252
90
  msgid "Thumbnail size"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:254
94
  msgid "Width"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:256
98
  msgid "Height"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:259
102
  msgid ""
103
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:264 core/options-pages.php:265
107
  msgid "Medium size"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:266 core/options-pages.php:276
111
  msgid "Max Width"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:268 core/options-pages.php:278
115
  msgid "Max Height"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:274 core/options-pages.php:275
119
  msgid "Large size"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:291
123
  msgid "Embeds"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:298
127
  msgid "Uploading Files"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:305
131
  msgid "Store uploads in this folder"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:309
135
  #, php-format
136
  msgid "Default is %s"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:315
140
  msgid "Full URL path to files"
141
  msgstr ""
142
 
143
- #: core/options-pages.php:317
144
  msgid "Configuring this is optional. By default, it should be blank."
145
  msgstr ""
146
 
147
- #: core/options-pages.php:325
148
  msgid "Organize my uploads into month- and year-based folders"
149
  msgstr ""
150
 
151
  # @ eml
152
- #: core/options-pages.php:397 core/options-pages.php:1173
153
- #: core/options-pages.php:1188 core/options-pages.php:1251
154
- #: core/options-pages.php:1320
155
  msgid "Edit"
156
  msgstr "Bewerk"
157
 
158
  # @ eml
159
- #: core/options-pages.php:398
160
  msgid "Close"
161
  msgstr "Sluit"
162
 
163
  # @ eml
164
- #: core/options-pages.php:399 core/options-pages.php:1189
165
- #: core/options-pages.php:1252
166
  msgid "View"
167
  msgstr "Bekijk"
168
 
169
  # @ eml
170
- #: core/options-pages.php:400 core/options-pages.php:1190
171
- #: core/options-pages.php:1253
172
  msgid "Update"
173
  msgstr "Werk bij"
174
 
175
  # @ eml
176
- #: core/options-pages.php:401 core/options-pages.php:1191
177
- #: core/options-pages.php:1254
178
  msgid "Add New"
179
  msgstr "Voeg Nieuw Toe"
180
 
181
  # @ eml
182
- #: core/options-pages.php:402 core/options-pages.php:1192
183
- #: core/options-pages.php:1255
184
  msgid "New"
185
  msgstr "Nieuw"
186
 
187
  # @ eml
188
- #: core/options-pages.php:403
189
  msgid "Name"
190
  msgstr "Naam"
191
 
192
  # @ eml
193
- #: core/options-pages.php:404 core/options-pages.php:1193
194
- #: core/options-pages.php:1256
195
  msgid "Parent"
196
  msgstr "Parent"
197
 
198
  # @ eml
199
- #: core/options-pages.php:405 core/options-pages.php:641
200
- #: core/options-pages.php:1187 core/options-pages.php:1250
201
- #: core/taxonomies.php:348 enhanced-media-library.php:485
202
  msgid "All"
203
  msgstr "Allemaal"
204
 
205
  # @ eml
206
- #: core/options-pages.php:406 core/options-pages.php:1194
207
- #: core/options-pages.php:1257
208
  msgid "Search"
209
  msgstr "Zoek"
210
 
211
  # @ eml
212
- #: core/options-pages.php:408 core/options-pages.php:1238
213
  msgid "New Taxonomy"
214
  msgstr "Nieuwe Taxonomy"
215
 
216
- #: core/options-pages.php:410
217
  msgid "Remove Taxonomy"
218
  msgstr ""
219
 
220
- #: core/options-pages.php:411
221
  msgid "Taxonomy will be removed."
222
  msgstr ""
223
 
224
- #: core/options-pages.php:412
225
  msgid ""
226
  "Taxonomy terms (categories) will remain intact in the database. If you "
227
  "create a taxonomy with the same name in the future, its terms (categories) "
228
  "will be available again."
229
  msgstr ""
230
 
231
- #: core/options-pages.php:413
232
  msgid "Media items will remain intact."
233
  msgstr ""
234
 
235
- #: core/options-pages.php:414
236
  msgid "Are you still sure?"
237
  msgstr ""
238
 
239
- #: core/options-pages.php:415
240
  msgid "Yes, remove taxonomy"
241
  msgstr ""
242
 
243
- #: core/options-pages.php:417
244
  msgid "Duplicate"
245
  msgstr ""
246
 
247
- #: core/options-pages.php:418
248
  msgid "Taxonomy with the same name already exists. Please chose other one."
249
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
250
 
251
- #: core/options-pages.php:420
252
  msgid "Empty Fields"
253
  msgstr ""
254
 
255
- #: core/options-pages.php:421
256
  msgid "Please choose Singular and Plural names for all new taxomonies."
257
  msgstr ""
258
 
259
- #: core/options-pages.php:422
260
  msgid "Please choose Singular name for all new taxomonies."
261
  msgstr ""
262
 
263
- #: core/options-pages.php:423
264
  msgid "Please choose Plural Name for all new taxomonies."
265
  msgstr ""
266
 
267
- #: core/options-pages.php:425
268
  msgid "Ok"
269
  msgstr ""
270
 
271
- #: core/options-pages.php:426 core/options-pages.php:431
272
- #: core/options-pages.php:475 core/options-pages.php:520
 
273
  msgid "Cancel"
274
  msgstr ""
275
 
276
- #: core/options-pages.php:428
277
  msgid "Synchronize Now"
278
  msgstr ""
279
 
280
- #: core/options-pages.php:429 core/options-pages.php:517
281
  msgid "This operation cannot be canceled! Are you still sure?"
282
  msgstr ""
283
 
284
- #: core/options-pages.php:430
285
  msgid "Synchronize"
286
  msgstr ""
287
 
288
- #: core/options-pages.php:432
289
  msgid "Synchronizing..."
290
  msgstr ""
291
 
292
- #: core/options-pages.php:470 core/options-pages.php:1575
293
  msgid "Restore WordPress default MIME Types"
294
  msgstr ""
295
 
296
  # @ eml
297
- #: core/options-pages.php:471
298
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
299
  msgstr ""
300
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
301
  "verwijderd worden."
302
 
303
- #: core/options-pages.php:472
304
  msgid "Restore Defaults"
305
  msgstr ""
306
 
307
- #: core/options-pages.php:473
308
  msgid "Restoring..."
309
  msgstr ""
310
 
311
  # @ eml
312
- #: core/options-pages.php:477
313
  msgid "Please fill into all fields."
314
  msgstr "Vul aub alle velden in."
315
 
316
  # @ eml
317
- #: core/options-pages.php:478
318
  msgid "Duplicate extensions or MIME types. Please chose other one."
319
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
320
 
321
- #: core/options-pages.php:515 core/options-pages.php:632
322
  msgid "Complete Cleanup"
323
  msgstr ""
324
 
325
- #: core/options-pages.php:516
326
  msgid ""
327
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
328
  "plugin data</strong> from the database including backups."
329
  msgstr ""
330
 
331
- #: core/options-pages.php:518
332
  msgid "Yes, delete all data"
333
  msgstr ""
334
 
335
- #: core/options-pages.php:519
336
  msgid "Cleaning..."
337
  msgstr ""
338
 
339
- #: core/options-pages.php:550
340
  msgid "Enhanced Media Library Settings"
341
  msgstr ""
342
 
343
- #: core/options-pages.php:560
344
  msgid "Export"
345
  msgstr ""
346
 
347
- #: core/options-pages.php:564
348
  msgid ""
349
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
350
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -352,15 +353,15 @@ msgid ""
352
  "another website."
353
  msgstr ""
354
 
355
- #: core/options-pages.php:569
356
  msgid "Export Plugin Settings"
357
  msgstr ""
358
 
359
- #: core/options-pages.php:579
360
  msgid "Import"
361
  msgstr ""
362
 
363
- #: core/options-pages.php:583
364
  msgid ""
365
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
366
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -368,168 +369,173 @@ msgid ""
368
  "another website using the export button above."
369
  msgstr ""
370
 
371
- #: core/options-pages.php:584
372
  msgid ""
373
  "All plugin settings will be overridden by the import. You will have a chance "
374
  "to restore current data from an automatic backup in case you are not "
375
  "satisfied with the result of the import."
376
  msgstr ""
377
 
378
- #: core/options-pages.php:591
379
  msgid "Import Plugin Settings"
380
  msgstr ""
381
 
382
- #: core/options-pages.php:603
383
  msgid "Restore"
384
  msgstr ""
385
 
386
- #: core/options-pages.php:609
387
  msgid "No backup available at the moment."
388
  msgstr ""
389
 
390
- #: core/options-pages.php:611
391
  msgid "Backup will be created automatically before any import operation."
392
  msgstr ""
393
 
394
- #: core/options-pages.php:615
395
  msgid ""
396
  "The backup has been automatically created before the latest import operation."
397
  msgstr ""
398
 
399
- #: core/options-pages.php:619
400
  msgid "Restore Settings from the Backup"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:639
404
  msgid "What will be deleted:"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:644
408
  msgid "All plugin options"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:645
412
  msgid "All plugin backups stored in database"
413
  msgstr ""
414
 
415
- #: core/options-pages.php:649
416
  msgid "What will remain intact:"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:650
420
  msgid "All media items"
421
  msgstr ""
422
 
423
- #: core/options-pages.php:651
424
  msgid "All taxonomies not listed above"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:654
428
  msgid ""
429
  "The plugin cannot delete itself because of security reason. Please delete it "
430
  "manually from plugin list after cleanup."
431
  msgstr ""
432
 
433
- #: core/options-pages.php:656
434
  msgid ""
435
  "If you are not sure about this operation please create a backup of your "
436
  "database prior to cleanup!"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:662
440
  msgid "Delete All Data & Deactivate"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:762
444
  msgid "Please upload a file to import settings."
445
  msgstr ""
446
 
447
- #: core/options-pages.php:788
448
  msgid "Plugin settings imported."
449
  msgstr ""
450
 
451
- #: core/options-pages.php:835
452
  msgid "Plugin settings restored from the backup."
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1024
456
  msgid "Media Items Order"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1031
460
  msgid "Order media items by"
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1034
 
464
  msgid "Date"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1035
 
468
  msgid "Title"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1036
 
472
  msgid "Custom Order"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1038 core/options-pages.php:1050
476
  msgid "For media library and media popups"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1039
480
  msgid "Option allows to change order by drag and drop with Custom Order value."
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1044
484
  msgid "Sort order"
485
  msgstr ""
486
 
487
- #: core/options-pages.php:1047
 
488
  msgid "Ascending"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1048
 
492
  msgid "Descending"
493
  msgstr ""
494
 
495
- #: core/options-pages.php:1063
496
  msgid "Media Shortcodes"
497
  msgstr ""
498
 
499
- #: core/options-pages.php:1070 core/options-pages.php:1073
500
  msgid "Enhanced media shortcodes"
501
  msgstr ""
502
 
503
- #: core/options-pages.php:1074
504
  msgid ""
505
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
506
  "upload date, and media items number limit"
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1075
510
  msgid "Gallery example:"
511
  msgstr ""
512
 
513
- #: core/options-pages.php:1076
514
  msgid "Audio playlist example:"
515
  msgstr ""
516
 
517
- #: core/options-pages.php:1077
518
  msgid "Video playlist example:"
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1079
522
  #, php-format
523
  msgid ""
524
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
525
  msgstr ""
526
 
527
- #: core/options-pages.php:1081
528
  #, php-format
529
  msgid "%sLearn more%s."
530
  msgstr ""
531
 
532
- #: core/options-pages.php:1083
533
  #, php-format
534
  msgid ""
535
  "Please check out your gallery front-end and back-end functionality once this "
@@ -538,256 +544,256 @@ msgid ""
538
  msgstr ""
539
 
540
  # @ eml
541
- #: core/options-pages.php:1153 core/options-pages.php:1300
542
  msgid "Assign following taxonomies to Media Library:"
543
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
544
 
545
  # @ eml
546
- #: core/options-pages.php:1172 core/options-pages.php:1238
547
- #: core/options-pages.php:1319
548
  msgid "Assign Taxonomy"
549
  msgstr "Toekennen Taxonomie"
550
 
551
  # @ eml
552
- #: core/options-pages.php:1173 core/options-pages.php:1320
553
  msgid "Edit Taxonomy"
554
  msgstr "Bewerk Taxonomie"
555
 
556
  # @ eml
557
- #: core/options-pages.php:1177 core/options-pages.php:1240
558
  msgid "Delete Taxonomy"
559
  msgstr "Verwijder Taxonomie"
560
 
561
  # @ eml
562
- #: core/options-pages.php:1182 core/options-pages.php:1245
563
  msgid "Labels"
564
  msgstr "Labels"
565
 
566
  # @ eml
567
- #: core/options-pages.php:1184 core/options-pages.php:1247
568
  msgid "Singular"
569
  msgstr "Enkelvoud"
570
 
571
  # @ eml
572
- #: core/options-pages.php:1185 core/options-pages.php:1248
573
  msgid "Plural"
574
  msgstr "Meervoud"
575
 
576
  # @ eml
577
- #: core/options-pages.php:1186 core/options-pages.php:1249
578
  msgid "Menu Name"
579
  msgstr "Menu Naam"
580
 
581
  # @ eml
582
- #: core/options-pages.php:1199 core/options-pages.php:1222
583
- #: core/options-pages.php:1262 core/options-pages.php:1323
584
  msgid "Settings"
585
  msgstr "Instellingen"
586
 
587
- #: core/options-pages.php:1201 core/options-pages.php:1264
588
  msgid "Taxonomy Name"
589
  msgstr ""
590
 
591
  # @ eml
592
- #: core/options-pages.php:1202 core/options-pages.php:1265
593
  msgid "Hierarchical"
594
  msgstr "Hiërarchisch"
595
 
596
- #: core/options-pages.php:1203 core/options-pages.php:1266
597
  msgid "Column for List View"
598
  msgstr ""
599
 
600
- #: core/options-pages.php:1204 core/options-pages.php:1224
601
- #: core/options-pages.php:1267 core/options-pages.php:1325
602
  msgid "Filter for List View"
603
  msgstr ""
604
 
605
- #: core/options-pages.php:1205 core/options-pages.php:1225
606
- #: core/options-pages.php:1268 core/options-pages.php:1326
607
  msgid "Filter for Grid View / Media Popup"
608
  msgstr ""
609
 
610
- #: core/options-pages.php:1206 core/options-pages.php:1226
611
- #: core/options-pages.php:1269 core/options-pages.php:1327
612
  msgid "Edit in Media Popup"
613
  msgstr ""
614
 
615
  # @ eml
616
- #: core/options-pages.php:1207 core/options-pages.php:1270
617
  msgid "Show in Nav Menu"
618
  msgstr "Toon in Nav Menu"
619
 
620
- #: core/options-pages.php:1208 core/options-pages.php:1271
621
  msgid "Remember Terms Order (sort)"
622
  msgstr ""
623
 
624
- #: core/options-pages.php:1209 core/options-pages.php:1272
625
  msgid "Show in REST"
626
  msgstr ""
627
 
628
- #: core/options-pages.php:1210 core/options-pages.php:1273
629
  msgid "Rewrite Slug"
630
  msgstr ""
631
 
632
- #: core/options-pages.php:1211 core/options-pages.php:1274
633
  msgid "Slug with Front"
634
  msgstr ""
635
 
636
  # @ eml
637
- #: core/options-pages.php:1286
638
  msgid "Add New Taxonomy"
639
  msgstr "Voeg Nieuwe Taxonomie Toe"
640
 
641
  # @ eml
642
- #: core/options-pages.php:1296
643
  msgid "Non-Media Taxonomies"
644
  msgstr "Niet-Media Taxonomies"
645
 
646
- #: core/options-pages.php:1357
647
  msgid "Options"
648
  msgstr ""
649
 
650
- #: core/options-pages.php:1367 core/options-pages.php:1370
651
  msgid "Taxonomy archive pages"
652
  msgstr ""
653
 
654
- #: core/options-pages.php:1371
655
  msgid "Turn on media taxonomy archive pages on the front-end"
656
  msgstr ""
657
 
658
- #: core/options-pages.php:1372
659
  msgid ""
660
  "Re-save your permalink settings after this option change to make it work."
661
  msgstr ""
662
 
663
- #: core/options-pages.php:1378 core/options-pages.php:1381
664
  msgid "Assign all like hierarchical"
665
  msgstr ""
666
 
667
- #: core/options-pages.php:1382
668
  msgid ""
669
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
670
  msgstr ""
671
 
672
- #: core/options-pages.php:1388 core/options-pages.php:1391
673
  msgid "Force filters"
674
  msgstr ""
675
 
676
- #: core/options-pages.php:1392
677
  msgid "Show media filters for ANY Media Popup"
678
  msgstr ""
679
 
680
- #: core/options-pages.php:1393
681
  msgid "Try this if filters are not shown for third-party plugins or themes."
682
  msgstr ""
683
 
684
- #: core/options-pages.php:1399 core/options-pages.php:1402
685
  msgid "Show count"
686
  msgstr ""
687
 
688
- #: core/options-pages.php:1403
689
  msgid "Show item count per category for media filters"
690
  msgstr ""
691
 
692
  # @ eml
693
- #: core/options-pages.php:1457
694
  msgid "Add New MIME Type"
695
  msgstr "Voeg Nieuw MIME Type Toe"
696
 
697
  # @ eml
698
- #: core/options-pages.php:1477 core/options-pages.php:1532
699
  msgid "Extension"
700
  msgstr "Extensie"
701
 
702
  # @ eml
703
- #: core/options-pages.php:1478 core/options-pages.php:1533
704
  msgid "MIME Type"
705
  msgstr "MIME Type"
706
 
707
  # @ eml
708
- #: core/options-pages.php:1479 core/options-pages.php:1534
709
  msgid "Singular Label"
710
  msgstr "Enkelvoud Label"
711
 
712
  # @ eml
713
- #: core/options-pages.php:1480 core/options-pages.php:1535
714
  msgid "Plural Label"
715
  msgstr "Meervoud Label"
716
 
717
  # @ eml
718
- #: core/options-pages.php:1481 core/options-pages.php:1511
719
- #: core/options-pages.php:1524 core/options-pages.php:1536
720
  msgid "Add Filter"
721
  msgstr "Voeg Filter Toe"
722
 
723
  # @ eml
724
- #: core/options-pages.php:1482 core/options-pages.php:1512
725
- #: core/options-pages.php:1525 core/options-pages.php:1537
726
  msgid "Allow Upload"
727
  msgstr "Sta Upload Toe"
728
 
729
  # @ eml
730
- #: core/options-pages.php:1513 core/options-pages.php:1526
731
  msgid "Delete MIME Type"
732
  msgstr "Verwijder MIME Type"
733
 
734
- #: core/options-pages.php:1573
735
  msgid "Save Changes"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1603
739
  msgid "Changelog"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1604
743
  msgid "What's new in"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1604
747
  msgid "version"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1607
751
  msgid "More features under the hood"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1609
755
  msgid "Support"
756
  msgstr ""
757
 
758
- #: core/options-pages.php:1610
759
  msgid "Feel free to ask for help on"
760
  msgstr ""
761
 
762
- #: core/options-pages.php:1610
763
  msgid "Support is free for both versions of the plugin."
764
  msgstr ""
765
 
766
- #: core/options-pages.php:1612
767
  msgid "Plugin rating"
768
  msgstr ""
769
 
770
- #: core/options-pages.php:1613
771
  msgid "Please"
772
  msgstr ""
773
 
774
- #: core/options-pages.php:1613
775
  msgid "vote for the plugin"
776
  msgstr ""
777
 
778
- #: core/options-pages.php:1613
779
  msgid "Thanks!"
780
  msgstr ""
781
 
782
- #: core/options-pages.php:1615
783
  msgid "Other plugins you may find useful"
784
  msgstr ""
785
 
786
- #: core/options-pages.php:1654
787
  msgid "Utility"
788
  msgstr ""
789
 
790
- #: core/options-pages.php:1677
791
  msgid "Vote!"
792
  msgstr ""
793
 
@@ -799,71 +805,364 @@ msgstr ""
799
  msgid "Media Library settings saved."
800
  msgstr ""
801
 
802
- #: core/taxonomies.php:341 core/taxonomies.php:347
803
- #: enhanced-media-library.php:484
804
  msgid "Filter by"
805
  msgstr ""
806
 
807
- #: core/taxonomies.php:349 enhanced-media-library.php:486
808
- msgid "Not in"
809
  msgstr ""
810
 
811
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
812
  msgid "All Uncategorized"
813
  msgstr ""
814
 
815
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
816
  msgid "Reset All Filters"
817
  msgstr ""
818
 
819
- #: enhanced-media-library.php:517
820
  msgid "Uploaded to post #"
821
  msgstr ""
822
 
823
- #: enhanced-media-library.php:518
824
  msgid "Based On"
825
  msgstr ""
826
 
827
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
828
  msgid "Media Categories"
829
  msgstr ""
830
 
831
- #: enhanced-media-library.php:564
832
  msgid "Media Category"
833
  msgstr ""
834
 
835
- #: enhanced-media-library.php:566
836
  msgid "All Media Categories"
837
  msgstr ""
838
 
839
- #: enhanced-media-library.php:567
840
  msgid "Edit Media Category"
841
  msgstr ""
842
 
843
- #: enhanced-media-library.php:568
844
  msgid "View Media Category"
845
  msgstr ""
846
 
847
- #: enhanced-media-library.php:569
848
  msgid "Update Media Category"
849
  msgstr ""
850
 
851
- #: enhanced-media-library.php:570
852
  msgid "Add New Media Category"
853
  msgstr ""
854
 
855
- #: enhanced-media-library.php:571
856
  msgid "New Media Category Name"
857
  msgstr ""
858
 
859
- #: enhanced-media-library.php:572
860
  msgid "Parent Media Category"
861
  msgstr ""
862
 
863
- #: enhanced-media-library.php:573
864
  msgid "Parent Media Category:"
865
  msgstr ""
866
 
867
- #: enhanced-media-library.php:574
868
  msgid "Search Media Categories"
869
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library v1.0.4\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
5
+ "POT-Creation-Date: 2016-11-29 19:45+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:45+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: De B.A.A.T. <de_baat@de-baat.nl>\n"
9
  "Language: nl_NL\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
35
  msgstr[1] ""
36
 
37
  # @ eml
38
+ #: core/options-pages.php:97 core/options-pages.php:239
39
+ #: core/options-pages.php:1006 core/options-pages.php:1130
40
+ #: core/options-pages.php:1455 core/options-pages.php:1655
41
  msgid "Media Settings"
42
  msgstr "Media Instellingen"
43
 
44
+ #: core/options-pages.php:106 core/options-pages.php:211
45
  msgid "Media Library"
46
  msgstr ""
47
 
51
  msgstr "Taxonomies"
52
 
53
  # @ eml
54
+ #: core/options-pages.php:124 core/options-pages.php:213
55
  msgid "MIME Types"
56
  msgstr "MIME Types"
57
 
60
  msgid "Enhanced Media Library"
61
  msgstr ""
62
 
63
+ #: core/options-pages.php:210
64
  msgid "General"
65
  msgstr ""
66
 
67
  # @ eml
68
+ #: core/options-pages.php:212 core/options-pages.php:1151
69
  msgid "Media Taxonomies"
70
  msgstr "Media Taxonomies"
71
 
72
  # @ eml
73
+ #: core/options-pages.php:236 core/options-pages.php:548
74
+ #: core/options-pages.php:1002 core/options-pages.php:1127
75
+ #: core/options-pages.php:1451
76
  msgid "You do not have sufficient permissions to access this page."
77
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
78
 
79
+ #: core/options-pages.php:250
80
  msgid "Image sizes"
81
  msgstr ""
82
 
83
+ #: core/options-pages.php:251
84
  msgid ""
85
  "The sizes listed below determine the maximum dimensions in pixels to use "
86
  "when adding an image to the Media Library."
87
  msgstr ""
88
 
89
+ #: core/options-pages.php:255
90
  msgid "Thumbnail size"
91
  msgstr ""
92
 
93
+ #: core/options-pages.php:257
94
  msgid "Width"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:259
98
  msgid "Height"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:262
102
  msgid ""
103
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
104
  msgstr ""
105
 
106
+ #: core/options-pages.php:267 core/options-pages.php:268
107
  msgid "Medium size"
108
  msgstr ""
109
 
110
+ #: core/options-pages.php:269 core/options-pages.php:279
111
  msgid "Max Width"
112
  msgstr ""
113
 
114
+ #: core/options-pages.php:271 core/options-pages.php:281
115
  msgid "Max Height"
116
  msgstr ""
117
 
118
+ #: core/options-pages.php:277 core/options-pages.php:278
119
  msgid "Large size"
120
  msgstr ""
121
 
122
+ #: core/options-pages.php:294
123
  msgid "Embeds"
124
  msgstr ""
125
 
126
+ #: core/options-pages.php:301
127
  msgid "Uploading Files"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:308
131
  msgid "Store uploads in this folder"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:312
135
  #, php-format
136
  msgid "Default is %s"
137
  msgstr ""
138
 
139
+ #: core/options-pages.php:318
140
  msgid "Full URL path to files"
141
  msgstr ""
142
 
143
+ #: core/options-pages.php:320
144
  msgid "Configuring this is optional. By default, it should be blank."
145
  msgstr ""
146
 
147
+ #: core/options-pages.php:328
148
  msgid "Organize my uploads into month- and year-based folders"
149
  msgstr ""
150
 
151
  # @ eml
152
+ #: core/options-pages.php:400 core/options-pages.php:1175
153
+ #: core/options-pages.php:1190 core/options-pages.php:1253
154
+ #: core/options-pages.php:1325
155
  msgid "Edit"
156
  msgstr "Bewerk"
157
 
158
  # @ eml
159
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
160
  msgid "Close"
161
  msgstr "Sluit"
162
 
163
  # @ eml
164
+ #: core/options-pages.php:402 core/options-pages.php:1191
165
+ #: core/options-pages.php:1254
166
  msgid "View"
167
  msgstr "Bekijk"
168
 
169
  # @ eml
170
+ #: core/options-pages.php:403 core/options-pages.php:1192
171
+ #: core/options-pages.php:1255
172
  msgid "Update"
173
  msgstr "Werk bij"
174
 
175
  # @ eml
176
+ #: core/options-pages.php:404 core/options-pages.php:1193
177
+ #: core/options-pages.php:1256
178
  msgid "Add New"
179
  msgstr "Voeg Nieuw Toe"
180
 
181
  # @ eml
182
+ #: core/options-pages.php:405 core/options-pages.php:1194
183
+ #: core/options-pages.php:1257
184
  msgid "New"
185
  msgstr "Nieuw"
186
 
187
  # @ eml
188
+ #: core/options-pages.php:406
189
  msgid "Name"
190
  msgstr "Naam"
191
 
192
  # @ eml
193
+ #: core/options-pages.php:407 core/options-pages.php:1195
194
+ #: core/options-pages.php:1258
195
  msgid "Parent"
196
  msgstr "Parent"
197
 
198
  # @ eml
199
+ #: core/options-pages.php:408 core/options-pages.php:644
200
+ #: core/options-pages.php:1189 core/options-pages.php:1252
201
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
202
  msgid "All"
203
  msgstr "Allemaal"
204
 
205
  # @ eml
206
+ #: core/options-pages.php:409 core/options-pages.php:1196
207
+ #: core/options-pages.php:1259
208
  msgid "Search"
209
  msgstr "Zoek"
210
 
211
  # @ eml
212
+ #: core/options-pages.php:411 core/options-pages.php:1240
213
  msgid "New Taxonomy"
214
  msgstr "Nieuwe Taxonomy"
215
 
216
+ #: core/options-pages.php:413
217
  msgid "Remove Taxonomy"
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:414
221
  msgid "Taxonomy will be removed."
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:415
225
  msgid ""
226
  "Taxonomy terms (categories) will remain intact in the database. If you "
227
  "create a taxonomy with the same name in the future, its terms (categories) "
228
  "will be available again."
229
  msgstr ""
230
 
231
+ #: core/options-pages.php:416
232
  msgid "Media items will remain intact."
233
  msgstr ""
234
 
235
+ #: core/options-pages.php:417
236
  msgid "Are you still sure?"
237
  msgstr ""
238
 
239
+ #: core/options-pages.php:418
240
  msgid "Yes, remove taxonomy"
241
  msgstr ""
242
 
243
+ #: core/options-pages.php:420
244
  msgid "Duplicate"
245
  msgstr ""
246
 
247
+ #: core/options-pages.php:421
248
  msgid "Taxonomy with the same name already exists. Please chose other one."
249
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
250
 
251
+ #: core/options-pages.php:423
252
  msgid "Empty Fields"
253
  msgstr ""
254
 
255
+ #: core/options-pages.php:424
256
  msgid "Please choose Singular and Plural names for all new taxomonies."
257
  msgstr ""
258
 
259
+ #: core/options-pages.php:425
260
  msgid "Please choose Singular name for all new taxomonies."
261
  msgstr ""
262
 
263
+ #: core/options-pages.php:426
264
  msgid "Please choose Plural Name for all new taxomonies."
265
  msgstr ""
266
 
267
+ #: core/options-pages.php:428
268
  msgid "Ok"
269
  msgstr ""
270
 
271
+ #: core/options-pages.php:429 core/options-pages.php:434
272
+ #: core/options-pages.php:478 core/options-pages.php:523
273
+ #: pro/enhanced-media-library-pro.php:133
274
  msgid "Cancel"
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
278
  msgid "Synchronize Now"
279
  msgstr ""
280
 
281
+ #: core/options-pages.php:432 core/options-pages.php:520
282
  msgid "This operation cannot be canceled! Are you still sure?"
283
  msgstr ""
284
 
285
+ #: core/options-pages.php:433
286
  msgid "Synchronize"
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:435
290
  msgid "Synchronizing..."
291
  msgstr ""
292
 
293
+ #: core/options-pages.php:473 core/options-pages.php:1579
294
  msgid "Restore WordPress default MIME Types"
295
  msgstr ""
296
 
297
  # @ eml
298
+ #: core/options-pages.php:474
299
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
300
  msgstr ""
301
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
302
  "verwijderd worden."
303
 
304
+ #: core/options-pages.php:475
305
  msgid "Restore Defaults"
306
  msgstr ""
307
 
308
+ #: core/options-pages.php:476
309
  msgid "Restoring..."
310
  msgstr ""
311
 
312
  # @ eml
313
+ #: core/options-pages.php:480
314
  msgid "Please fill into all fields."
315
  msgstr "Vul aub alle velden in."
316
 
317
  # @ eml
318
+ #: core/options-pages.php:481
319
  msgid "Duplicate extensions or MIME types. Please chose other one."
320
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
321
 
322
+ #: core/options-pages.php:518 core/options-pages.php:635
323
  msgid "Complete Cleanup"
324
  msgstr ""
325
 
326
+ #: core/options-pages.php:519
327
  msgid ""
328
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
329
  "plugin data</strong> from the database including backups."
330
  msgstr ""
331
 
332
+ #: core/options-pages.php:521
333
  msgid "Yes, delete all data"
334
  msgstr ""
335
 
336
+ #: core/options-pages.php:522
337
  msgid "Cleaning..."
338
  msgstr ""
339
 
340
+ #: core/options-pages.php:553
341
  msgid "Enhanced Media Library Settings"
342
  msgstr ""
343
 
344
+ #: core/options-pages.php:563
345
  msgid "Export"
346
  msgstr ""
347
 
348
+ #: core/options-pages.php:567
349
  msgid ""
350
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
351
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
353
  "another website."
354
  msgstr ""
355
 
356
+ #: core/options-pages.php:572
357
  msgid "Export Plugin Settings"
358
  msgstr ""
359
 
360
+ #: core/options-pages.php:582
361
  msgid "Import"
362
  msgstr ""
363
 
364
+ #: core/options-pages.php:586
365
  msgid ""
366
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
367
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
369
  "another website using the export button above."
370
  msgstr ""
371
 
372
+ #: core/options-pages.php:587
373
  msgid ""
374
  "All plugin settings will be overridden by the import. You will have a chance "
375
  "to restore current data from an automatic backup in case you are not "
376
  "satisfied with the result of the import."
377
  msgstr ""
378
 
379
+ #: core/options-pages.php:594
380
  msgid "Import Plugin Settings"
381
  msgstr ""
382
 
383
+ #: core/options-pages.php:606
384
  msgid "Restore"
385
  msgstr ""
386
 
387
+ #: core/options-pages.php:612
388
  msgid "No backup available at the moment."
389
  msgstr ""
390
 
391
+ #: core/options-pages.php:614
392
  msgid "Backup will be created automatically before any import operation."
393
  msgstr ""
394
 
395
+ #: core/options-pages.php:618
396
  msgid ""
397
  "The backup has been automatically created before the latest import operation."
398
  msgstr ""
399
 
400
+ #: core/options-pages.php:622
401
  msgid "Restore Settings from the Backup"
402
  msgstr ""
403
 
404
+ #: core/options-pages.php:642
405
  msgid "What will be deleted:"
406
  msgstr ""
407
 
408
+ #: core/options-pages.php:647
409
  msgid "All plugin options"
410
  msgstr ""
411
 
412
+ #: core/options-pages.php:648
413
  msgid "All plugin backups stored in database"
414
  msgstr ""
415
 
416
+ #: core/options-pages.php:652
417
  msgid "What will remain intact:"
418
  msgstr ""
419
 
420
+ #: core/options-pages.php:653
421
  msgid "All media items"
422
  msgstr ""
423
 
424
+ #: core/options-pages.php:654
425
  msgid "All taxonomies not listed above"
426
  msgstr ""
427
 
428
+ #: core/options-pages.php:657
429
  msgid ""
430
  "The plugin cannot delete itself because of security reason. Please delete it "
431
  "manually from plugin list after cleanup."
432
  msgstr ""
433
 
434
+ #: core/options-pages.php:659
435
  msgid ""
436
  "If you are not sure about this operation please create a backup of your "
437
  "database prior to cleanup!"
438
  msgstr ""
439
 
440
+ #: core/options-pages.php:665
441
  msgid "Delete All Data & Deactivate"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:765
445
  msgid "Please upload a file to import settings."
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:791
449
  msgid "Plugin settings imported."
450
  msgstr ""
451
 
452
+ #: core/options-pages.php:838
453
  msgid "Plugin settings restored from the backup."
454
  msgstr ""
455
 
456
+ #: core/options-pages.php:1027
457
  msgid "Media Items Order"
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1034
461
  msgid "Order media items by"
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
465
+ #: pro/core/medialist.php:73
466
  msgid "Date"
467
  msgstr ""
468
 
469
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
470
+ #: pro/core/medialist.php:76
471
  msgid "Title"
472
  msgstr ""
473
 
474
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
475
+ #: pro/core/medialist.php:79
476
  msgid "Custom Order"
477
  msgstr ""
478
 
479
+ #: core/options-pages.php:1041 core/options-pages.php:1053
480
  msgid "For media library and media popups"
481
  msgstr ""
482
 
483
+ #: core/options-pages.php:1042
484
  msgid "Option allows to change order by drag and drop with Custom Order value."
485
  msgstr ""
486
 
487
+ #: core/options-pages.php:1047
488
  msgid "Sort order"
489
  msgstr ""
490
 
491
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
492
+ #: pro/core/medialist.php:92
493
  msgid "Ascending"
494
  msgstr ""
495
 
496
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
497
+ #: pro/core/medialist.php:95
498
  msgid "Descending"
499
  msgstr ""
500
 
501
+ #: core/options-pages.php:1066
502
  msgid "Media Shortcodes"
503
  msgstr ""
504
 
505
+ #: core/options-pages.php:1073 core/options-pages.php:1076
506
  msgid "Enhanced media shortcodes"
507
  msgstr ""
508
 
509
+ #: core/options-pages.php:1077
510
  msgid ""
511
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
512
  "upload date, and media items number limit"
513
  msgstr ""
514
 
515
+ #: core/options-pages.php:1078
516
  msgid "Gallery example:"
517
  msgstr ""
518
 
519
+ #: core/options-pages.php:1079
520
  msgid "Audio playlist example:"
521
  msgstr ""
522
 
523
+ #: core/options-pages.php:1080
524
  msgid "Video playlist example:"
525
  msgstr ""
526
 
527
+ #: core/options-pages.php:1082
528
  #, php-format
529
  msgid ""
530
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
531
  msgstr ""
532
 
533
+ #: core/options-pages.php:1084
534
  #, php-format
535
  msgid "%sLearn more%s."
536
  msgstr ""
537
 
538
+ #: core/options-pages.php:1086
539
  #, php-format
540
  msgid ""
541
  "Please check out your gallery front-end and back-end functionality once this "
544
  msgstr ""
545
 
546
  # @ eml
547
+ #: core/options-pages.php:1155 core/options-pages.php:1302
548
  msgid "Assign following taxonomies to Media Library:"
549
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
550
 
551
  # @ eml
552
+ #: core/options-pages.php:1174 core/options-pages.php:1240
553
+ #: core/options-pages.php:1324
554
  msgid "Assign Taxonomy"
555
  msgstr "Toekennen Taxonomie"
556
 
557
  # @ eml
558
+ #: core/options-pages.php:1175 core/options-pages.php:1325
559
  msgid "Edit Taxonomy"
560
  msgstr "Bewerk Taxonomie"
561
 
562
  # @ eml
563
+ #: core/options-pages.php:1179 core/options-pages.php:1242
564
  msgid "Delete Taxonomy"
565
  msgstr "Verwijder Taxonomie"
566
 
567
  # @ eml
568
+ #: core/options-pages.php:1184 core/options-pages.php:1247
569
  msgid "Labels"
570
  msgstr "Labels"
571
 
572
  # @ eml
573
+ #: core/options-pages.php:1186 core/options-pages.php:1249
574
  msgid "Singular"
575
  msgstr "Enkelvoud"
576
 
577
  # @ eml
578
+ #: core/options-pages.php:1187 core/options-pages.php:1250
579
  msgid "Plural"
580
  msgstr "Meervoud"
581
 
582
  # @ eml
583
+ #: core/options-pages.php:1188 core/options-pages.php:1251
584
  msgid "Menu Name"
585
  msgstr "Menu Naam"
586
 
587
  # @ eml
588
+ #: core/options-pages.php:1201 core/options-pages.php:1224
589
+ #: core/options-pages.php:1264 core/options-pages.php:1328
590
  msgid "Settings"
591
  msgstr "Instellingen"
592
 
593
+ #: core/options-pages.php:1203 core/options-pages.php:1266
594
  msgid "Taxonomy Name"
595
  msgstr ""
596
 
597
  # @ eml
598
+ #: core/options-pages.php:1204 core/options-pages.php:1267
599
  msgid "Hierarchical"
600
  msgstr "Hiërarchisch"
601
 
602
+ #: core/options-pages.php:1205 core/options-pages.php:1268
603
  msgid "Column for List View"
604
  msgstr ""
605
 
606
+ #: core/options-pages.php:1206 core/options-pages.php:1226
607
+ #: core/options-pages.php:1269 core/options-pages.php:1330
608
  msgid "Filter for List View"
609
  msgstr ""
610
 
611
+ #: core/options-pages.php:1207 core/options-pages.php:1227
612
+ #: core/options-pages.php:1270 core/options-pages.php:1331
613
  msgid "Filter for Grid View / Media Popup"
614
  msgstr ""
615
 
616
+ #: core/options-pages.php:1208 core/options-pages.php:1228
617
+ #: core/options-pages.php:1271 core/options-pages.php:1332
618
  msgid "Edit in Media Popup"
619
  msgstr ""
620
 
621
  # @ eml
622
+ #: core/options-pages.php:1209 core/options-pages.php:1272
623
  msgid "Show in Nav Menu"
624
  msgstr "Toon in Nav Menu"
625
 
626
+ #: core/options-pages.php:1210 core/options-pages.php:1273
627
  msgid "Remember Terms Order (sort)"
628
  msgstr ""
629
 
630
+ #: core/options-pages.php:1211 core/options-pages.php:1274
631
  msgid "Show in REST"
632
  msgstr ""
633
 
634
+ #: core/options-pages.php:1212 core/options-pages.php:1275
635
  msgid "Rewrite Slug"
636
  msgstr ""
637
 
638
+ #: core/options-pages.php:1213 core/options-pages.php:1276
639
  msgid "Slug with Front"
640
  msgstr ""
641
 
642
  # @ eml
643
+ #: core/options-pages.php:1288
644
  msgid "Add New Taxonomy"
645
  msgstr "Voeg Nieuwe Taxonomie Toe"
646
 
647
  # @ eml
648
+ #: core/options-pages.php:1298
649
  msgid "Non-Media Taxonomies"
650
  msgstr "Niet-Media Taxonomies"
651
 
652
+ #: core/options-pages.php:1361
653
  msgid "Options"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1371 core/options-pages.php:1374
657
  msgid "Taxonomy archive pages"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1375
661
  msgid "Turn on media taxonomy archive pages on the front-end"
662
  msgstr ""
663
 
664
+ #: core/options-pages.php:1376
665
  msgid ""
666
  "Re-save your permalink settings after this option change to make it work."
667
  msgstr ""
668
 
669
+ #: core/options-pages.php:1382 core/options-pages.php:1385
670
  msgid "Assign all like hierarchical"
671
  msgstr ""
672
 
673
+ #: core/options-pages.php:1386
674
  msgid ""
675
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
676
  msgstr ""
677
 
678
+ #: core/options-pages.php:1392 core/options-pages.php:1395
679
  msgid "Force filters"
680
  msgstr ""
681
 
682
+ #: core/options-pages.php:1396
683
  msgid "Show media filters for ANY Media Popup"
684
  msgstr ""
685
 
686
+ #: core/options-pages.php:1397
687
  msgid "Try this if filters are not shown for third-party plugins or themes."
688
  msgstr ""
689
 
690
+ #: core/options-pages.php:1403 core/options-pages.php:1406
691
  msgid "Show count"
692
  msgstr ""
693
 
694
+ #: core/options-pages.php:1407
695
  msgid "Show item count per category for media filters"
696
  msgstr ""
697
 
698
  # @ eml
699
+ #: core/options-pages.php:1461
700
  msgid "Add New MIME Type"
701
  msgstr "Voeg Nieuw MIME Type Toe"
702
 
703
  # @ eml
704
+ #: core/options-pages.php:1481 core/options-pages.php:1536
705
  msgid "Extension"
706
  msgstr "Extensie"
707
 
708
  # @ eml
709
+ #: core/options-pages.php:1482 core/options-pages.php:1537
710
  msgid "MIME Type"
711
  msgstr "MIME Type"
712
 
713
  # @ eml
714
+ #: core/options-pages.php:1483 core/options-pages.php:1538
715
  msgid "Singular Label"
716
  msgstr "Enkelvoud Label"
717
 
718
  # @ eml
719
+ #: core/options-pages.php:1484 core/options-pages.php:1539
720
  msgid "Plural Label"
721
  msgstr "Meervoud Label"
722
 
723
  # @ eml
724
+ #: core/options-pages.php:1485 core/options-pages.php:1515
725
+ #: core/options-pages.php:1528 core/options-pages.php:1540
726
  msgid "Add Filter"
727
  msgstr "Voeg Filter Toe"
728
 
729
  # @ eml
730
+ #: core/options-pages.php:1486 core/options-pages.php:1516
731
+ #: core/options-pages.php:1529 core/options-pages.php:1541
732
  msgid "Allow Upload"
733
  msgstr "Sta Upload Toe"
734
 
735
  # @ eml
736
+ #: core/options-pages.php:1517 core/options-pages.php:1530
737
  msgid "Delete MIME Type"
738
  msgstr "Verwijder MIME Type"
739
 
740
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
741
  msgid "Save Changes"
742
  msgstr ""
743
 
744
+ #: core/options-pages.php:1607
745
  msgid "Changelog"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1608
749
  msgid "What's new in"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1608
753
  msgid "version"
754
  msgstr ""
755
 
756
+ #: core/options-pages.php:1611
757
  msgid "More features under the hood"
758
  msgstr ""
759
 
760
+ #: core/options-pages.php:1613
761
  msgid "Support"
762
  msgstr ""
763
 
764
+ #: core/options-pages.php:1614
765
  msgid "Feel free to ask for help on"
766
  msgstr ""
767
 
768
+ #: core/options-pages.php:1614
769
  msgid "Support is free for both versions of the plugin."
770
  msgstr ""
771
 
772
+ #: core/options-pages.php:1616
773
  msgid "Plugin rating"
774
  msgstr ""
775
 
776
+ #: core/options-pages.php:1617
777
  msgid "Please"
778
  msgstr ""
779
 
780
+ #: core/options-pages.php:1617
781
  msgid "vote for the plugin"
782
  msgstr ""
783
 
784
+ #: core/options-pages.php:1617
785
  msgid "Thanks!"
786
  msgstr ""
787
 
788
+ #: core/options-pages.php:1619
789
  msgid "Other plugins you may find useful"
790
  msgstr ""
791
 
792
+ #: core/options-pages.php:1658
793
  msgid "Utility"
794
  msgstr ""
795
 
796
+ #: core/options-pages.php:1681
797
  msgid "Vote!"
798
  msgstr ""
799
 
805
  msgid "Media Library settings saved."
806
  msgstr ""
807
 
808
+ #: core/taxonomies.php:333 core/taxonomies.php:339
809
+ #: enhanced-media-library.php:502
810
  msgid "Filter by"
811
  msgstr ""
812
 
813
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
814
+ msgid "Not in a"
815
  msgstr ""
816
 
817
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
818
  msgid "All Uncategorized"
819
  msgstr ""
820
 
821
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
822
  msgid "Reset All Filters"
823
  msgstr ""
824
 
825
+ #: enhanced-media-library.php:535
826
  msgid "Uploaded to post #"
827
  msgstr ""
828
 
829
+ #: enhanced-media-library.php:536
830
  msgid "Based On"
831
  msgstr ""
832
 
833
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
834
  msgid "Media Categories"
835
  msgstr ""
836
 
837
+ #: enhanced-media-library.php:582
838
  msgid "Media Category"
839
  msgstr ""
840
 
841
+ #: enhanced-media-library.php:584
842
  msgid "All Media Categories"
843
  msgstr ""
844
 
845
+ #: enhanced-media-library.php:585
846
  msgid "Edit Media Category"
847
  msgstr ""
848
 
849
+ #: enhanced-media-library.php:586
850
  msgid "View Media Category"
851
  msgstr ""
852
 
853
+ #: enhanced-media-library.php:587
854
  msgid "Update Media Category"
855
  msgstr ""
856
 
857
+ #: enhanced-media-library.php:588
858
  msgid "Add New Media Category"
859
  msgstr ""
860
 
861
+ #: enhanced-media-library.php:589
862
  msgid "New Media Category Name"
863
  msgstr ""
864
 
865
+ #: enhanced-media-library.php:590
866
  msgid "Parent Media Category"
867
  msgstr ""
868
 
869
+ #: enhanced-media-library.php:591
870
  msgid "Parent Media Category:"
871
  msgstr ""
872
 
873
+ #: enhanced-media-library.php:592
874
  msgid "Search Media Categories"
875
  msgstr ""
876
+
877
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
878
+ msgid "Remove"
879
+ msgstr ""
880
+
881
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
882
+ msgid "Deselect"
883
+ msgstr ""
884
+
885
+ #: pro/core/bulk-edit.php:105
886
+ msgid "Caption this image&hellip;"
887
+ msgstr ""
888
+
889
+ #: pro/core/bulk-edit.php:109
890
+ msgid "Describe this video&hellip;"
891
+ msgstr ""
892
+
893
+ #: pro/core/bulk-edit.php:111
894
+ msgid "Describe this audio file&hellip;"
895
+ msgstr ""
896
+
897
+ #: pro/core/bulk-edit.php:113
898
+ msgid "Describe this media file&hellip;"
899
+ msgstr ""
900
+
901
+ #: pro/core/bulk-edit.php:122
902
+ msgid "Attachments Details"
903
+ msgstr ""
904
+
905
+ #: pro/core/bulk-edit.php:175
906
+ msgid "Select All"
907
+ msgstr ""
908
+
909
+ #: pro/core/bulk-edit.php:176
910
+ msgid "Deselect All"
911
+ msgstr ""
912
+
913
+ #: pro/core/bulk-edit.php:177
914
+ msgid "Delete Selected"
915
+ msgstr ""
916
+
917
+ #: pro/core/bulk-edit.php:178
918
+ msgid "Trash Selected"
919
+ msgstr ""
920
+
921
+ #: pro/core/bulk-edit.php:179
922
+ msgid "Restore Selected"
923
+ msgstr ""
924
+
925
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
926
+ msgid "Delete Selected Permanently"
927
+ msgstr ""
928
+
929
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
930
+ msgid "Order By"
931
+ msgstr ""
932
+
933
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
934
+ msgid "Random"
935
+ msgstr ""
936
+
937
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
938
+ msgid "Order"
939
+ msgstr ""
940
+
941
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
942
+ msgid "Limit"
943
+ msgstr ""
944
+
945
+ #: pro/core/options-pages.php:78
946
+ msgid "Your license has been deactivated."
947
+ msgstr ""
948
+
949
+ #: pro/core/options-pages.php:88
950
+ msgid "Please check if your license key is correct and try again."
951
+ msgstr ""
952
+
953
+ #: pro/core/options-pages.php:104
954
+ #, php-format
955
+ msgid ""
956
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
957
+ "authors</a>."
958
+ msgstr ""
959
+
960
+ #: pro/core/options-pages.php:119
961
+ #, php-format
962
+ msgid ""
963
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
964
+ "plugin authors</a>."
965
+ msgstr ""
966
+
967
+ #: pro/core/options-pages.php:130
968
+ msgid "You license has been activated."
969
+ msgstr ""
970
+
971
+ #: pro/core/options-pages.php:184
972
+ #, php-format
973
+ msgid "Auto-assign media items to parent %s %s on upload"
974
+ msgstr ""
975
+
976
+ #: pro/core/options-pages.php:185
977
+ #, php-format
978
+ msgid ""
979
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
980
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
981
+ "assigned %s will not be saved. Media items that are not attached to any %s "
982
+ "will not be affected."
983
+ msgstr ""
984
+
985
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
986
+ msgid "Bulk Edit"
987
+ msgstr ""
988
+
989
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
990
+ msgid "Turn off 'Save Changes' button"
991
+ msgstr ""
992
+
993
+ #: pro/core/options-pages.php:220
994
+ msgid "Save changes on the fly"
995
+ msgstr ""
996
+
997
+ #: pro/core/options-pages.php:221
998
+ msgid ""
999
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
1000
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
1001
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
1002
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
1003
+ "files / taxonomies with this option turned on."
1004
+ msgstr ""
1005
+
1006
+ #: pro/core/options-pages.php:222
1007
+ msgid ""
1008
+ "Strongly NOT recommended option if you work with more than hundred of files "
1009
+ "at a time."
1010
+ msgstr ""
1011
+
1012
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
1013
+ msgid "License Key"
1014
+ msgstr ""
1015
+
1016
+ #: pro/core/options-pages.php:273
1017
+ #, php-format
1018
+ msgid ""
1019
+ "To unlock updates please enter your license key below. You can get your "
1020
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
1021
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
1022
+ msgstr ""
1023
+
1024
+ #: pro/core/options-pages.php:283
1025
+ msgid "Activate License"
1026
+ msgstr ""
1027
+
1028
+ #: pro/core/options-pages.php:290
1029
+ msgid "Your license is active!"
1030
+ msgstr ""
1031
+
1032
+ #: pro/core/options-pages.php:294
1033
+ msgid "Deactivate License"
1034
+ msgstr ""
1035
+
1036
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1037
+ msgid ""
1038
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
1039
+ "this server&#8217;s configuration. If you continue to have problems, please "
1040
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1041
+ msgstr ""
1042
+
1043
+ #: pro/core/update.php:113
1044
+ msgid ""
1045
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1046
+ "contact your server administrator.)"
1047
+ msgstr ""
1048
+
1049
+ #: pro/core/update.php:181
1050
+ #, php-format
1051
+ msgid ""
1052
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1053
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1054
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1055
+ msgstr ""
1056
+
1057
+ #: pro/enhanced-media-library-pro.php:119
1058
+ msgid "ALL files belong to this item"
1059
+ msgstr ""
1060
+
1061
+ #: pro/enhanced-media-library-pro.php:120
1062
+ msgid "SOME files belong to this item"
1063
+ msgstr ""
1064
+
1065
+ #: pro/enhanced-media-library-pro.php:121
1066
+ msgid "NO files belong to this item"
1067
+ msgstr ""
1068
+
1069
+ #: pro/enhanced-media-library-pro.php:122
1070
+ msgid "Changes saved."
1071
+ msgstr ""
1072
+
1073
+ #: pro/enhanced-media-library-pro.php:123
1074
+ msgid "Something went wrong."
1075
+ msgstr ""
1076
+
1077
+ #: pro/enhanced-media-library-pro.php:126
1078
+ msgid "Edit Media Files"
1079
+ msgstr ""
1080
+
1081
+ #: pro/enhanced-media-library-pro.php:129
1082
+ msgid "Selecting"
1083
+ msgstr ""
1084
+
1085
+ #: pro/enhanced-media-library-pro.php:131
1086
+ msgid "You are about to permanently delete all selected items."
1087
+ msgstr ""
1088
+
1089
+ #: pro/enhanced-media-library-pro.php:132
1090
+ msgid "Delete"
1091
+ msgstr ""
1092
+
1093
+ #: pro/enhanced-media-library-pro.php:134
1094
+ msgid "Moving to Trash"
1095
+ msgstr ""
1096
+
1097
+ #: pro/enhanced-media-library-pro.php:135
1098
+ msgid "Restoring"
1099
+ msgstr ""
1100
+
1101
+ #: pro/enhanced-media-library-pro.php:136
1102
+ msgid "Deleting"
1103
+ msgstr ""
1104
+
1105
+ #: pro/enhanced-media-library-pro.php:160
1106
+ msgid "Create a filter-based gallery"
1107
+ msgstr ""
1108
+
1109
+ #: pro/enhanced-media-library-pro.php:161
1110
+ msgid "Create a filter-based playlist"
1111
+ msgstr ""
1112
+
1113
+ #: pro/enhanced-media-library-pro.php:162
1114
+ msgid "Create a filter-based video playlist"
1115
+ msgstr ""
1116
+
1117
+ #: pro/enhanced-media-library-pro.php:240
1118
+ msgid ""
1119
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1120
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1121
+ "will remain intact."
1122
+ msgstr ""
1123
+
1124
+ #: pro/enhanced-media-library-pro.php:240
1125
+ msgid "Return to Plugins"
1126
+ msgstr ""
1127
+
1128
+ #: pro/enhanced-media-library-pro.php:291
1129
+ msgid ""
1130
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1131
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1132
+ "be active. Please network deactivate and delete the free versions of the "
1133
+ "plugin. All your data will remain intact."
1134
+ msgstr ""
1135
+
1136
+ #: pro/enhanced-media-library-pro.php:308
1137
+ msgid ""
1138
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1139
+ "be active. Please deactivate and delete the free version of the plugin. All "
1140
+ "your data will remain intact."
1141
+ msgstr ""
1142
+
1143
+ #: pro/enhanced-media-library-pro.php:324
1144
+ msgid ""
1145
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1146
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1147
+ "version to be active. Please deactivate (or network deactivate) and delete "
1148
+ "the free version of the plugin for this site. All your data will remail "
1149
+ "intact."
1150
+ msgstr ""
1151
+
1152
+ #. Plugin Name of the plugin/theme
1153
+ msgid "Enhanced Media Library PRO"
1154
+ msgstr ""
1155
+
1156
+ #. Plugin URI of the plugin/theme
1157
+ #. Author URI of the plugin/theme
1158
+ msgid "http://wpUXsolutions.com"
1159
+ msgstr ""
1160
+
1161
+ #. Description of the plugin/theme
1162
+ msgid ""
1163
+ "This plugin will be handy for those who need to manage a lot of media files."
1164
+ msgstr ""
1165
+
1166
+ #. Author of the plugin/theme
1167
+ msgid "wpUXsolutions"
1168
+ msgstr ""
languages/enhanced-media-library-pl_PL.mo CHANGED
Binary file
languages/enhanced-media-library-pl_PL.po CHANGED
@@ -1,21 +1,21 @@
1
- # Copyright (C) 2014 Enhanced Media Library
2
- # This file is distributed under the same license as the Enhanced Media Library package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Enhanced Media Library 1.1.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
7
- "POT-Creation-Date: 2016-08-09 17:43+0300\n"
8
- "PO-Revision-Date: 2016-08-09 17:43+0300\n"
9
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
10
- "Language-Team: Paweł Krużel <pawel.kruzel@gmail.com>\n"
11
  "Language: pl_PL\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
16
- "|| n%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.8.8\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
 
 
19
 
20
  #: core/mime-types.php:30
21
  msgid "MIME Types settings restored."
@@ -33,13 +33,13 @@ msgstr[0] ""
33
  msgstr[1] ""
34
  msgstr[2] ""
35
 
36
- #: core/options-pages.php:97 core/options-pages.php:236
37
- #: core/options-pages.php:1003 core/options-pages.php:1128
38
- #: core/options-pages.php:1451 core/options-pages.php:1651
39
  msgid "Media Settings"
40
  msgstr "Ustawienia Mediów"
41
 
42
- #: core/options-pages.php:106 core/options-pages.php:208
43
  msgid "Media Library"
44
  msgstr ""
45
 
@@ -47,286 +47,286 @@ msgstr ""
47
  msgid "Taxonomies"
48
  msgstr "Taksonomie"
49
 
50
- #: core/options-pages.php:124 core/options-pages.php:210
51
  msgid "MIME Types"
52
  msgstr "Typy MIME"
53
 
54
- #. Plugin Name of the plugin/theme
55
  #: core/options-pages.php:135 core/options-pages.php:136
56
  msgid "Enhanced Media Library"
57
  msgstr "Rozszerzona Biblioteka Mediów"
58
 
59
- #: core/options-pages.php:207
60
  msgid "General"
61
  msgstr ""
62
 
63
- #: core/options-pages.php:209 core/options-pages.php:1149
64
  msgid "Media Taxonomies"
65
  msgstr "Taksonomie mediów"
66
 
67
- #: core/options-pages.php:233 core/options-pages.php:545
68
- #: core/options-pages.php:999 core/options-pages.php:1124
69
- #: core/options-pages.php:1447
70
  msgid "You do not have sufficient permissions to access this page."
71
  msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
72
 
73
- #: core/options-pages.php:247
74
  msgid "Image sizes"
75
  msgstr ""
76
 
77
- #: core/options-pages.php:248
78
  msgid ""
79
  "The sizes listed below determine the maximum dimensions in pixels to use "
80
  "when adding an image to the Media Library."
81
  msgstr ""
82
 
83
- #: core/options-pages.php:252
84
  msgid "Thumbnail size"
85
  msgstr ""
86
 
87
- #: core/options-pages.php:254
88
  msgid "Width"
89
  msgstr ""
90
 
91
- #: core/options-pages.php:256
92
  msgid "Height"
93
  msgstr ""
94
 
95
- #: core/options-pages.php:259
96
  msgid ""
97
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
98
  msgstr ""
99
 
100
- #: core/options-pages.php:264 core/options-pages.php:265
101
  msgid "Medium size"
102
  msgstr ""
103
 
104
- #: core/options-pages.php:266 core/options-pages.php:276
105
  msgid "Max Width"
106
  msgstr ""
107
 
108
- #: core/options-pages.php:268 core/options-pages.php:278
109
  msgid "Max Height"
110
  msgstr ""
111
 
112
- #: core/options-pages.php:274 core/options-pages.php:275
113
  msgid "Large size"
114
  msgstr ""
115
 
116
- #: core/options-pages.php:291
117
  msgid "Embeds"
118
  msgstr ""
119
 
120
- #: core/options-pages.php:298
121
  msgid "Uploading Files"
122
  msgstr ""
123
 
124
- #: core/options-pages.php:305
125
  msgid "Store uploads in this folder"
126
  msgstr ""
127
 
128
- #: core/options-pages.php:309
129
  #, php-format
130
  msgid "Default is %s"
131
  msgstr ""
132
 
133
- #: core/options-pages.php:315
134
  msgid "Full URL path to files"
135
  msgstr ""
136
 
137
- #: core/options-pages.php:317
138
  msgid "Configuring this is optional. By default, it should be blank."
139
  msgstr ""
140
 
141
- #: core/options-pages.php:325
142
  msgid "Organize my uploads into month- and year-based folders"
143
  msgstr ""
144
 
145
- #: core/options-pages.php:397 core/options-pages.php:1173
146
- #: core/options-pages.php:1188 core/options-pages.php:1251
147
- #: core/options-pages.php:1320
148
  msgid "Edit"
149
  msgstr "Edytuj"
150
 
151
- #: core/options-pages.php:398
152
  msgid "Close"
153
  msgstr "Zamknij"
154
 
155
- #: core/options-pages.php:399 core/options-pages.php:1189
156
- #: core/options-pages.php:1252
157
  msgid "View"
158
  msgstr "Zobacz"
159
 
160
- #: core/options-pages.php:400 core/options-pages.php:1190
161
- #: core/options-pages.php:1253
162
  msgid "Update"
163
  msgstr "Aktualizuj"
164
 
165
- #: core/options-pages.php:401 core/options-pages.php:1191
166
- #: core/options-pages.php:1254
167
  msgid "Add New"
168
  msgstr "Dodaj nowy"
169
 
170
- #: core/options-pages.php:402 core/options-pages.php:1192
171
- #: core/options-pages.php:1255
172
  msgid "New"
173
  msgstr "Nowy"
174
 
175
- #: core/options-pages.php:403
176
  msgid "Name"
177
  msgstr "Nazwa"
178
 
179
- #: core/options-pages.php:404 core/options-pages.php:1193
180
- #: core/options-pages.php:1256
181
  msgid "Parent"
182
  msgstr "Rodzic"
183
 
184
- #: core/options-pages.php:405 core/options-pages.php:641
185
- #: core/options-pages.php:1187 core/options-pages.php:1250
186
- #: core/taxonomies.php:348 enhanced-media-library.php:485
187
  msgid "All"
188
  msgstr "Wszystkie"
189
 
190
- #: core/options-pages.php:406 core/options-pages.php:1194
191
- #: core/options-pages.php:1257
192
  msgid "Search"
193
  msgstr "Szukaj"
194
 
195
- #: core/options-pages.php:408 core/options-pages.php:1238
196
  msgid "New Taxonomy"
197
  msgstr "Nowa taksonomia"
198
 
199
- #: core/options-pages.php:410
200
  msgid "Remove Taxonomy"
201
  msgstr ""
202
 
203
- #: core/options-pages.php:411
204
  msgid "Taxonomy will be removed."
205
  msgstr ""
206
 
207
- #: core/options-pages.php:412
208
  msgid ""
209
  "Taxonomy terms (categories) will remain intact in the database. If you "
210
  "create a taxonomy with the same name in the future, its terms (categories) "
211
  "will be available again."
212
  msgstr ""
213
 
214
- #: core/options-pages.php:413
215
  msgid "Media items will remain intact."
216
  msgstr ""
217
 
218
- #: core/options-pages.php:414
219
  msgid "Are you still sure?"
220
  msgstr ""
221
 
222
- #: core/options-pages.php:415
223
  msgid "Yes, remove taxonomy"
224
  msgstr ""
225
 
226
- #: core/options-pages.php:417
227
  msgid "Duplicate"
228
  msgstr ""
229
 
230
- #: core/options-pages.php:418
231
  msgid "Taxonomy with the same name already exists. Please chose other one."
232
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
233
 
234
- #: core/options-pages.php:420
235
  msgid "Empty Fields"
236
  msgstr ""
237
 
238
- #: core/options-pages.php:421
239
  msgid "Please choose Singular and Plural names for all new taxomonies."
240
  msgstr ""
241
 
242
- #: core/options-pages.php:422
243
  msgid "Please choose Singular name for all new taxomonies."
244
  msgstr ""
245
 
246
- #: core/options-pages.php:423
247
  msgid "Please choose Plural Name for all new taxomonies."
248
  msgstr ""
249
 
250
- #: core/options-pages.php:425
251
  msgid "Ok"
252
  msgstr ""
253
 
254
- #: core/options-pages.php:426 core/options-pages.php:431
255
- #: core/options-pages.php:475 core/options-pages.php:520
 
256
  msgid "Cancel"
257
  msgstr ""
258
 
259
- #: core/options-pages.php:428
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
- #: core/options-pages.php:429 core/options-pages.php:517
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
267
- #: core/options-pages.php:430
268
  msgid "Synchronize"
269
  msgstr ""
270
 
271
- #: core/options-pages.php:432
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
- #: core/options-pages.php:470 core/options-pages.php:1575
276
  msgid "Restore WordPress default MIME Types"
277
  msgstr ""
278
 
279
- #: core/options-pages.php:471
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr ""
282
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
283
  "operację. "
284
 
285
- #: core/options-pages.php:472
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:473
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:477
294
  msgid "Please fill into all fields."
295
  msgstr "Proszę wypełnić wszystkie pola"
296
 
297
- #: core/options-pages.php:478
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
301
  "pliku"
302
 
303
- #: core/options-pages.php:515 core/options-pages.php:632
304
  msgid "Complete Cleanup"
305
  msgstr ""
306
 
307
- #: core/options-pages.php:516
308
  msgid ""
309
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
310
  "plugin data</strong> from the database including backups."
311
  msgstr ""
312
 
313
- #: core/options-pages.php:518
314
  msgid "Yes, delete all data"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:519
318
  msgid "Cleaning..."
319
  msgstr ""
320
 
321
- #: core/options-pages.php:550
322
  msgid "Enhanced Media Library Settings"
323
  msgstr ""
324
 
325
- #: core/options-pages.php:560
326
  msgid "Export"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:564
330
  msgid ""
331
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
332
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -334,15 +334,15 @@ msgid ""
334
  "another website."
335
  msgstr ""
336
 
337
- #: core/options-pages.php:569
338
  msgid "Export Plugin Settings"
339
  msgstr ""
340
 
341
- #: core/options-pages.php:579
342
  msgid "Import"
343
  msgstr ""
344
 
345
- #: core/options-pages.php:583
346
  msgid ""
347
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
348
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -350,168 +350,173 @@ msgid ""
350
  "another website using the export button above."
351
  msgstr ""
352
 
353
- #: core/options-pages.php:584
354
  msgid ""
355
  "All plugin settings will be overridden by the import. You will have a chance "
356
  "to restore current data from an automatic backup in case you are not "
357
  "satisfied with the result of the import."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:591
361
  msgid "Import Plugin Settings"
362
  msgstr ""
363
 
364
- #: core/options-pages.php:603
365
  msgid "Restore"
366
  msgstr ""
367
 
368
- #: core/options-pages.php:609
369
  msgid "No backup available at the moment."
370
  msgstr ""
371
 
372
- #: core/options-pages.php:611
373
  msgid "Backup will be created automatically before any import operation."
374
  msgstr ""
375
 
376
- #: core/options-pages.php:615
377
  msgid ""
378
  "The backup has been automatically created before the latest import operation."
379
  msgstr ""
380
 
381
- #: core/options-pages.php:619
382
  msgid "Restore Settings from the Backup"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:639
386
  msgid "What will be deleted:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:644
390
  msgid "All plugin options"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:645
394
  msgid "All plugin backups stored in database"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:649
398
  msgid "What will remain intact:"
399
  msgstr ""
400
 
401
- #: core/options-pages.php:650
402
  msgid "All media items"
403
  msgstr ""
404
 
405
- #: core/options-pages.php:651
406
  msgid "All taxonomies not listed above"
407
  msgstr ""
408
 
409
- #: core/options-pages.php:654
410
  msgid ""
411
  "The plugin cannot delete itself because of security reason. Please delete it "
412
  "manually from plugin list after cleanup."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:656
416
  msgid ""
417
  "If you are not sure about this operation please create a backup of your "
418
  "database prior to cleanup!"
419
  msgstr ""
420
 
421
- #: core/options-pages.php:662
422
  msgid "Delete All Data & Deactivate"
423
  msgstr ""
424
 
425
- #: core/options-pages.php:762
426
  msgid "Please upload a file to import settings."
427
  msgstr ""
428
 
429
- #: core/options-pages.php:788
430
  msgid "Plugin settings imported."
431
  msgstr ""
432
 
433
- #: core/options-pages.php:835
434
  msgid "Plugin settings restored from the backup."
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1024
438
  msgid "Media Items Order"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1031
442
  msgid "Order media items by"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:1034
 
446
  msgid "Date"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1035
 
450
  msgid "Title"
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1036
 
454
  msgid "Custom Order"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1038 core/options-pages.php:1050
458
  msgid "For media library and media popups"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1039
462
  msgid "Option allows to change order by drag and drop with Custom Order value."
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1044
466
  msgid "Sort order"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1047
 
470
  msgid "Ascending"
471
  msgstr ""
472
 
473
- #: core/options-pages.php:1048
 
474
  msgid "Descending"
475
  msgstr ""
476
 
477
- #: core/options-pages.php:1063
478
  msgid "Media Shortcodes"
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1070 core/options-pages.php:1073
482
  msgid "Enhanced media shortcodes"
483
  msgstr ""
484
 
485
- #: core/options-pages.php:1074
486
  msgid ""
487
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
488
  "upload date, and media items number limit"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1075
492
  msgid "Gallery example:"
493
  msgstr ""
494
 
495
- #: core/options-pages.php:1076
496
  msgid "Audio playlist example:"
497
  msgstr ""
498
 
499
- #: core/options-pages.php:1077
500
  msgid "Video playlist example:"
501
  msgstr ""
502
 
503
- #: core/options-pages.php:1079
504
  #, php-format
505
  msgid ""
506
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1081
510
  #, php-format
511
  msgid "%sLearn more%s."
512
  msgstr ""
513
 
514
- #: core/options-pages.php:1083
515
  #, php-format
516
  msgid ""
517
  "Please check out your gallery front-end and back-end functionality once this "
@@ -519,236 +524,236 @@ msgid ""
519
  "%s."
520
  msgstr ""
521
 
522
- #: core/options-pages.php:1153 core/options-pages.php:1300
523
  msgid "Assign following taxonomies to Media Library:"
524
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
525
 
526
- #: core/options-pages.php:1172 core/options-pages.php:1238
527
- #: core/options-pages.php:1319
528
  msgid "Assign Taxonomy"
529
  msgstr "Przypisz taksonomię"
530
 
531
- #: core/options-pages.php:1173 core/options-pages.php:1320
532
  msgid "Edit Taxonomy"
533
  msgstr "Edytuj taksonomię"
534
 
535
- #: core/options-pages.php:1177 core/options-pages.php:1240
536
  msgid "Delete Taxonomy"
537
  msgstr "Usuń taksonomię"
538
 
539
- #: core/options-pages.php:1182 core/options-pages.php:1245
540
  msgid "Labels"
541
  msgstr "Etykiety"
542
 
543
- #: core/options-pages.php:1184 core/options-pages.php:1247
544
  msgid "Singular"
545
  msgstr "Liczba pojedyncza"
546
 
547
- #: core/options-pages.php:1185 core/options-pages.php:1248
548
  msgid "Plural"
549
  msgstr "Liczba mnoga"
550
 
551
- #: core/options-pages.php:1186 core/options-pages.php:1249
552
  msgid "Menu Name"
553
  msgstr "Nazwa w menu"
554
 
555
- #: core/options-pages.php:1199 core/options-pages.php:1222
556
- #: core/options-pages.php:1262 core/options-pages.php:1323
557
  msgid "Settings"
558
  msgstr "Ustawienia"
559
 
560
- #: core/options-pages.php:1201 core/options-pages.php:1264
561
  msgid "Taxonomy Name"
562
  msgstr ""
563
 
564
- #: core/options-pages.php:1202 core/options-pages.php:1265
565
  msgid "Hierarchical"
566
  msgstr "Hierachicznie"
567
 
568
- #: core/options-pages.php:1203 core/options-pages.php:1266
569
  msgid "Column for List View"
570
  msgstr ""
571
 
572
- #: core/options-pages.php:1204 core/options-pages.php:1224
573
- #: core/options-pages.php:1267 core/options-pages.php:1325
574
  msgid "Filter for List View"
575
  msgstr ""
576
 
577
- #: core/options-pages.php:1205 core/options-pages.php:1225
578
- #: core/options-pages.php:1268 core/options-pages.php:1326
579
  msgid "Filter for Grid View / Media Popup"
580
  msgstr ""
581
 
582
- #: core/options-pages.php:1206 core/options-pages.php:1226
583
- #: core/options-pages.php:1269 core/options-pages.php:1327
584
  msgid "Edit in Media Popup"
585
  msgstr ""
586
 
587
- #: core/options-pages.php:1207 core/options-pages.php:1270
588
  msgid "Show in Nav Menu"
589
  msgstr "Pokaż w menu nawigacyjnym"
590
 
591
- #: core/options-pages.php:1208 core/options-pages.php:1271
592
  msgid "Remember Terms Order (sort)"
593
  msgstr ""
594
 
595
- #: core/options-pages.php:1209 core/options-pages.php:1272
596
  msgid "Show in REST"
597
  msgstr ""
598
 
599
- #: core/options-pages.php:1210 core/options-pages.php:1273
600
  msgid "Rewrite Slug"
601
  msgstr ""
602
 
603
- #: core/options-pages.php:1211 core/options-pages.php:1274
604
  msgid "Slug with Front"
605
  msgstr ""
606
 
607
- #: core/options-pages.php:1286
608
  msgid "Add New Taxonomy"
609
  msgstr "Dodaj nową taksonomię"
610
 
611
- #: core/options-pages.php:1296
612
  msgid "Non-Media Taxonomies"
613
  msgstr "Pozostałe taksonomie"
614
 
615
- #: core/options-pages.php:1357
616
  msgid "Options"
617
  msgstr ""
618
 
619
- #: core/options-pages.php:1367 core/options-pages.php:1370
620
  msgid "Taxonomy archive pages"
621
  msgstr ""
622
 
623
- #: core/options-pages.php:1371
624
  msgid "Turn on media taxonomy archive pages on the front-end"
625
  msgstr ""
626
 
627
- #: core/options-pages.php:1372
628
  msgid ""
629
  "Re-save your permalink settings after this option change to make it work."
630
  msgstr ""
631
 
632
- #: core/options-pages.php:1378 core/options-pages.php:1381
633
  msgid "Assign all like hierarchical"
634
  msgstr ""
635
 
636
- #: core/options-pages.php:1382
637
  msgid ""
638
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
639
  msgstr ""
640
 
641
- #: core/options-pages.php:1388 core/options-pages.php:1391
642
  msgid "Force filters"
643
  msgstr ""
644
 
645
- #: core/options-pages.php:1392
646
  msgid "Show media filters for ANY Media Popup"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1393
650
  msgid "Try this if filters are not shown for third-party plugins or themes."
651
  msgstr ""
652
 
653
- #: core/options-pages.php:1399 core/options-pages.php:1402
654
  msgid "Show count"
655
  msgstr ""
656
 
657
- #: core/options-pages.php:1403
658
  msgid "Show item count per category for media filters"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1457
662
  msgid "Add New MIME Type"
663
  msgstr "Dodaj nowy typ MIME"
664
 
665
- #: core/options-pages.php:1477 core/options-pages.php:1532
666
  msgid "Extension"
667
  msgstr "Rozszerzenie"
668
 
669
- #: core/options-pages.php:1478 core/options-pages.php:1533
670
  msgid "MIME Type"
671
  msgstr "Typ MIME"
672
 
673
- #: core/options-pages.php:1479 core/options-pages.php:1534
674
  msgid "Singular Label"
675
  msgstr "Etykieta dla liczby pojedynczej"
676
 
677
- #: core/options-pages.php:1480 core/options-pages.php:1535
678
  msgid "Plural Label"
679
  msgstr "Etykieta dla liczby mnogiej"
680
 
681
- #: core/options-pages.php:1481 core/options-pages.php:1511
682
- #: core/options-pages.php:1524 core/options-pages.php:1536
683
  msgid "Add Filter"
684
  msgstr "Dodaj filtr"
685
 
686
- #: core/options-pages.php:1482 core/options-pages.php:1512
687
- #: core/options-pages.php:1525 core/options-pages.php:1537
688
  msgid "Allow Upload"
689
  msgstr "Zezwól na przesyłanie"
690
 
691
- #: core/options-pages.php:1513 core/options-pages.php:1526
692
  msgid "Delete MIME Type"
693
  msgstr "Usuń typ MIME"
694
 
695
- #: core/options-pages.php:1573
696
  msgid "Save Changes"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1603
700
  msgid "Changelog"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1604
704
  msgid "What's new in"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1604
708
  msgid "version"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1607
712
  msgid "More features under the hood"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1609
716
  msgid "Support"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1610
720
  msgid "Feel free to ask for help on"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1610
724
  msgid "Support is free for both versions of the plugin."
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1612
728
  msgid "Plugin rating"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1613
732
  msgid "Please"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1613
736
  msgid "vote for the plugin"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1613
740
  msgid "Thanks!"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1615
744
  msgid "Other plugins you may find useful"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1654
748
  msgid "Utility"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1677
752
  msgid "Vote!"
753
  msgstr ""
754
 
@@ -760,75 +765,354 @@ msgstr ""
760
  msgid "Media Library settings saved."
761
  msgstr ""
762
 
763
- #: core/taxonomies.php:341 core/taxonomies.php:347
764
- #: enhanced-media-library.php:484
765
  msgid "Filter by"
766
  msgstr ""
767
 
768
- #: core/taxonomies.php:349 enhanced-media-library.php:486
769
- msgid "Not in"
770
  msgstr ""
771
 
772
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
773
  msgid "All Uncategorized"
774
  msgstr ""
775
 
776
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
777
  msgid "Reset All Filters"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:517
781
  msgid "Uploaded to post #"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:518
785
  msgid "Based On"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
789
  msgid "Media Categories"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:564
793
  msgid "Media Category"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:566
797
  msgid "All Media Categories"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:567
801
  msgid "Edit Media Category"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:568
805
  msgid "View Media Category"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:569
809
  msgid "Update Media Category"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:570
813
  msgid "Add New Media Category"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:571
817
  msgid "New Media Category Name"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:572
821
  msgid "Parent Media Category"
822
  msgstr ""
823
 
824
- #: enhanced-media-library.php:573
825
  msgid "Parent Media Category:"
826
  msgstr ""
827
 
828
- #: enhanced-media-library.php:574
829
  msgid "Search Media Categories"
830
  msgstr ""
831
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
832
  #. Plugin URI of the plugin/theme
833
  #. Author URI of the plugin/theme
834
  msgid "http://wpUXsolutions.com"
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:38+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:38+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Polish (Poland)\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 &&(n"
14
+ "%100<10||n%100 >= 20)? 1 : 2);\n"
15
+ "X-Generator: Poedit 1.8.11\n"
16
+ "X-Loco-Source-Locale: en-US\n"
17
+ "X-Loco-Project-Id: 16288\n"
18
+ "X-Loco-Api-Version: 1.0.14 20160610-1\n"
19
 
20
  #: core/mime-types.php:30
21
  msgid "MIME Types settings restored."
33
  msgstr[1] ""
34
  msgstr[2] ""
35
 
36
+ #: core/options-pages.php:97 core/options-pages.php:239
37
+ #: core/options-pages.php:1006 core/options-pages.php:1130
38
+ #: core/options-pages.php:1455 core/options-pages.php:1655
39
  msgid "Media Settings"
40
  msgstr "Ustawienia Mediów"
41
 
42
+ #: core/options-pages.php:106 core/options-pages.php:211
43
  msgid "Media Library"
44
  msgstr ""
45
 
47
  msgid "Taxonomies"
48
  msgstr "Taksonomie"
49
 
50
+ #: core/options-pages.php:124 core/options-pages.php:213
51
  msgid "MIME Types"
52
  msgstr "Typy MIME"
53
 
 
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "Rozszerzona Biblioteka Mediów"
57
 
58
+ #: core/options-pages.php:210
59
  msgid "General"
60
  msgstr ""
61
 
62
+ #: core/options-pages.php:212 core/options-pages.php:1151
63
  msgid "Media Taxonomies"
64
  msgstr "Taksonomie mediów"
65
 
66
+ #: core/options-pages.php:236 core/options-pages.php:548
67
+ #: core/options-pages.php:1002 core/options-pages.php:1127
68
+ #: core/options-pages.php:1451
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
71
 
72
+ #: core/options-pages.php:250
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
+ #: core/options-pages.php:251
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
+ #: core/options-pages.php:255
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:257
87
  msgid "Width"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:259
91
  msgid "Height"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:262
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:267 core/options-pages.php:268
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:269 core/options-pages.php:279
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:271 core/options-pages.php:281
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:277 core/options-pages.php:278
112
  msgid "Large size"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:294
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:301
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:308
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:312
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:318
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:320
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:328
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:400 core/options-pages.php:1175
145
+ #: core/options-pages.php:1190 core/options-pages.php:1253
146
+ #: core/options-pages.php:1325
147
  msgid "Edit"
148
  msgstr "Edytuj"
149
 
150
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
151
  msgid "Close"
152
  msgstr "Zamknij"
153
 
154
+ #: core/options-pages.php:402 core/options-pages.php:1191
155
+ #: core/options-pages.php:1254
156
  msgid "View"
157
  msgstr "Zobacz"
158
 
159
+ #: core/options-pages.php:403 core/options-pages.php:1192
160
+ #: core/options-pages.php:1255
161
  msgid "Update"
162
  msgstr "Aktualizuj"
163
 
164
+ #: core/options-pages.php:404 core/options-pages.php:1193
165
+ #: core/options-pages.php:1256
166
  msgid "Add New"
167
  msgstr "Dodaj nowy"
168
 
169
+ #: core/options-pages.php:405 core/options-pages.php:1194
170
+ #: core/options-pages.php:1257
171
  msgid "New"
172
  msgstr "Nowy"
173
 
174
+ #: core/options-pages.php:406
175
  msgid "Name"
176
  msgstr "Nazwa"
177
 
178
+ #: core/options-pages.php:407 core/options-pages.php:1195
179
+ #: core/options-pages.php:1258
180
  msgid "Parent"
181
  msgstr "Rodzic"
182
 
183
+ #: core/options-pages.php:408 core/options-pages.php:644
184
+ #: core/options-pages.php:1189 core/options-pages.php:1252
185
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
186
  msgid "All"
187
  msgstr "Wszystkie"
188
 
189
+ #: core/options-pages.php:409 core/options-pages.php:1196
190
+ #: core/options-pages.php:1259
191
  msgid "Search"
192
  msgstr "Szukaj"
193
 
194
+ #: core/options-pages.php:411 core/options-pages.php:1240
195
  msgid "New Taxonomy"
196
  msgstr "Nowa taksonomia"
197
 
198
+ #: core/options-pages.php:413
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
+ #: core/options-pages.php:414
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:415
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
+ #: core/options-pages.php:416
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:417
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:418
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:420
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:421
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
232
 
233
+ #: core/options-pages.php:423
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:424
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:425
242
  msgid "Please choose Singular name for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:426
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:428
250
  msgid "Ok"
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:429 core/options-pages.php:434
254
+ #: core/options-pages.php:478 core/options-pages.php:523
255
+ #: pro/enhanced-media-library-pro.php:133
256
  msgid "Cancel"
257
  msgstr ""
258
 
259
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
+ #: core/options-pages.php:432 core/options-pages.php:520
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
267
+ #: core/options-pages.php:433
268
  msgid "Synchronize"
269
  msgstr ""
270
 
271
+ #: core/options-pages.php:435
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
+ #: core/options-pages.php:473 core/options-pages.php:1579
276
  msgid "Restore WordPress default MIME Types"
277
  msgstr ""
278
 
279
+ #: core/options-pages.php:474
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr ""
282
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
283
  "operację. "
284
 
285
+ #: core/options-pages.php:475
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:476
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
+ #: core/options-pages.php:480
294
  msgid "Please fill into all fields."
295
  msgstr "Proszę wypełnić wszystkie pola"
296
 
297
+ #: core/options-pages.php:481
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
301
  "pliku"
302
 
303
+ #: core/options-pages.php:518 core/options-pages.php:635
304
  msgid "Complete Cleanup"
305
  msgstr ""
306
 
307
+ #: core/options-pages.php:519
308
  msgid ""
309
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
310
  "plugin data</strong> from the database including backups."
311
  msgstr ""
312
 
313
+ #: core/options-pages.php:521
314
  msgid "Yes, delete all data"
315
  msgstr ""
316
 
317
+ #: core/options-pages.php:522
318
  msgid "Cleaning..."
319
  msgstr ""
320
 
321
+ #: core/options-pages.php:553
322
  msgid "Enhanced Media Library Settings"
323
  msgstr ""
324
 
325
+ #: core/options-pages.php:563
326
  msgid "Export"
327
  msgstr ""
328
 
329
+ #: core/options-pages.php:567
330
  msgid ""
331
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
332
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
334
  "another website."
335
  msgstr ""
336
 
337
+ #: core/options-pages.php:572
338
  msgid "Export Plugin Settings"
339
  msgstr ""
340
 
341
+ #: core/options-pages.php:582
342
  msgid "Import"
343
  msgstr ""
344
 
345
+ #: core/options-pages.php:586
346
  msgid ""
347
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
348
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
350
  "another website using the export button above."
351
  msgstr ""
352
 
353
+ #: core/options-pages.php:587
354
  msgid ""
355
  "All plugin settings will be overridden by the import. You will have a chance "
356
  "to restore current data from an automatic backup in case you are not "
357
  "satisfied with the result of the import."
358
  msgstr ""
359
 
360
+ #: core/options-pages.php:594
361
  msgid "Import Plugin Settings"
362
  msgstr ""
363
 
364
+ #: core/options-pages.php:606
365
  msgid "Restore"
366
  msgstr ""
367
 
368
+ #: core/options-pages.php:612
369
  msgid "No backup available at the moment."
370
  msgstr ""
371
 
372
+ #: core/options-pages.php:614
373
  msgid "Backup will be created automatically before any import operation."
374
  msgstr ""
375
 
376
+ #: core/options-pages.php:618
377
  msgid ""
378
  "The backup has been automatically created before the latest import operation."
379
  msgstr ""
380
 
381
+ #: core/options-pages.php:622
382
  msgid "Restore Settings from the Backup"
383
  msgstr ""
384
 
385
+ #: core/options-pages.php:642
386
  msgid "What will be deleted:"
387
  msgstr ""
388
 
389
+ #: core/options-pages.php:647
390
  msgid "All plugin options"
391
  msgstr ""
392
 
393
+ #: core/options-pages.php:648
394
  msgid "All plugin backups stored in database"
395
  msgstr ""
396
 
397
+ #: core/options-pages.php:652
398
  msgid "What will remain intact:"
399
  msgstr ""
400
 
401
+ #: core/options-pages.php:653
402
  msgid "All media items"
403
  msgstr ""
404
 
405
+ #: core/options-pages.php:654
406
  msgid "All taxonomies not listed above"
407
  msgstr ""
408
 
409
+ #: core/options-pages.php:657
410
  msgid ""
411
  "The plugin cannot delete itself because of security reason. Please delete it "
412
  "manually from plugin list after cleanup."
413
  msgstr ""
414
 
415
+ #: core/options-pages.php:659
416
  msgid ""
417
  "If you are not sure about this operation please create a backup of your "
418
  "database prior to cleanup!"
419
  msgstr ""
420
 
421
+ #: core/options-pages.php:665
422
  msgid "Delete All Data & Deactivate"
423
  msgstr ""
424
 
425
+ #: core/options-pages.php:765
426
  msgid "Please upload a file to import settings."
427
  msgstr ""
428
 
429
+ #: core/options-pages.php:791
430
  msgid "Plugin settings imported."
431
  msgstr ""
432
 
433
+ #: core/options-pages.php:838
434
  msgid "Plugin settings restored from the backup."
435
  msgstr ""
436
 
437
+ #: core/options-pages.php:1027
438
  msgid "Media Items Order"
439
  msgstr ""
440
 
441
+ #: core/options-pages.php:1034
442
  msgid "Order media items by"
443
  msgstr ""
444
 
445
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
446
+ #: pro/core/medialist.php:73
447
  msgid "Date"
448
  msgstr ""
449
 
450
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
451
+ #: pro/core/medialist.php:76
452
  msgid "Title"
453
  msgstr ""
454
 
455
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
456
+ #: pro/core/medialist.php:79
457
  msgid "Custom Order"
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1041 core/options-pages.php:1053
461
  msgid "For media library and media popups"
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1042
465
  msgid "Option allows to change order by drag and drop with Custom Order value."
466
  msgstr ""
467
 
468
+ #: core/options-pages.php:1047
469
  msgid "Sort order"
470
  msgstr ""
471
 
472
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
473
+ #: pro/core/medialist.php:92
474
  msgid "Ascending"
475
  msgstr ""
476
 
477
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
478
+ #: pro/core/medialist.php:95
479
  msgid "Descending"
480
  msgstr ""
481
 
482
+ #: core/options-pages.php:1066
483
  msgid "Media Shortcodes"
484
  msgstr ""
485
 
486
+ #: core/options-pages.php:1073 core/options-pages.php:1076
487
  msgid "Enhanced media shortcodes"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1077
491
  msgid ""
492
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
493
  "upload date, and media items number limit"
494
  msgstr ""
495
 
496
+ #: core/options-pages.php:1078
497
  msgid "Gallery example:"
498
  msgstr ""
499
 
500
+ #: core/options-pages.php:1079
501
  msgid "Audio playlist example:"
502
  msgstr ""
503
 
504
+ #: core/options-pages.php:1080
505
  msgid "Video playlist example:"
506
  msgstr ""
507
 
508
+ #: core/options-pages.php:1082
509
  #, php-format
510
  msgid ""
511
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
512
  msgstr ""
513
 
514
+ #: core/options-pages.php:1084
515
  #, php-format
516
  msgid "%sLearn more%s."
517
  msgstr ""
518
 
519
+ #: core/options-pages.php:1086
520
  #, php-format
521
  msgid ""
522
  "Please check out your gallery front-end and back-end functionality once this "
524
  "%s."
525
  msgstr ""
526
 
527
+ #: core/options-pages.php:1155 core/options-pages.php:1302
528
  msgid "Assign following taxonomies to Media Library:"
529
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
530
 
531
+ #: core/options-pages.php:1174 core/options-pages.php:1240
532
+ #: core/options-pages.php:1324
533
  msgid "Assign Taxonomy"
534
  msgstr "Przypisz taksonomię"
535
 
536
+ #: core/options-pages.php:1175 core/options-pages.php:1325
537
  msgid "Edit Taxonomy"
538
  msgstr "Edytuj taksonomię"
539
 
540
+ #: core/options-pages.php:1179 core/options-pages.php:1242
541
  msgid "Delete Taxonomy"
542
  msgstr "Usuń taksonomię"
543
 
544
+ #: core/options-pages.php:1184 core/options-pages.php:1247
545
  msgid "Labels"
546
  msgstr "Etykiety"
547
 
548
+ #: core/options-pages.php:1186 core/options-pages.php:1249
549
  msgid "Singular"
550
  msgstr "Liczba pojedyncza"
551
 
552
+ #: core/options-pages.php:1187 core/options-pages.php:1250
553
  msgid "Plural"
554
  msgstr "Liczba mnoga"
555
 
556
+ #: core/options-pages.php:1188 core/options-pages.php:1251
557
  msgid "Menu Name"
558
  msgstr "Nazwa w menu"
559
 
560
+ #: core/options-pages.php:1201 core/options-pages.php:1224
561
+ #: core/options-pages.php:1264 core/options-pages.php:1328
562
  msgid "Settings"
563
  msgstr "Ustawienia"
564
 
565
+ #: core/options-pages.php:1203 core/options-pages.php:1266
566
  msgid "Taxonomy Name"
567
  msgstr ""
568
 
569
+ #: core/options-pages.php:1204 core/options-pages.php:1267
570
  msgid "Hierarchical"
571
  msgstr "Hierachicznie"
572
 
573
+ #: core/options-pages.php:1205 core/options-pages.php:1268
574
  msgid "Column for List View"
575
  msgstr ""
576
 
577
+ #: core/options-pages.php:1206 core/options-pages.php:1226
578
+ #: core/options-pages.php:1269 core/options-pages.php:1330
579
  msgid "Filter for List View"
580
  msgstr ""
581
 
582
+ #: core/options-pages.php:1207 core/options-pages.php:1227
583
+ #: core/options-pages.php:1270 core/options-pages.php:1331
584
  msgid "Filter for Grid View / Media Popup"
585
  msgstr ""
586
 
587
+ #: core/options-pages.php:1208 core/options-pages.php:1228
588
+ #: core/options-pages.php:1271 core/options-pages.php:1332
589
  msgid "Edit in Media Popup"
590
  msgstr ""
591
 
592
+ #: core/options-pages.php:1209 core/options-pages.php:1272
593
  msgid "Show in Nav Menu"
594
  msgstr "Pokaż w menu nawigacyjnym"
595
 
596
+ #: core/options-pages.php:1210 core/options-pages.php:1273
597
  msgid "Remember Terms Order (sort)"
598
  msgstr ""
599
 
600
+ #: core/options-pages.php:1211 core/options-pages.php:1274
601
  msgid "Show in REST"
602
  msgstr ""
603
 
604
+ #: core/options-pages.php:1212 core/options-pages.php:1275
605
  msgid "Rewrite Slug"
606
  msgstr ""
607
 
608
+ #: core/options-pages.php:1213 core/options-pages.php:1276
609
  msgid "Slug with Front"
610
  msgstr ""
611
 
612
+ #: core/options-pages.php:1288
613
  msgid "Add New Taxonomy"
614
  msgstr "Dodaj nową taksonomię"
615
 
616
+ #: core/options-pages.php:1298
617
  msgid "Non-Media Taxonomies"
618
  msgstr "Pozostałe taksonomie"
619
 
620
+ #: core/options-pages.php:1361
621
  msgid "Options"
622
  msgstr ""
623
 
624
+ #: core/options-pages.php:1371 core/options-pages.php:1374
625
  msgid "Taxonomy archive pages"
626
  msgstr ""
627
 
628
+ #: core/options-pages.php:1375
629
  msgid "Turn on media taxonomy archive pages on the front-end"
630
  msgstr ""
631
 
632
+ #: core/options-pages.php:1376
633
  msgid ""
634
  "Re-save your permalink settings after this option change to make it work."
635
  msgstr ""
636
 
637
+ #: core/options-pages.php:1382 core/options-pages.php:1385
638
  msgid "Assign all like hierarchical"
639
  msgstr ""
640
 
641
+ #: core/options-pages.php:1386
642
  msgid ""
643
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
644
  msgstr ""
645
 
646
+ #: core/options-pages.php:1392 core/options-pages.php:1395
647
  msgid "Force filters"
648
  msgstr ""
649
 
650
+ #: core/options-pages.php:1396
651
  msgid "Show media filters for ANY Media Popup"
652
  msgstr ""
653
 
654
+ #: core/options-pages.php:1397
655
  msgid "Try this if filters are not shown for third-party plugins or themes."
656
  msgstr ""
657
 
658
+ #: core/options-pages.php:1403 core/options-pages.php:1406
659
  msgid "Show count"
660
  msgstr ""
661
 
662
+ #: core/options-pages.php:1407
663
  msgid "Show item count per category for media filters"
664
  msgstr ""
665
 
666
+ #: core/options-pages.php:1461
667
  msgid "Add New MIME Type"
668
  msgstr "Dodaj nowy typ MIME"
669
 
670
+ #: core/options-pages.php:1481 core/options-pages.php:1536
671
  msgid "Extension"
672
  msgstr "Rozszerzenie"
673
 
674
+ #: core/options-pages.php:1482 core/options-pages.php:1537
675
  msgid "MIME Type"
676
  msgstr "Typ MIME"
677
 
678
+ #: core/options-pages.php:1483 core/options-pages.php:1538
679
  msgid "Singular Label"
680
  msgstr "Etykieta dla liczby pojedynczej"
681
 
682
+ #: core/options-pages.php:1484 core/options-pages.php:1539
683
  msgid "Plural Label"
684
  msgstr "Etykieta dla liczby mnogiej"
685
 
686
+ #: core/options-pages.php:1485 core/options-pages.php:1515
687
+ #: core/options-pages.php:1528 core/options-pages.php:1540
688
  msgid "Add Filter"
689
  msgstr "Dodaj filtr"
690
 
691
+ #: core/options-pages.php:1486 core/options-pages.php:1516
692
+ #: core/options-pages.php:1529 core/options-pages.php:1541
693
  msgid "Allow Upload"
694
  msgstr "Zezwól na przesyłanie"
695
 
696
+ #: core/options-pages.php:1517 core/options-pages.php:1530
697
  msgid "Delete MIME Type"
698
  msgstr "Usuń typ MIME"
699
 
700
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
701
  msgid "Save Changes"
702
  msgstr ""
703
 
704
+ #: core/options-pages.php:1607
705
  msgid "Changelog"
706
  msgstr ""
707
 
708
+ #: core/options-pages.php:1608
709
  msgid "What's new in"
710
  msgstr ""
711
 
712
+ #: core/options-pages.php:1608
713
  msgid "version"
714
  msgstr ""
715
 
716
+ #: core/options-pages.php:1611
717
  msgid "More features under the hood"
718
  msgstr ""
719
 
720
+ #: core/options-pages.php:1613
721
  msgid "Support"
722
  msgstr ""
723
 
724
+ #: core/options-pages.php:1614
725
  msgid "Feel free to ask for help on"
726
  msgstr ""
727
 
728
+ #: core/options-pages.php:1614
729
  msgid "Support is free for both versions of the plugin."
730
  msgstr ""
731
 
732
+ #: core/options-pages.php:1616
733
  msgid "Plugin rating"
734
  msgstr ""
735
 
736
+ #: core/options-pages.php:1617
737
  msgid "Please"
738
  msgstr ""
739
 
740
+ #: core/options-pages.php:1617
741
  msgid "vote for the plugin"
742
  msgstr ""
743
 
744
+ #: core/options-pages.php:1617
745
  msgid "Thanks!"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1619
749
  msgid "Other plugins you may find useful"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1658
753
  msgid "Utility"
754
  msgstr ""
755
 
756
+ #: core/options-pages.php:1681
757
  msgid "Vote!"
758
  msgstr ""
759
 
765
  msgid "Media Library settings saved."
766
  msgstr ""
767
 
768
+ #: core/taxonomies.php:333 core/taxonomies.php:339
769
+ #: enhanced-media-library.php:502
770
  msgid "Filter by"
771
  msgstr ""
772
 
773
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
774
+ msgid "Not in a"
775
  msgstr ""
776
 
777
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
778
  msgid "All Uncategorized"
779
  msgstr ""
780
 
781
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
782
  msgid "Reset All Filters"
783
  msgstr ""
784
 
785
+ #: enhanced-media-library.php:535
786
  msgid "Uploaded to post #"
787
  msgstr ""
788
 
789
+ #: enhanced-media-library.php:536
790
  msgid "Based On"
791
  msgstr ""
792
 
793
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
794
  msgid "Media Categories"
795
  msgstr ""
796
 
797
+ #: enhanced-media-library.php:582
798
  msgid "Media Category"
799
  msgstr ""
800
 
801
+ #: enhanced-media-library.php:584
802
  msgid "All Media Categories"
803
  msgstr ""
804
 
805
+ #: enhanced-media-library.php:585
806
  msgid "Edit Media Category"
807
  msgstr ""
808
 
809
+ #: enhanced-media-library.php:586
810
  msgid "View Media Category"
811
  msgstr ""
812
 
813
+ #: enhanced-media-library.php:587
814
  msgid "Update Media Category"
815
  msgstr ""
816
 
817
+ #: enhanced-media-library.php:588
818
  msgid "Add New Media Category"
819
  msgstr ""
820
 
821
+ #: enhanced-media-library.php:589
822
  msgid "New Media Category Name"
823
  msgstr ""
824
 
825
+ #: enhanced-media-library.php:590
826
  msgid "Parent Media Category"
827
  msgstr ""
828
 
829
+ #: enhanced-media-library.php:591
830
  msgid "Parent Media Category:"
831
  msgstr ""
832
 
833
+ #: enhanced-media-library.php:592
834
  msgid "Search Media Categories"
835
  msgstr ""
836
 
837
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
838
+ msgid "Remove"
839
+ msgstr ""
840
+
841
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
842
+ msgid "Deselect"
843
+ msgstr ""
844
+
845
+ #: pro/core/bulk-edit.php:105
846
+ msgid "Caption this image&hellip;"
847
+ msgstr ""
848
+
849
+ #: pro/core/bulk-edit.php:109
850
+ msgid "Describe this video&hellip;"
851
+ msgstr ""
852
+
853
+ #: pro/core/bulk-edit.php:111
854
+ msgid "Describe this audio file&hellip;"
855
+ msgstr ""
856
+
857
+ #: pro/core/bulk-edit.php:113
858
+ msgid "Describe this media file&hellip;"
859
+ msgstr ""
860
+
861
+ #: pro/core/bulk-edit.php:122
862
+ msgid "Attachments Details"
863
+ msgstr ""
864
+
865
+ #: pro/core/bulk-edit.php:175
866
+ msgid "Select All"
867
+ msgstr ""
868
+
869
+ #: pro/core/bulk-edit.php:176
870
+ msgid "Deselect All"
871
+ msgstr ""
872
+
873
+ #: pro/core/bulk-edit.php:177
874
+ msgid "Delete Selected"
875
+ msgstr ""
876
+
877
+ #: pro/core/bulk-edit.php:178
878
+ msgid "Trash Selected"
879
+ msgstr ""
880
+
881
+ #: pro/core/bulk-edit.php:179
882
+ msgid "Restore Selected"
883
+ msgstr ""
884
+
885
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
886
+ msgid "Delete Selected Permanently"
887
+ msgstr ""
888
+
889
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
890
+ msgid "Order By"
891
+ msgstr ""
892
+
893
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
894
+ msgid "Random"
895
+ msgstr ""
896
+
897
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
898
+ msgid "Order"
899
+ msgstr ""
900
+
901
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
902
+ msgid "Limit"
903
+ msgstr ""
904
+
905
+ #: pro/core/options-pages.php:78
906
+ msgid "Your license has been deactivated."
907
+ msgstr ""
908
+
909
+ #: pro/core/options-pages.php:88
910
+ msgid "Please check if your license key is correct and try again."
911
+ msgstr ""
912
+
913
+ #: pro/core/options-pages.php:104
914
+ #, php-format
915
+ msgid ""
916
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
917
+ "authors</a>."
918
+ msgstr ""
919
+
920
+ #: pro/core/options-pages.php:119
921
+ #, php-format
922
+ msgid ""
923
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
924
+ "plugin authors</a>."
925
+ msgstr ""
926
+
927
+ #: pro/core/options-pages.php:130
928
+ msgid "You license has been activated."
929
+ msgstr ""
930
+
931
+ #: pro/core/options-pages.php:184
932
+ #, php-format
933
+ msgid "Auto-assign media items to parent %s %s on upload"
934
+ msgstr ""
935
+
936
+ #: pro/core/options-pages.php:185
937
+ #, php-format
938
+ msgid ""
939
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
940
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
941
+ "assigned %s will not be saved. Media items that are not attached to any %s "
942
+ "will not be affected."
943
+ msgstr ""
944
+
945
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
946
+ msgid "Bulk Edit"
947
+ msgstr ""
948
+
949
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
950
+ msgid "Turn off 'Save Changes' button"
951
+ msgstr ""
952
+
953
+ #: pro/core/options-pages.php:220
954
+ msgid "Save changes on the fly"
955
+ msgstr ""
956
+
957
+ #: pro/core/options-pages.php:221
958
+ msgid ""
959
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
960
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
961
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
962
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
963
+ "files / taxonomies with this option turned on."
964
+ msgstr ""
965
+
966
+ #: pro/core/options-pages.php:222
967
+ msgid ""
968
+ "Strongly NOT recommended option if you work with more than hundred of files "
969
+ "at a time."
970
+ msgstr ""
971
+
972
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
973
+ msgid "License Key"
974
+ msgstr ""
975
+
976
+ #: pro/core/options-pages.php:273
977
+ #, php-format
978
+ msgid ""
979
+ "To unlock updates please enter your license key below. You can get your "
980
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
981
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
982
+ msgstr ""
983
+
984
+ #: pro/core/options-pages.php:283
985
+ msgid "Activate License"
986
+ msgstr ""
987
+
988
+ #: pro/core/options-pages.php:290
989
+ msgid "Your license is active!"
990
+ msgstr ""
991
+
992
+ #: pro/core/options-pages.php:294
993
+ msgid "Deactivate License"
994
+ msgstr ""
995
+
996
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
997
+ msgid ""
998
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
999
+ "this server&#8217;s configuration. If you continue to have problems, please "
1000
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1001
+ msgstr ""
1002
+
1003
+ #: pro/core/update.php:113
1004
+ msgid ""
1005
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1006
+ "contact your server administrator.)"
1007
+ msgstr ""
1008
+
1009
+ #: pro/core/update.php:181
1010
+ #, php-format
1011
+ msgid ""
1012
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
+ msgstr ""
1016
+
1017
+ #: pro/enhanced-media-library-pro.php:119
1018
+ msgid "ALL files belong to this item"
1019
+ msgstr ""
1020
+
1021
+ #: pro/enhanced-media-library-pro.php:120
1022
+ msgid "SOME files belong to this item"
1023
+ msgstr ""
1024
+
1025
+ #: pro/enhanced-media-library-pro.php:121
1026
+ msgid "NO files belong to this item"
1027
+ msgstr ""
1028
+
1029
+ #: pro/enhanced-media-library-pro.php:122
1030
+ msgid "Changes saved."
1031
+ msgstr ""
1032
+
1033
+ #: pro/enhanced-media-library-pro.php:123
1034
+ msgid "Something went wrong."
1035
+ msgstr ""
1036
+
1037
+ #: pro/enhanced-media-library-pro.php:126
1038
+ msgid "Edit Media Files"
1039
+ msgstr ""
1040
+
1041
+ #: pro/enhanced-media-library-pro.php:129
1042
+ msgid "Selecting"
1043
+ msgstr ""
1044
+
1045
+ #: pro/enhanced-media-library-pro.php:131
1046
+ msgid "You are about to permanently delete all selected items."
1047
+ msgstr ""
1048
+
1049
+ #: pro/enhanced-media-library-pro.php:132
1050
+ msgid "Delete"
1051
+ msgstr ""
1052
+
1053
+ #: pro/enhanced-media-library-pro.php:134
1054
+ msgid "Moving to Trash"
1055
+ msgstr ""
1056
+
1057
+ #: pro/enhanced-media-library-pro.php:135
1058
+ msgid "Restoring"
1059
+ msgstr ""
1060
+
1061
+ #: pro/enhanced-media-library-pro.php:136
1062
+ msgid "Deleting"
1063
+ msgstr ""
1064
+
1065
+ #: pro/enhanced-media-library-pro.php:160
1066
+ msgid "Create a filter-based gallery"
1067
+ msgstr ""
1068
+
1069
+ #: pro/enhanced-media-library-pro.php:161
1070
+ msgid "Create a filter-based playlist"
1071
+ msgstr ""
1072
+
1073
+ #: pro/enhanced-media-library-pro.php:162
1074
+ msgid "Create a filter-based video playlist"
1075
+ msgstr ""
1076
+
1077
+ #: pro/enhanced-media-library-pro.php:240
1078
+ msgid ""
1079
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
+ "will remain intact."
1082
+ msgstr ""
1083
+
1084
+ #: pro/enhanced-media-library-pro.php:240
1085
+ msgid "Return to Plugins"
1086
+ msgstr ""
1087
+
1088
+ #: pro/enhanced-media-library-pro.php:291
1089
+ msgid ""
1090
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
+ "be active. Please network deactivate and delete the free versions of the "
1093
+ "plugin. All your data will remain intact."
1094
+ msgstr ""
1095
+
1096
+ #: pro/enhanced-media-library-pro.php:308
1097
+ msgid ""
1098
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
+ "be active. Please deactivate and delete the free version of the plugin. All "
1100
+ "your data will remain intact."
1101
+ msgstr ""
1102
+
1103
+ #: pro/enhanced-media-library-pro.php:324
1104
+ msgid ""
1105
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
+ "version to be active. Please deactivate (or network deactivate) and delete "
1108
+ "the free version of the plugin for this site. All your data will remail "
1109
+ "intact."
1110
+ msgstr ""
1111
+
1112
+ #. Plugin Name of the plugin/theme
1113
+ msgid "Enhanced Media Library PRO"
1114
+ msgstr "Rozszerzona Biblioteka Mediów PRO"
1115
+
1116
  #. Plugin URI of the plugin/theme
1117
  #. Author URI of the plugin/theme
1118
  msgid "http://wpUXsolutions.com"
languages/enhanced-media-library-sv_SE.mo CHANGED
Binary file
languages/enhanced-media-library-sv_SE.po CHANGED
@@ -1,25 +1,20 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-08-09 17:42+0300\n"
7
- "PO-Revision-Date: \n"
 
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: P. E.\n"
10
  "Language: sv_SE\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #: core/mime-types.php:30
25
  msgid "MIME Types settings restored."
@@ -33,16 +28,16 @@ msgstr ""
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
36
- msgstr[0] " <span class=\"count\">(%s)</span>"
37
- msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:236
40
- #: core/options-pages.php:1003 core/options-pages.php:1128
41
- #: core/options-pages.php:1451 core/options-pages.php:1651
42
  msgid "Media Settings"
43
  msgstr "Mediainställningar"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "Mediabiblioteket"
48
 
@@ -50,7 +45,7 @@ msgstr "Mediabiblioteket"
50
  msgid "Taxonomies"
51
  msgstr "Taxonomier"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "MIME-typer"
56
 
@@ -58,275 +53,276 @@ msgstr "MIME-typer"
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
60
 
61
- #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
  msgid "Media Taxonomies"
67
  msgstr "Mediataxonomier"
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
74
 
75
- #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1173
148
- #: core/options-pages.php:1188 core/options-pages.php:1251
149
- #: core/options-pages.php:1320
150
  msgid "Edit"
151
  msgstr "Redigera"
152
 
153
- #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr "Stäng"
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1189
158
- #: core/options-pages.php:1252
159
  msgid "View"
160
  msgstr "Visa"
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1190
163
- #: core/options-pages.php:1253
164
  msgid "Update"
165
  msgstr "Uppdatera"
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1191
168
- #: core/options-pages.php:1254
169
  msgid "Add New"
170
  msgstr "Lägg Till Ny"
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1192
173
- #: core/options-pages.php:1255
174
  msgid "New"
175
  msgstr "Ny"
176
 
177
- #: core/options-pages.php:403
178
  msgid "Name"
179
  msgstr "Namn"
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1193
182
- #: core/options-pages.php:1256
183
  msgid "Parent"
184
  msgstr "Förälder"
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:641
187
- #: core/options-pages.php:1187 core/options-pages.php:1250
188
- #: core/taxonomies.php:348 enhanced-media-library.php:485
189
  msgid "All"
190
  msgstr "Alla"
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1194
193
- #: core/options-pages.php:1257
194
  msgid "Search"
195
  msgstr "Sök"
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1238
198
  msgid "New Taxonomy"
199
  msgstr "Ny Taxonomi"
200
 
201
- #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
236
 
237
- #: core/options-pages.php:420
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
- #: core/options-pages.php:421
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:422
246
  msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:423
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
- #: core/options-pages.php:425
254
  msgid "Ok"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:475 core/options-pages.php:520
 
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:428
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:429 core/options-pages.php:517
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:430
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
- #: core/options-pages.php:432
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:470 core/options-pages.php:1575
279
  msgid "Restore WordPress default MIME Types"
280
  msgstr ""
281
 
282
- #: core/options-pages.php:471
283
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
284
  msgstr ""
285
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
286
 
287
- #: core/options-pages.php:472
288
  msgid "Restore Defaults"
289
  msgstr ""
290
 
291
- #: core/options-pages.php:473
292
  msgid "Restoring..."
293
  msgstr ""
294
 
295
- #: core/options-pages.php:477
296
  msgid "Please fill into all fields."
297
  msgstr "Var god fyll i alla fält."
298
 
299
- #: core/options-pages.php:478
300
  msgid "Duplicate extensions or MIME types. Please chose other one."
301
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
302
 
303
- #: core/options-pages.php:515 core/options-pages.php:632
304
  msgid "Complete Cleanup"
305
  msgstr ""
306
 
307
- #: core/options-pages.php:516
308
  msgid ""
309
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
310
  "plugin data</strong> from the database including backups."
311
  msgstr ""
312
 
313
- #: core/options-pages.php:518
314
  msgid "Yes, delete all data"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:519
318
  msgid "Cleaning..."
319
  msgstr ""
320
 
321
- #: core/options-pages.php:550
322
  msgid "Enhanced Media Library Settings"
323
  msgstr ""
324
 
325
- #: core/options-pages.php:560
326
  msgid "Export"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:564
330
  msgid ""
331
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
332
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -334,15 +330,15 @@ msgid ""
334
  "another website."
335
  msgstr ""
336
 
337
- #: core/options-pages.php:569
338
  msgid "Export Plugin Settings"
339
  msgstr ""
340
 
341
- #: core/options-pages.php:579
342
  msgid "Import"
343
  msgstr ""
344
 
345
- #: core/options-pages.php:583
346
  msgid ""
347
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
348
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -350,168 +346,173 @@ msgid ""
350
  "another website using the export button above."
351
  msgstr ""
352
 
353
- #: core/options-pages.php:584
354
  msgid ""
355
  "All plugin settings will be overridden by the import. You will have a chance "
356
  "to restore current data from an automatic backup in case you are not "
357
  "satisfied with the result of the import."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:591
361
  msgid "Import Plugin Settings"
362
  msgstr ""
363
 
364
- #: core/options-pages.php:603
365
  msgid "Restore"
366
  msgstr ""
367
 
368
- #: core/options-pages.php:609
369
  msgid "No backup available at the moment."
370
  msgstr ""
371
 
372
- #: core/options-pages.php:611
373
  msgid "Backup will be created automatically before any import operation."
374
  msgstr ""
375
 
376
- #: core/options-pages.php:615
377
  msgid ""
378
  "The backup has been automatically created before the latest import operation."
379
  msgstr ""
380
 
381
- #: core/options-pages.php:619
382
  msgid "Restore Settings from the Backup"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:639
386
  msgid "What will be deleted:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:644
390
  msgid "All plugin options"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:645
394
  msgid "All plugin backups stored in database"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:649
398
  msgid "What will remain intact:"
399
  msgstr ""
400
 
401
- #: core/options-pages.php:650
402
  msgid "All media items"
403
  msgstr ""
404
 
405
- #: core/options-pages.php:651
406
  msgid "All taxonomies not listed above"
407
  msgstr ""
408
 
409
- #: core/options-pages.php:654
410
  msgid ""
411
  "The plugin cannot delete itself because of security reason. Please delete it "
412
  "manually from plugin list after cleanup."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:656
416
  msgid ""
417
  "If you are not sure about this operation please create a backup of your "
418
  "database prior to cleanup!"
419
  msgstr ""
420
 
421
- #: core/options-pages.php:662
422
  msgid "Delete All Data & Deactivate"
423
  msgstr ""
424
 
425
- #: core/options-pages.php:762
426
  msgid "Please upload a file to import settings."
427
  msgstr ""
428
 
429
- #: core/options-pages.php:788
430
  msgid "Plugin settings imported."
431
  msgstr ""
432
 
433
- #: core/options-pages.php:835
434
  msgid "Plugin settings restored from the backup."
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1024
438
  msgid "Media Items Order"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1031
442
  msgid "Order media items by"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:1034
 
446
  msgid "Date"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1035
 
450
  msgid "Title"
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1036
 
454
  msgid "Custom Order"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1038 core/options-pages.php:1050
458
  msgid "For media library and media popups"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1039
462
  msgid "Option allows to change order by drag and drop with Custom Order value."
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1044
466
  msgid "Sort order"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1047
 
470
  msgid "Ascending"
471
  msgstr ""
472
 
473
- #: core/options-pages.php:1048
 
474
  msgid "Descending"
475
  msgstr ""
476
 
477
- #: core/options-pages.php:1063
478
  msgid "Media Shortcodes"
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1070 core/options-pages.php:1073
482
  msgid "Enhanced media shortcodes"
483
  msgstr ""
484
 
485
- #: core/options-pages.php:1074
486
  msgid ""
487
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
488
  "upload date, and media items number limit"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1075
492
  msgid "Gallery example:"
493
  msgstr ""
494
 
495
- #: core/options-pages.php:1076
496
  msgid "Audio playlist example:"
497
  msgstr ""
498
 
499
- #: core/options-pages.php:1077
500
  msgid "Video playlist example:"
501
  msgstr ""
502
 
503
- #: core/options-pages.php:1079
504
  #, php-format
505
  msgid ""
506
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1081
510
  #, php-format
511
  msgid "%sLearn more%s."
512
  msgstr ""
513
 
514
- #: core/options-pages.php:1083
515
  #, php-format
516
  msgid ""
517
  "Please check out your gallery front-end and back-end functionality once this "
@@ -519,239 +520,239 @@ msgid ""
519
  "%s."
520
  msgstr ""
521
 
522
- #: core/options-pages.php:1153 core/options-pages.php:1300
523
  msgid "Assign following taxonomies to Media Library:"
524
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
525
 
526
- #: core/options-pages.php:1172 core/options-pages.php:1238
527
- #: core/options-pages.php:1319
528
  msgid "Assign Taxonomy"
529
  msgstr "Tilldela Taxonomi"
530
 
531
- #: core/options-pages.php:1173 core/options-pages.php:1320
532
  msgid "Edit Taxonomy"
533
  msgstr "Redigera Taxonomi"
534
 
535
- #: core/options-pages.php:1177 core/options-pages.php:1240
536
  msgid "Delete Taxonomy"
537
  msgstr "Ta Bort Taxonomi"
538
 
539
- #: core/options-pages.php:1182 core/options-pages.php:1245
540
  msgid "Labels"
541
  msgstr "Etiketter"
542
 
543
- #: core/options-pages.php:1184 core/options-pages.php:1247
544
  msgid "Singular"
545
  msgstr "Singular"
546
 
547
- #: core/options-pages.php:1185 core/options-pages.php:1248
548
  msgid "Plural"
549
  msgstr "Plural"
550
 
551
- #: core/options-pages.php:1186 core/options-pages.php:1249
552
  msgid "Menu Name"
553
  msgstr "Menynamn"
554
 
555
- #: core/options-pages.php:1199 core/options-pages.php:1222
556
- #: core/options-pages.php:1262 core/options-pages.php:1323
557
  msgid "Settings"
558
  msgstr "Inställningar"
559
 
560
- #: core/options-pages.php:1201 core/options-pages.php:1264
561
  msgid "Taxonomy Name"
562
  msgstr "Taxonominamn"
563
 
564
- #: core/options-pages.php:1202 core/options-pages.php:1265
565
  msgid "Hierarchical"
566
  msgstr "Hierarkisk"
567
 
568
- #: core/options-pages.php:1203 core/options-pages.php:1266
569
  msgid "Column for List View"
570
  msgstr ""
571
 
572
- #: core/options-pages.php:1204 core/options-pages.php:1224
573
- #: core/options-pages.php:1267 core/options-pages.php:1325
574
  msgid "Filter for List View"
575
  msgstr ""
576
 
577
- #: core/options-pages.php:1205 core/options-pages.php:1225
578
- #: core/options-pages.php:1268 core/options-pages.php:1326
579
  msgid "Filter for Grid View / Media Popup"
580
  msgstr ""
581
 
582
- #: core/options-pages.php:1206 core/options-pages.php:1226
583
- #: core/options-pages.php:1269 core/options-pages.php:1327
584
  msgid "Edit in Media Popup"
585
  msgstr "Redigera i Media-popup"
586
 
587
- #: core/options-pages.php:1207 core/options-pages.php:1270
588
  msgid "Show in Nav Menu"
589
  msgstr "Visa i Nav Menu"
590
 
591
- #: core/options-pages.php:1208 core/options-pages.php:1271
592
  msgid "Remember Terms Order (sort)"
593
  msgstr ""
594
 
595
- #: core/options-pages.php:1209 core/options-pages.php:1272
596
  msgid "Show in REST"
597
  msgstr ""
598
 
599
- #: core/options-pages.php:1210 core/options-pages.php:1273
600
  msgid "Rewrite Slug"
601
  msgstr "Skriv Om Slug"
602
 
603
- #: core/options-pages.php:1211 core/options-pages.php:1274
604
  msgid "Slug with Front"
605
  msgstr "Slug med Framsida"
606
 
607
- #: core/options-pages.php:1286
608
  msgid "Add New Taxonomy"
609
  msgstr "Lägg Till Ny Taxonomi"
610
 
611
- #: core/options-pages.php:1296
612
  msgid "Non-Media Taxonomies"
613
  msgstr "Icke-Media-taxonomier"
614
 
615
- #: core/options-pages.php:1357
616
  msgid "Options"
617
  msgstr "Alternativ"
618
 
619
- #: core/options-pages.php:1367 core/options-pages.php:1370
620
  msgid "Taxonomy archive pages"
621
  msgstr "Arkivsidor för Taxonomier"
622
 
623
- #: core/options-pages.php:1371
624
  msgid "Turn on media taxonomy archive pages on the front-end"
625
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
626
 
627
- #: core/options-pages.php:1372
628
  msgid ""
629
  "Re-save your permalink settings after this option change to make it work."
630
  msgstr ""
631
  "Återspara inställningarna för permalänkar efter en ändring av detta "
632
  "alternativ för att få det att fungera."
633
 
634
- #: core/options-pages.php:1378 core/options-pages.php:1381
635
  msgid "Assign all like hierarchical"
636
  msgstr "Tilldela alla som hierarkiska"
637
 
638
- #: core/options-pages.php:1382
639
  msgid ""
640
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
641
  msgstr ""
642
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
643
 
644
- #: core/options-pages.php:1388 core/options-pages.php:1391
645
  msgid "Force filters"
646
  msgstr "Tvinga filter"
647
 
648
- #: core/options-pages.php:1392
649
  msgid "Show media filters for ANY Media Popup"
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1393
653
  msgid "Try this if filters are not shown for third-party plugins or themes."
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1399 core/options-pages.php:1402
657
  msgid "Show count"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1403
661
  msgid "Show item count per category for media filters"
662
  msgstr ""
663
 
664
- #: core/options-pages.php:1457
665
  msgid "Add New MIME Type"
666
  msgstr "Lägg Till Ny MIME-typ"
667
 
668
- #: core/options-pages.php:1477 core/options-pages.php:1532
669
  msgid "Extension"
670
  msgstr "Utökning"
671
 
672
- #: core/options-pages.php:1478 core/options-pages.php:1533
673
  msgid "MIME Type"
674
  msgstr "MIME-typ"
675
 
676
- #: core/options-pages.php:1479 core/options-pages.php:1534
677
  msgid "Singular Label"
678
  msgstr "Singular-etikett"
679
 
680
- #: core/options-pages.php:1480 core/options-pages.php:1535
681
  msgid "Plural Label"
682
  msgstr "Plural-etikett"
683
 
684
- #: core/options-pages.php:1481 core/options-pages.php:1511
685
- #: core/options-pages.php:1524 core/options-pages.php:1536
686
  msgid "Add Filter"
687
  msgstr "Lägg Till Filter"
688
 
689
- #: core/options-pages.php:1482 core/options-pages.php:1512
690
- #: core/options-pages.php:1525 core/options-pages.php:1537
691
  msgid "Allow Upload"
692
  msgstr "Tillåt Uppladdning"
693
 
694
- #: core/options-pages.php:1513 core/options-pages.php:1526
695
  msgid "Delete MIME Type"
696
  msgstr "Ta Bort MIME-typ"
697
 
698
- #: core/options-pages.php:1573
699
  msgid "Save Changes"
700
  msgstr "Spara Ändringar"
701
 
702
- #: core/options-pages.php:1603
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1604
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1604
711
  msgid "version"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1607
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1609
719
  msgid "Support"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1610
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1610
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1612
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1613
735
  msgid "Please"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1613
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1613
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1615
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1654
751
  msgid "Utility"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1677
755
  msgid "Vote!"
756
  msgstr ""
757
 
@@ -763,71 +764,375 @@ msgstr ""
763
  msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
- #: core/taxonomies.php:341 core/taxonomies.php:347
767
- #: enhanced-media-library.php:484
768
  msgid "Filter by"
769
  msgstr "Filtrera efter"
770
 
771
- #: core/taxonomies.php:349 enhanced-media-library.php:486
772
- msgid "Not in"
773
  msgstr "Ej i"
774
 
775
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
776
  msgid "All Uncategorized"
777
  msgstr "Alla Okategoriserade"
778
 
779
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
780
  msgid "Reset All Filters"
781
  msgstr "Återställ alla filter"
782
 
783
- #: enhanced-media-library.php:517
784
  msgid "Uploaded to post #"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:518
788
  msgid "Based On"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
792
  msgid "Media Categories"
793
  msgstr ""
794
 
795
- #: enhanced-media-library.php:564
796
  msgid "Media Category"
797
  msgstr ""
798
 
799
- #: enhanced-media-library.php:566
800
  msgid "All Media Categories"
801
  msgstr ""
802
 
803
- #: enhanced-media-library.php:567
804
  msgid "Edit Media Category"
805
  msgstr ""
806
 
807
- #: enhanced-media-library.php:568
808
  msgid "View Media Category"
809
  msgstr ""
810
 
811
- #: enhanced-media-library.php:569
812
  msgid "Update Media Category"
813
  msgstr ""
814
 
815
- #: enhanced-media-library.php:570
816
  msgid "Add New Media Category"
817
  msgstr ""
818
 
819
- #: enhanced-media-library.php:571
820
  msgid "New Media Category Name"
821
  msgstr ""
822
 
823
- #: enhanced-media-library.php:572
824
  msgid "Parent Media Category"
825
  msgstr ""
826
 
827
- #: enhanced-media-library.php:573
828
  msgid "Parent Media Category:"
829
  msgstr ""
830
 
831
- #: enhanced-media-library.php:574
832
  msgid "Search Media Categories"
833
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-29 19:34+0200\n"
6
+ "PO-Revision-Date: 2016-11-29 19:34+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
+ "Language-Team: Swedish (Sweden)\n"
9
  "Language: sv_SE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.11\n"
15
+ "X-Loco-Source-Locale: en-US\n"
16
+ "X-Loco-Project-Id: 16288\n"
17
+ "X-Loco-Api-Version: 1.0.14 20160726-1\n"
 
 
 
 
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
28
  #, php-format
29
  msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
+ msgstr[0] ""
32
+ msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:239
35
+ #: core/options-pages.php:1006 core/options-pages.php:1130
36
+ #: core/options-pages.php:1455 core/options-pages.php:1655
37
  msgid "Media Settings"
38
  msgstr "Mediainställningar"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Mediabiblioteket"
43
 
45
  msgid "Taxonomies"
46
  msgstr "Taxonomier"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "MIME-typer"
51
 
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
+ #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
+ #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Mediataxonomier"
63
 
64
+ #: core/options-pages.php:236 core/options-pages.php:548
65
+ #: core/options-pages.php:1002 core/options-pages.php:1127
66
+ #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
69
 
70
+ #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
+ #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
+ #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
+ #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
+ #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
+ #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
+ #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
+ #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
+ #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
+ #: core/options-pages.php:400 core/options-pages.php:1175
143
+ #: core/options-pages.php:1190 core/options-pages.php:1253
144
+ #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "Redigera"
147
 
148
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "Stäng"
151
 
152
+ #: core/options-pages.php:402 core/options-pages.php:1191
153
+ #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "Visa"
156
 
157
+ #: core/options-pages.php:403 core/options-pages.php:1192
158
+ #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "Uppdatera"
161
 
162
+ #: core/options-pages.php:404 core/options-pages.php:1193
163
+ #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr "Lägg Till Ny"
166
 
167
+ #: core/options-pages.php:405 core/options-pages.php:1194
168
+ #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr "Ny"
171
 
172
+ #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr "Namn"
175
 
176
+ #: core/options-pages.php:407 core/options-pages.php:1195
177
+ #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr "Förälder"
180
 
181
+ #: core/options-pages.php:408 core/options-pages.php:644
182
+ #: core/options-pages.php:1189 core/options-pages.php:1252
183
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "Alla"
186
 
187
+ #: core/options-pages.php:409 core/options-pages.php:1196
188
+ #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "Sök"
191
 
192
+ #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr "Ny Taxonomi"
195
 
196
+ #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
+ #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
+ #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
+ #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
+ #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
+ #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
+ #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr ""
230
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
231
 
232
+ #: core/options-pages.php:423
233
  msgid "Empty Fields"
234
  msgstr ""
235
 
236
+ #: core/options-pages.php:424
237
  msgid "Please choose Singular and Plural names for all new taxomonies."
238
  msgstr ""
239
 
240
+ #: core/options-pages.php:425
241
  msgid "Please choose Singular name for all new taxomonies."
242
  msgstr ""
243
 
244
+ #: core/options-pages.php:426
245
  msgid "Please choose Plural Name for all new taxomonies."
246
  msgstr ""
247
 
248
+ #: core/options-pages.php:428
249
  msgid "Ok"
250
  msgstr ""
251
 
252
+ #: core/options-pages.php:429 core/options-pages.php:434
253
+ #: core/options-pages.php:478 core/options-pages.php:523
254
+ #: pro/enhanced-media-library-pro.php:133
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:432 core/options-pages.php:520
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:433
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:435
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:473 core/options-pages.php:1579
275
  msgid "Restore WordPress default MIME Types"
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:474
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr ""
281
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
282
 
283
+ #: core/options-pages.php:475
284
  msgid "Restore Defaults"
285
  msgstr ""
286
 
287
+ #: core/options-pages.php:476
288
  msgid "Restoring..."
289
  msgstr ""
290
 
291
+ #: core/options-pages.php:480
292
  msgid "Please fill into all fields."
293
  msgstr "Var god fyll i alla fält."
294
 
295
+ #: core/options-pages.php:481
296
  msgid "Duplicate extensions or MIME types. Please chose other one."
297
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
298
 
299
+ #: core/options-pages.php:518 core/options-pages.php:635
300
  msgid "Complete Cleanup"
301
  msgstr ""
302
 
303
+ #: core/options-pages.php:519
304
  msgid ""
305
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
306
  "plugin data</strong> from the database including backups."
307
  msgstr ""
308
 
309
+ #: core/options-pages.php:521
310
  msgid "Yes, delete all data"
311
  msgstr ""
312
 
313
+ #: core/options-pages.php:522
314
  msgid "Cleaning..."
315
  msgstr ""
316
 
317
+ #: core/options-pages.php:553
318
  msgid "Enhanced Media Library Settings"
319
  msgstr ""
320
 
321
+ #: core/options-pages.php:563
322
  msgid "Export"
323
  msgstr ""
324
 
325
+ #: core/options-pages.php:567
326
  msgid ""
327
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
328
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
330
  "another website."
331
  msgstr ""
332
 
333
+ #: core/options-pages.php:572
334
  msgid "Export Plugin Settings"
335
  msgstr ""
336
 
337
+ #: core/options-pages.php:582
338
  msgid "Import"
339
  msgstr ""
340
 
341
+ #: core/options-pages.php:586
342
  msgid ""
343
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
344
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
346
  "another website using the export button above."
347
  msgstr ""
348
 
349
+ #: core/options-pages.php:587
350
  msgid ""
351
  "All plugin settings will be overridden by the import. You will have a chance "
352
  "to restore current data from an automatic backup in case you are not "
353
  "satisfied with the result of the import."
354
  msgstr ""
355
 
356
+ #: core/options-pages.php:594
357
  msgid "Import Plugin Settings"
358
  msgstr ""
359
 
360
+ #: core/options-pages.php:606
361
  msgid "Restore"
362
  msgstr ""
363
 
364
+ #: core/options-pages.php:612
365
  msgid "No backup available at the moment."
366
  msgstr ""
367
 
368
+ #: core/options-pages.php:614
369
  msgid "Backup will be created automatically before any import operation."
370
  msgstr ""
371
 
372
+ #: core/options-pages.php:618
373
  msgid ""
374
  "The backup has been automatically created before the latest import operation."
375
  msgstr ""
376
 
377
+ #: core/options-pages.php:622
378
  msgid "Restore Settings from the Backup"
379
  msgstr ""
380
 
381
+ #: core/options-pages.php:642
382
  msgid "What will be deleted:"
383
  msgstr ""
384
 
385
+ #: core/options-pages.php:647
386
  msgid "All plugin options"
387
  msgstr ""
388
 
389
+ #: core/options-pages.php:648
390
  msgid "All plugin backups stored in database"
391
  msgstr ""
392
 
393
+ #: core/options-pages.php:652
394
  msgid "What will remain intact:"
395
  msgstr ""
396
 
397
+ #: core/options-pages.php:653
398
  msgid "All media items"
399
  msgstr ""
400
 
401
+ #: core/options-pages.php:654
402
  msgid "All taxonomies not listed above"
403
  msgstr ""
404
 
405
+ #: core/options-pages.php:657
406
  msgid ""
407
  "The plugin cannot delete itself because of security reason. Please delete it "
408
  "manually from plugin list after cleanup."
409
  msgstr ""
410
 
411
+ #: core/options-pages.php:659
412
  msgid ""
413
  "If you are not sure about this operation please create a backup of your "
414
  "database prior to cleanup!"
415
  msgstr ""
416
 
417
+ #: core/options-pages.php:665
418
  msgid "Delete All Data & Deactivate"
419
  msgstr ""
420
 
421
+ #: core/options-pages.php:765
422
  msgid "Please upload a file to import settings."
423
  msgstr ""
424
 
425
+ #: core/options-pages.php:791
426
  msgid "Plugin settings imported."
427
  msgstr ""
428
 
429
+ #: core/options-pages.php:838
430
  msgid "Plugin settings restored from the backup."
431
  msgstr ""
432
 
433
+ #: core/options-pages.php:1027
434
  msgid "Media Items Order"
435
  msgstr ""
436
 
437
+ #: core/options-pages.php:1034
438
  msgid "Order media items by"
439
  msgstr ""
440
 
441
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
442
+ #: pro/core/medialist.php:73
443
  msgid "Date"
444
  msgstr ""
445
 
446
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
447
+ #: pro/core/medialist.php:76
448
  msgid "Title"
449
  msgstr ""
450
 
451
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
452
+ #: pro/core/medialist.php:79
453
  msgid "Custom Order"
454
  msgstr ""
455
 
456
+ #: core/options-pages.php:1041 core/options-pages.php:1053
457
  msgid "For media library and media popups"
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1042
461
  msgid "Option allows to change order by drag and drop with Custom Order value."
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1047
465
  msgid "Sort order"
466
  msgstr ""
467
 
468
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
469
+ #: pro/core/medialist.php:92
470
  msgid "Ascending"
471
  msgstr ""
472
 
473
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
474
+ #: pro/core/medialist.php:95
475
  msgid "Descending"
476
  msgstr ""
477
 
478
+ #: core/options-pages.php:1066
479
  msgid "Media Shortcodes"
480
  msgstr ""
481
 
482
+ #: core/options-pages.php:1073 core/options-pages.php:1076
483
  msgid "Enhanced media shortcodes"
484
  msgstr ""
485
 
486
+ #: core/options-pages.php:1077
487
  msgid ""
488
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
  "upload date, and media items number limit"
490
  msgstr ""
491
 
492
+ #: core/options-pages.php:1078
493
  msgid "Gallery example:"
494
  msgstr ""
495
 
496
+ #: core/options-pages.php:1079
497
  msgid "Audio playlist example:"
498
  msgstr ""
499
 
500
+ #: core/options-pages.php:1080
501
  msgid "Video playlist example:"
502
  msgstr ""
503
 
504
+ #: core/options-pages.php:1082
505
  #, php-format
506
  msgid ""
507
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
508
  msgstr ""
509
 
510
+ #: core/options-pages.php:1084
511
  #, php-format
512
  msgid "%sLearn more%s."
513
  msgstr ""
514
 
515
+ #: core/options-pages.php:1086
516
  #, php-format
517
  msgid ""
518
  "Please check out your gallery front-end and back-end functionality once this "
520
  "%s."
521
  msgstr ""
522
 
523
+ #: core/options-pages.php:1155 core/options-pages.php:1302
524
  msgid "Assign following taxonomies to Media Library:"
525
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
526
 
527
+ #: core/options-pages.php:1174 core/options-pages.php:1240
528
+ #: core/options-pages.php:1324
529
  msgid "Assign Taxonomy"
530
  msgstr "Tilldela Taxonomi"
531
 
532
+ #: core/options-pages.php:1175 core/options-pages.php:1325
533
  msgid "Edit Taxonomy"
534
  msgstr "Redigera Taxonomi"
535
 
536
+ #: core/options-pages.php:1179 core/options-pages.php:1242
537
  msgid "Delete Taxonomy"
538
  msgstr "Ta Bort Taxonomi"
539
 
540
+ #: core/options-pages.php:1184 core/options-pages.php:1247
541
  msgid "Labels"
542
  msgstr "Etiketter"
543
 
544
+ #: core/options-pages.php:1186 core/options-pages.php:1249
545
  msgid "Singular"
546
  msgstr "Singular"
547
 
548
+ #: core/options-pages.php:1187 core/options-pages.php:1250
549
  msgid "Plural"
550
  msgstr "Plural"
551
 
552
+ #: core/options-pages.php:1188 core/options-pages.php:1251
553
  msgid "Menu Name"
554
  msgstr "Menynamn"
555
 
556
+ #: core/options-pages.php:1201 core/options-pages.php:1224
557
+ #: core/options-pages.php:1264 core/options-pages.php:1328
558
  msgid "Settings"
559
  msgstr "Inställningar"
560
 
561
+ #: core/options-pages.php:1203 core/options-pages.php:1266
562
  msgid "Taxonomy Name"
563
  msgstr "Taxonominamn"
564
 
565
+ #: core/options-pages.php:1204 core/options-pages.php:1267
566
  msgid "Hierarchical"
567
  msgstr "Hierarkisk"
568
 
569
+ #: core/options-pages.php:1205 core/options-pages.php:1268
570
  msgid "Column for List View"
571
  msgstr ""
572
 
573
+ #: core/options-pages.php:1206 core/options-pages.php:1226
574
+ #: core/options-pages.php:1269 core/options-pages.php:1330
575
  msgid "Filter for List View"
576
  msgstr ""
577
 
578
+ #: core/options-pages.php:1207 core/options-pages.php:1227
579
+ #: core/options-pages.php:1270 core/options-pages.php:1331
580
  msgid "Filter for Grid View / Media Popup"
581
  msgstr ""
582
 
583
+ #: core/options-pages.php:1208 core/options-pages.php:1228
584
+ #: core/options-pages.php:1271 core/options-pages.php:1332
585
  msgid "Edit in Media Popup"
586
  msgstr "Redigera i Media-popup"
587
 
588
+ #: core/options-pages.php:1209 core/options-pages.php:1272
589
  msgid "Show in Nav Menu"
590
  msgstr "Visa i Nav Menu"
591
 
592
+ #: core/options-pages.php:1210 core/options-pages.php:1273
593
  msgid "Remember Terms Order (sort)"
594
  msgstr ""
595
 
596
+ #: core/options-pages.php:1211 core/options-pages.php:1274
597
  msgid "Show in REST"
598
  msgstr ""
599
 
600
+ #: core/options-pages.php:1212 core/options-pages.php:1275
601
  msgid "Rewrite Slug"
602
  msgstr "Skriv Om Slug"
603
 
604
+ #: core/options-pages.php:1213 core/options-pages.php:1276
605
  msgid "Slug with Front"
606
  msgstr "Slug med Framsida"
607
 
608
+ #: core/options-pages.php:1288
609
  msgid "Add New Taxonomy"
610
  msgstr "Lägg Till Ny Taxonomi"
611
 
612
+ #: core/options-pages.php:1298
613
  msgid "Non-Media Taxonomies"
614
  msgstr "Icke-Media-taxonomier"
615
 
616
+ #: core/options-pages.php:1361
617
  msgid "Options"
618
  msgstr "Alternativ"
619
 
620
+ #: core/options-pages.php:1371 core/options-pages.php:1374
621
  msgid "Taxonomy archive pages"
622
  msgstr "Arkivsidor för Taxonomier"
623
 
624
+ #: core/options-pages.php:1375
625
  msgid "Turn on media taxonomy archive pages on the front-end"
626
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
627
 
628
+ #: core/options-pages.php:1376
629
  msgid ""
630
  "Re-save your permalink settings after this option change to make it work."
631
  msgstr ""
632
  "Återspara inställningarna för permalänkar efter en ändring av detta "
633
  "alternativ för att få det att fungera."
634
 
635
+ #: core/options-pages.php:1382 core/options-pages.php:1385
636
  msgid "Assign all like hierarchical"
637
  msgstr "Tilldela alla som hierarkiska"
638
 
639
+ #: core/options-pages.php:1386
640
  msgid ""
641
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
642
  msgstr ""
643
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
644
 
645
+ #: core/options-pages.php:1392 core/options-pages.php:1395
646
  msgid "Force filters"
647
  msgstr "Tvinga filter"
648
 
649
+ #: core/options-pages.php:1396
650
  msgid "Show media filters for ANY Media Popup"
651
  msgstr ""
652
 
653
+ #: core/options-pages.php:1397
654
  msgid "Try this if filters are not shown for third-party plugins or themes."
655
  msgstr ""
656
 
657
+ #: core/options-pages.php:1403 core/options-pages.php:1406
658
  msgid "Show count"
659
  msgstr ""
660
 
661
+ #: core/options-pages.php:1407
662
  msgid "Show item count per category for media filters"
663
  msgstr ""
664
 
665
+ #: core/options-pages.php:1461
666
  msgid "Add New MIME Type"
667
  msgstr "Lägg Till Ny MIME-typ"
668
 
669
+ #: core/options-pages.php:1481 core/options-pages.php:1536
670
  msgid "Extension"
671
  msgstr "Utökning"
672
 
673
+ #: core/options-pages.php:1482 core/options-pages.php:1537
674
  msgid "MIME Type"
675
  msgstr "MIME-typ"
676
 
677
+ #: core/options-pages.php:1483 core/options-pages.php:1538
678
  msgid "Singular Label"
679
  msgstr "Singular-etikett"
680
 
681
+ #: core/options-pages.php:1484 core/options-pages.php:1539
682
  msgid "Plural Label"
683
  msgstr "Plural-etikett"
684
 
685
+ #: core/options-pages.php:1485 core/options-pages.php:1515
686
+ #: core/options-pages.php:1528 core/options-pages.php:1540
687
  msgid "Add Filter"
688
  msgstr "Lägg Till Filter"
689
 
690
+ #: core/options-pages.php:1486 core/options-pages.php:1516
691
+ #: core/options-pages.php:1529 core/options-pages.php:1541
692
  msgid "Allow Upload"
693
  msgstr "Tillåt Uppladdning"
694
 
695
+ #: core/options-pages.php:1517 core/options-pages.php:1530
696
  msgid "Delete MIME Type"
697
  msgstr "Ta Bort MIME-typ"
698
 
699
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
700
  msgid "Save Changes"
701
  msgstr "Spara Ändringar"
702
 
703
+ #: core/options-pages.php:1607
704
  msgid "Changelog"
705
  msgstr ""
706
 
707
+ #: core/options-pages.php:1608
708
  msgid "What's new in"
709
  msgstr ""
710
 
711
+ #: core/options-pages.php:1608
712
  msgid "version"
713
  msgstr ""
714
 
715
+ #: core/options-pages.php:1611
716
  msgid "More features under the hood"
717
  msgstr ""
718
 
719
+ #: core/options-pages.php:1613
720
  msgid "Support"
721
  msgstr ""
722
 
723
+ #: core/options-pages.php:1614
724
  msgid "Feel free to ask for help on"
725
  msgstr ""
726
 
727
+ #: core/options-pages.php:1614
728
  msgid "Support is free for both versions of the plugin."
729
  msgstr ""
730
 
731
+ #: core/options-pages.php:1616
732
  msgid "Plugin rating"
733
  msgstr ""
734
 
735
+ #: core/options-pages.php:1617
736
  msgid "Please"
737
  msgstr ""
738
 
739
+ #: core/options-pages.php:1617
740
  msgid "vote for the plugin"
741
  msgstr ""
742
 
743
+ #: core/options-pages.php:1617
744
  msgid "Thanks!"
745
  msgstr ""
746
 
747
+ #: core/options-pages.php:1619
748
  msgid "Other plugins you may find useful"
749
  msgstr ""
750
 
751
+ #: core/options-pages.php:1658
752
  msgid "Utility"
753
  msgstr ""
754
 
755
+ #: core/options-pages.php:1681
756
  msgid "Vote!"
757
  msgstr ""
758
 
764
  msgid "Media Library settings saved."
765
  msgstr ""
766
 
767
+ #: core/taxonomies.php:333 core/taxonomies.php:339
768
+ #: enhanced-media-library.php:502
769
  msgid "Filter by"
770
  msgstr "Filtrera efter"
771
 
772
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
773
+ msgid "Not in a"
774
  msgstr "Ej i"
775
 
776
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
777
  msgid "All Uncategorized"
778
  msgstr "Alla Okategoriserade"
779
 
780
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
781
  msgid "Reset All Filters"
782
  msgstr "Återställ alla filter"
783
 
784
+ #: enhanced-media-library.php:535
785
  msgid "Uploaded to post #"
786
  msgstr ""
787
 
788
+ #: enhanced-media-library.php:536
789
  msgid "Based On"
790
  msgstr ""
791
 
792
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
793
  msgid "Media Categories"
794
  msgstr ""
795
 
796
+ #: enhanced-media-library.php:582
797
  msgid "Media Category"
798
  msgstr ""
799
 
800
+ #: enhanced-media-library.php:584
801
  msgid "All Media Categories"
802
  msgstr ""
803
 
804
+ #: enhanced-media-library.php:585
805
  msgid "Edit Media Category"
806
  msgstr ""
807
 
808
+ #: enhanced-media-library.php:586
809
  msgid "View Media Category"
810
  msgstr ""
811
 
812
+ #: enhanced-media-library.php:587
813
  msgid "Update Media Category"
814
  msgstr ""
815
 
816
+ #: enhanced-media-library.php:588
817
  msgid "Add New Media Category"
818
  msgstr ""
819
 
820
+ #: enhanced-media-library.php:589
821
  msgid "New Media Category Name"
822
  msgstr ""
823
 
824
+ #: enhanced-media-library.php:590
825
  msgid "Parent Media Category"
826
  msgstr ""
827
 
828
+ #: enhanced-media-library.php:591
829
  msgid "Parent Media Category:"
830
  msgstr ""
831
 
832
+ #: enhanced-media-library.php:592
833
  msgid "Search Media Categories"
834
  msgstr ""
835
+
836
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
837
+ msgid "Remove"
838
+ msgstr "Ta Bort"
839
+
840
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
841
+ msgid "Deselect"
842
+ msgstr "Avmarkera"
843
+
844
+ #: pro/core/bulk-edit.php:105
845
+ msgid "Caption this image&hellip;"
846
+ msgstr "Rubricera denna bild&hellip;"
847
+
848
+ #: pro/core/bulk-edit.php:109
849
+ msgid "Describe this video&hellip;"
850
+ msgstr "Beskriv denna video&hellip;"
851
+
852
+ #: pro/core/bulk-edit.php:111
853
+ msgid "Describe this audio file&hellip;"
854
+ msgstr "Beskriv denna audiofil&hellip;"
855
+
856
+ #: pro/core/bulk-edit.php:113
857
+ msgid "Describe this media file&hellip;"
858
+ msgstr "Beskriv denna mediafil&hellip;"
859
+
860
+ #: pro/core/bulk-edit.php:122
861
+ msgid "Attachments Details"
862
+ msgstr "Detaljer För Bilaga"
863
+
864
+ #: pro/core/bulk-edit.php:175
865
+ msgid "Select All"
866
+ msgstr "Välj Alla"
867
+
868
+ #: pro/core/bulk-edit.php:176
869
+ msgid "Deselect All"
870
+ msgstr "Avmarkera Alla"
871
+
872
+ #: pro/core/bulk-edit.php:177
873
+ msgid "Delete Selected"
874
+ msgstr "Ta Bort Valda"
875
+
876
+ #: pro/core/bulk-edit.php:178
877
+ msgid "Trash Selected"
878
+ msgstr ""
879
+
880
+ #: pro/core/bulk-edit.php:179
881
+ msgid "Restore Selected"
882
+ msgstr ""
883
+
884
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
885
+ msgid "Delete Selected Permanently"
886
+ msgstr ""
887
+
888
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
889
+ msgid "Order By"
890
+ msgstr ""
891
+
892
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
893
+ msgid "Random"
894
+ msgstr ""
895
+
896
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
897
+ msgid "Order"
898
+ msgstr ""
899
+
900
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
901
+ msgid "Limit"
902
+ msgstr ""
903
+
904
+ #: pro/core/options-pages.php:78
905
+ msgid "Your license has been deactivated."
906
+ msgstr ""
907
+
908
+ #: pro/core/options-pages.php:88
909
+ msgid "Please check if your license key is correct and try again."
910
+ msgstr ""
911
+
912
+ #: pro/core/options-pages.php:104
913
+ #, php-format
914
+ msgid ""
915
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
916
+ "authors</a>."
917
+ msgstr ""
918
+
919
+ #: pro/core/options-pages.php:119
920
+ #, php-format
921
+ msgid ""
922
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
923
+ "plugin authors</a>."
924
+ msgstr ""
925
+
926
+ #: pro/core/options-pages.php:130
927
+ msgid "You license has been activated."
928
+ msgstr ""
929
+
930
+ #: pro/core/options-pages.php:184
931
+ #, php-format
932
+ msgid "Auto-assign media items to parent %s %s on upload"
933
+ msgstr ""
934
+
935
+ #: pro/core/options-pages.php:185
936
+ #, php-format
937
+ msgid ""
938
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
939
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
940
+ "assigned %s will not be saved. Media items that are not attached to any %s "
941
+ "will not be affected."
942
+ msgstr ""
943
+
944
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
945
+ msgid "Bulk Edit"
946
+ msgstr "Bulkredigering"
947
+
948
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
949
+ msgid "Turn off 'Save Changes' button"
950
+ msgstr "Stäng av knappen 'Spara Ändringar'"
951
+
952
+ #: pro/core/options-pages.php:220
953
+ msgid "Save changes on the fly"
954
+ msgstr "Spara ändringar direkt"
955
+
956
+ #: pro/core/options-pages.php:221
957
+ msgid ""
958
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
959
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
960
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
961
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
962
+ "files / taxonomies with this option turned on."
963
+ msgstr ""
964
+
965
+ #: pro/core/options-pages.php:222
966
+ msgid ""
967
+ "Strongly NOT recommended option if you work with more than hundred of files "
968
+ "at a time."
969
+ msgstr ""
970
+ "Detta alternativ rekommenderas INTE om du arbetar med fler än hundra filer "
971
+ "åt gången."
972
+
973
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
974
+ msgid "License Key"
975
+ msgstr "Licensnyckel"
976
+
977
+ #: pro/core/options-pages.php:273
978
+ #, php-format
979
+ msgid ""
980
+ "To unlock updates please enter your license key below. You can get your "
981
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
982
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
983
+ msgstr ""
984
+
985
+ #: pro/core/options-pages.php:283
986
+ msgid "Activate License"
987
+ msgstr "Aktivera Licens"
988
+
989
+ #: pro/core/options-pages.php:290
990
+ msgid "Your license is active!"
991
+ msgstr "Din licens är aktiv!"
992
+
993
+ #: pro/core/options-pages.php:294
994
+ msgid "Deactivate License"
995
+ msgstr ""
996
+
997
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
998
+ msgid ""
999
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
1000
+ "this server&#8217;s configuration. If you continue to have problems, please "
1001
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1002
+ msgstr ""
1003
+ "Ett oväntat fel uppstod. Någonting kanske är fel på WordPress.org eller med "
1004
+ "denna servers konfigurering. Om du fortsätter att stöta på problem, var god "
1005
+ "prova <a href=\"https://wordpress.org/support/\">WordPress supportforum</a>."
1006
+
1007
+ #: pro/core/update.php:113
1008
+ msgid ""
1009
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1010
+ "contact your server administrator.)"
1011
+ msgstr ""
1012
+ "(WordPress kunde inte etablera en säker uppkoppling till WordPress.org. Var "
1013
+ "god kontakta din serveradministratör)"
1014
+
1015
+ #: pro/core/update.php:181
1016
+ #, php-format
1017
+ msgid ""
1018
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1019
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1020
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1021
+ msgstr ""
1022
+
1023
+ #: pro/enhanced-media-library-pro.php:119
1024
+ msgid "ALL files belong to this item"
1025
+ msgstr "ALLA filer tillhör detta objekt"
1026
+
1027
+ #: pro/enhanced-media-library-pro.php:120
1028
+ msgid "SOME files belong to this item"
1029
+ msgstr "NÅGRA filer tillhör detta objekt"
1030
+
1031
+ #: pro/enhanced-media-library-pro.php:121
1032
+ msgid "NO files belong to this item"
1033
+ msgstr "INGA filer tillhör detta objekt"
1034
+
1035
+ #: pro/enhanced-media-library-pro.php:122
1036
+ msgid "Changes saved."
1037
+ msgstr "Ändringar sparade."
1038
+
1039
+ #: pro/enhanced-media-library-pro.php:123
1040
+ msgid "Something went wrong."
1041
+ msgstr "Någonting gick fel."
1042
+
1043
+ #: pro/enhanced-media-library-pro.php:126
1044
+ msgid "Edit Media Files"
1045
+ msgstr "Redigera Mediafiler"
1046
+
1047
+ #: pro/enhanced-media-library-pro.php:129
1048
+ msgid "Selecting"
1049
+ msgstr ""
1050
+
1051
+ #: pro/enhanced-media-library-pro.php:131
1052
+ msgid "You are about to permanently delete all selected items."
1053
+ msgstr ""
1054
+
1055
+ #: pro/enhanced-media-library-pro.php:132
1056
+ msgid "Delete"
1057
+ msgstr ""
1058
+
1059
+ #: pro/enhanced-media-library-pro.php:134
1060
+ msgid "Moving to Trash"
1061
+ msgstr ""
1062
+
1063
+ #: pro/enhanced-media-library-pro.php:135
1064
+ msgid "Restoring"
1065
+ msgstr ""
1066
+
1067
+ #: pro/enhanced-media-library-pro.php:136
1068
+ msgid "Deleting"
1069
+ msgstr ""
1070
+
1071
+ #: pro/enhanced-media-library-pro.php:160
1072
+ msgid "Create a filter-based gallery"
1073
+ msgstr ""
1074
+
1075
+ #: pro/enhanced-media-library-pro.php:161
1076
+ msgid "Create a filter-based playlist"
1077
+ msgstr ""
1078
+
1079
+ #: pro/enhanced-media-library-pro.php:162
1080
+ msgid "Create a filter-based video playlist"
1081
+ msgstr ""
1082
+
1083
+ #: pro/enhanced-media-library-pro.php:240
1084
+ msgid ""
1085
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1086
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1087
+ "will remain intact."
1088
+ msgstr ""
1089
+
1090
+ #: pro/enhanced-media-library-pro.php:240
1091
+ msgid "Return to Plugins"
1092
+ msgstr "Återgå till Tillägg"
1093
+
1094
+ #: pro/enhanced-media-library-pro.php:291
1095
+ msgid ""
1096
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1097
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1098
+ "be active. Please network deactivate and delete the free versions of the "
1099
+ "plugin. All your data will remain intact."
1100
+ msgstr ""
1101
+
1102
+ #: pro/enhanced-media-library-pro.php:308
1103
+ msgid ""
1104
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1105
+ "be active. Please deactivate and delete the free version of the plugin. All "
1106
+ "your data will remain intact."
1107
+ msgstr ""
1108
+
1109
+ #: pro/enhanced-media-library-pro.php:324
1110
+ msgid ""
1111
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1112
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1113
+ "version to be active. Please deactivate (or network deactivate) and delete "
1114
+ "the free version of the plugin for this site. All your data will remail "
1115
+ "intact."
1116
+ msgstr ""
1117
+
1118
+ #. Plugin Name of the plugin/theme
1119
+ msgid "Enhanced Media Library PRO"
1120
+ msgstr "Enhanced Media Library PRO"
1121
+
1122
+ #. Plugin URI of the plugin/theme
1123
+ #. Author URI of the plugin/theme
1124
+ msgid "http://wpUXsolutions.com"
1125
+ msgstr ""
1126
+
1127
+ #. Description of the plugin/theme
1128
+ msgid ""
1129
+ "This plugin will be handy for those who need to manage a lot of media files."
1130
+ msgstr ""
1131
+ "Detta är ett praktiskt tillägg för de som behöver hantera många mediafiler."
1132
+
1133
+ #. Author of the plugin/theme
1134
+ msgid "wpUXsolutions"
1135
+ msgstr ""
1136
+
1137
+ #~ msgid "Not in"
1138
+ #~ msgstr "Ej i"
languages/enhanced-media-library.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2016-08-09 17:41+0300\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.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 1.8.8\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: enhanced-media-library.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -35,13 +35,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
35
  msgstr[0] ""
36
  msgstr[1] ""
37
 
38
- #: core/options-pages.php:97 core/options-pages.php:236
39
- #: core/options-pages.php:1003 core/options-pages.php:1128
40
- #: core/options-pages.php:1451 core/options-pages.php:1651
41
  msgid "Media Settings"
42
  msgstr ""
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:208
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -49,282 +49,282 @@ msgstr ""
49
  msgid "Taxonomies"
50
  msgstr ""
51
 
52
- #: core/options-pages.php:124 core/options-pages.php:210
53
  msgid "MIME Types"
54
  msgstr ""
55
 
56
- #. Plugin Name of the plugin/theme
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr ""
60
 
61
- #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1149
66
  msgid "Media Taxonomies"
67
  msgstr ""
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:545
70
- #: core/options-pages.php:999 core/options-pages.php:1124
71
- #: core/options-pages.php:1447
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr ""
74
 
75
- #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1173
148
- #: core/options-pages.php:1188 core/options-pages.php:1251
149
- #: core/options-pages.php:1320
150
  msgid "Edit"
151
  msgstr ""
152
 
153
- #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr ""
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1189
158
- #: core/options-pages.php:1252
159
  msgid "View"
160
  msgstr ""
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1190
163
- #: core/options-pages.php:1253
164
  msgid "Update"
165
  msgstr ""
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1191
168
- #: core/options-pages.php:1254
169
  msgid "Add New"
170
  msgstr ""
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1192
173
- #: core/options-pages.php:1255
174
  msgid "New"
175
  msgstr ""
176
 
177
- #: core/options-pages.php:403
178
  msgid "Name"
179
  msgstr ""
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1193
182
- #: core/options-pages.php:1256
183
  msgid "Parent"
184
  msgstr ""
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:641
187
- #: core/options-pages.php:1187 core/options-pages.php:1250
188
- #: core/taxonomies.php:348 enhanced-media-library.php:485
189
  msgid "All"
190
  msgstr ""
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1194
193
- #: core/options-pages.php:1257
194
  msgid "Search"
195
  msgstr ""
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1238
198
  msgid "New Taxonomy"
199
  msgstr ""
200
 
201
- #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
 
236
- #: core/options-pages.php:420
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:421
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:422
245
  msgid "Please choose Singular name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:423
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:425
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:426 core/options-pages.php:431
257
- #: core/options-pages.php:475 core/options-pages.php:520
 
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:428
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:429 core/options-pages.php:517
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:430
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:432
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:470 core/options-pages.php:1575
278
  msgid "Restore WordPress default MIME Types"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:471
282
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
283
  msgstr ""
284
 
285
- #: core/options-pages.php:472
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:473
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:477
294
  msgid "Please fill into all fields."
295
  msgstr ""
296
 
297
- #: core/options-pages.php:478
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
 
301
- #: core/options-pages.php:515 core/options-pages.php:632
302
  msgid "Complete Cleanup"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:516
306
  msgid ""
307
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
308
  "plugin data</strong> from the database including backups."
309
  msgstr ""
310
 
311
- #: core/options-pages.php:518
312
  msgid "Yes, delete all data"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:519
316
  msgid "Cleaning..."
317
  msgstr ""
318
 
319
- #: core/options-pages.php:550
320
  msgid "Enhanced Media Library Settings"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:560
324
  msgid "Export"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:564
328
  msgid ""
329
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
330
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -332,15 +332,15 @@ msgid ""
332
  "another website."
333
  msgstr ""
334
 
335
- #: core/options-pages.php:569
336
  msgid "Export Plugin Settings"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:579
340
  msgid "Import"
341
  msgstr ""
342
 
343
- #: core/options-pages.php:583
344
  msgid ""
345
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
346
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -348,168 +348,173 @@ msgid ""
348
  "another website using the export button above."
349
  msgstr ""
350
 
351
- #: core/options-pages.php:584
352
  msgid ""
353
  "All plugin settings will be overridden by the import. You will have a chance "
354
  "to restore current data from an automatic backup in case you are not "
355
  "satisfied with the result of the import."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:591
359
  msgid "Import Plugin Settings"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:603
363
  msgid "Restore"
364
  msgstr ""
365
 
366
- #: core/options-pages.php:609
367
  msgid "No backup available at the moment."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:611
371
  msgid "Backup will be created automatically before any import operation."
372
  msgstr ""
373
 
374
- #: core/options-pages.php:615
375
  msgid ""
376
  "The backup has been automatically created before the latest import operation."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:619
380
  msgid "Restore Settings from the Backup"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:639
384
  msgid "What will be deleted:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:644
388
  msgid "All plugin options"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:645
392
  msgid "All plugin backups stored in database"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:649
396
  msgid "What will remain intact:"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:650
400
  msgid "All media items"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:651
404
  msgid "All taxonomies not listed above"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:654
408
  msgid ""
409
  "The plugin cannot delete itself because of security reason. Please delete it "
410
  "manually from plugin list after cleanup."
411
  msgstr ""
412
 
413
- #: core/options-pages.php:656
414
  msgid ""
415
  "If you are not sure about this operation please create a backup of your "
416
  "database prior to cleanup!"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:662
420
  msgid "Delete All Data & Deactivate"
421
  msgstr ""
422
 
423
- #: core/options-pages.php:762
424
  msgid "Please upload a file to import settings."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:788
428
  msgid "Plugin settings imported."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:835
432
  msgid "Plugin settings restored from the backup."
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1024
436
  msgid "Media Items Order"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1031
440
  msgid "Order media items by"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1034
 
444
  msgid "Date"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:1035
 
448
  msgid "Title"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1036
 
452
  msgid "Custom Order"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1038 core/options-pages.php:1050
456
  msgid "For media library and media popups"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1039
460
  msgid "Option allows to change order by drag and drop with Custom Order value."
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1044
464
  msgid "Sort order"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1047
 
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1048
 
472
  msgid "Descending"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1063
476
  msgid "Media Shortcodes"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1070 core/options-pages.php:1073
480
  msgid "Enhanced media shortcodes"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1074
484
  msgid ""
485
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
486
  "upload date, and media items number limit"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1075
490
  msgid "Gallery example:"
491
  msgstr ""
492
 
493
- #: core/options-pages.php:1076
494
  msgid "Audio playlist example:"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1077
498
  msgid "Video playlist example:"
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1079
502
  #, php-format
503
  msgid ""
504
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
505
  msgstr ""
506
 
507
- #: core/options-pages.php:1081
508
  #, php-format
509
  msgid "%sLearn more%s."
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1083
513
  #, php-format
514
  msgid ""
515
  "Please check out your gallery front-end and back-end functionality once this "
@@ -517,236 +522,236 @@ msgid ""
517
  "%s."
518
  msgstr ""
519
 
520
- #: core/options-pages.php:1153 core/options-pages.php:1300
521
  msgid "Assign following taxonomies to Media Library:"
522
  msgstr ""
523
 
524
- #: core/options-pages.php:1172 core/options-pages.php:1238
525
- #: core/options-pages.php:1319
526
  msgid "Assign Taxonomy"
527
  msgstr ""
528
 
529
- #: core/options-pages.php:1173 core/options-pages.php:1320
530
  msgid "Edit Taxonomy"
531
  msgstr ""
532
 
533
- #: core/options-pages.php:1177 core/options-pages.php:1240
534
  msgid "Delete Taxonomy"
535
  msgstr ""
536
 
537
- #: core/options-pages.php:1182 core/options-pages.php:1245
538
  msgid "Labels"
539
  msgstr ""
540
 
541
- #: core/options-pages.php:1184 core/options-pages.php:1247
542
  msgid "Singular"
543
  msgstr ""
544
 
545
- #: core/options-pages.php:1185 core/options-pages.php:1248
546
  msgid "Plural"
547
  msgstr ""
548
 
549
- #: core/options-pages.php:1186 core/options-pages.php:1249
550
  msgid "Menu Name"
551
  msgstr ""
552
 
553
- #: core/options-pages.php:1199 core/options-pages.php:1222
554
- #: core/options-pages.php:1262 core/options-pages.php:1323
555
  msgid "Settings"
556
  msgstr ""
557
 
558
- #: core/options-pages.php:1201 core/options-pages.php:1264
559
  msgid "Taxonomy Name"
560
  msgstr ""
561
 
562
- #: core/options-pages.php:1202 core/options-pages.php:1265
563
  msgid "Hierarchical"
564
  msgstr ""
565
 
566
- #: core/options-pages.php:1203 core/options-pages.php:1266
567
  msgid "Column for List View"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1204 core/options-pages.php:1224
571
- #: core/options-pages.php:1267 core/options-pages.php:1325
572
  msgid "Filter for List View"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1205 core/options-pages.php:1225
576
- #: core/options-pages.php:1268 core/options-pages.php:1326
577
  msgid "Filter for Grid View / Media Popup"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1206 core/options-pages.php:1226
581
- #: core/options-pages.php:1269 core/options-pages.php:1327
582
  msgid "Edit in Media Popup"
583
  msgstr ""
584
 
585
- #: core/options-pages.php:1207 core/options-pages.php:1270
586
  msgid "Show in Nav Menu"
587
  msgstr ""
588
 
589
- #: core/options-pages.php:1208 core/options-pages.php:1271
590
  msgid "Remember Terms Order (sort)"
591
  msgstr ""
592
 
593
- #: core/options-pages.php:1209 core/options-pages.php:1272
594
  msgid "Show in REST"
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1210 core/options-pages.php:1273
598
  msgid "Rewrite Slug"
599
  msgstr ""
600
 
601
- #: core/options-pages.php:1211 core/options-pages.php:1274
602
  msgid "Slug with Front"
603
  msgstr ""
604
 
605
- #: core/options-pages.php:1286
606
  msgid "Add New Taxonomy"
607
  msgstr ""
608
 
609
- #: core/options-pages.php:1296
610
  msgid "Non-Media Taxonomies"
611
  msgstr ""
612
 
613
- #: core/options-pages.php:1357
614
  msgid "Options"
615
  msgstr ""
616
 
617
- #: core/options-pages.php:1367 core/options-pages.php:1370
618
  msgid "Taxonomy archive pages"
619
  msgstr ""
620
 
621
- #: core/options-pages.php:1371
622
  msgid "Turn on media taxonomy archive pages on the front-end"
623
  msgstr ""
624
 
625
- #: core/options-pages.php:1372
626
  msgid ""
627
  "Re-save your permalink settings after this option change to make it work."
628
  msgstr ""
629
 
630
- #: core/options-pages.php:1378 core/options-pages.php:1381
631
  msgid "Assign all like hierarchical"
632
  msgstr ""
633
 
634
- #: core/options-pages.php:1382
635
  msgid ""
636
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
637
  msgstr ""
638
 
639
- #: core/options-pages.php:1388 core/options-pages.php:1391
640
  msgid "Force filters"
641
  msgstr ""
642
 
643
- #: core/options-pages.php:1392
644
  msgid "Show media filters for ANY Media Popup"
645
  msgstr ""
646
 
647
- #: core/options-pages.php:1393
648
  msgid "Try this if filters are not shown for third-party plugins or themes."
649
  msgstr ""
650
 
651
- #: core/options-pages.php:1399 core/options-pages.php:1402
652
  msgid "Show count"
653
  msgstr ""
654
 
655
- #: core/options-pages.php:1403
656
  msgid "Show item count per category for media filters"
657
  msgstr ""
658
 
659
- #: core/options-pages.php:1457
660
  msgid "Add New MIME Type"
661
  msgstr ""
662
 
663
- #: core/options-pages.php:1477 core/options-pages.php:1532
664
  msgid "Extension"
665
  msgstr ""
666
 
667
- #: core/options-pages.php:1478 core/options-pages.php:1533
668
  msgid "MIME Type"
669
  msgstr ""
670
 
671
- #: core/options-pages.php:1479 core/options-pages.php:1534
672
  msgid "Singular Label"
673
  msgstr ""
674
 
675
- #: core/options-pages.php:1480 core/options-pages.php:1535
676
  msgid "Plural Label"
677
  msgstr ""
678
 
679
- #: core/options-pages.php:1481 core/options-pages.php:1511
680
- #: core/options-pages.php:1524 core/options-pages.php:1536
681
  msgid "Add Filter"
682
  msgstr ""
683
 
684
- #: core/options-pages.php:1482 core/options-pages.php:1512
685
- #: core/options-pages.php:1525 core/options-pages.php:1537
686
  msgid "Allow Upload"
687
  msgstr ""
688
 
689
- #: core/options-pages.php:1513 core/options-pages.php:1526
690
  msgid "Delete MIME Type"
691
  msgstr ""
692
 
693
- #: core/options-pages.php:1573
694
  msgid "Save Changes"
695
  msgstr ""
696
 
697
- #: core/options-pages.php:1603
698
  msgid "Changelog"
699
  msgstr ""
700
 
701
- #: core/options-pages.php:1604
702
  msgid "What's new in"
703
  msgstr ""
704
 
705
- #: core/options-pages.php:1604
706
  msgid "version"
707
  msgstr ""
708
 
709
- #: core/options-pages.php:1607
710
  msgid "More features under the hood"
711
  msgstr ""
712
 
713
- #: core/options-pages.php:1609
714
  msgid "Support"
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1610
718
  msgid "Feel free to ask for help on"
719
  msgstr ""
720
 
721
- #: core/options-pages.php:1610
722
  msgid "Support is free for both versions of the plugin."
723
  msgstr ""
724
 
725
- #: core/options-pages.php:1612
726
  msgid "Plugin rating"
727
  msgstr ""
728
 
729
- #: core/options-pages.php:1613
730
  msgid "Please"
731
  msgstr ""
732
 
733
- #: core/options-pages.php:1613
734
  msgid "vote for the plugin"
735
  msgstr ""
736
 
737
- #: core/options-pages.php:1613
738
  msgid "Thanks!"
739
  msgstr ""
740
 
741
- #: core/options-pages.php:1615
742
  msgid "Other plugins you may find useful"
743
  msgstr ""
744
 
745
- #: core/options-pages.php:1654
746
  msgid "Utility"
747
  msgstr ""
748
 
749
- #: core/options-pages.php:1677
750
  msgid "Vote!"
751
  msgstr ""
752
 
@@ -758,75 +763,354 @@ msgstr ""
758
  msgid "Media Library settings saved."
759
  msgstr ""
760
 
761
- #: core/taxonomies.php:341 core/taxonomies.php:347
762
- #: enhanced-media-library.php:484
763
  msgid "Filter by"
764
  msgstr ""
765
 
766
- #: core/taxonomies.php:349 enhanced-media-library.php:486
767
- msgid "Not in"
768
  msgstr ""
769
 
770
- #: enhanced-media-library.php:335 enhanced-media-library.php:483
771
  msgid "All Uncategorized"
772
  msgstr ""
773
 
774
- #: enhanced-media-library.php:336 enhanced-media-library.php:487
775
  msgid "Reset All Filters"
776
  msgstr ""
777
 
778
- #: enhanced-media-library.php:517
779
  msgid "Uploaded to post #"
780
  msgstr ""
781
 
782
- #: enhanced-media-library.php:518
783
  msgid "Based On"
784
  msgstr ""
785
 
786
- #: enhanced-media-library.php:563 enhanced-media-library.php:565
787
  msgid "Media Categories"
788
  msgstr ""
789
 
790
- #: enhanced-media-library.php:564
791
  msgid "Media Category"
792
  msgstr ""
793
 
794
- #: enhanced-media-library.php:566
795
  msgid "All Media Categories"
796
  msgstr ""
797
 
798
- #: enhanced-media-library.php:567
799
  msgid "Edit Media Category"
800
  msgstr ""
801
 
802
- #: enhanced-media-library.php:568
803
  msgid "View Media Category"
804
  msgstr ""
805
 
806
- #: enhanced-media-library.php:569
807
  msgid "Update Media Category"
808
  msgstr ""
809
 
810
- #: enhanced-media-library.php:570
811
  msgid "Add New Media Category"
812
  msgstr ""
813
 
814
- #: enhanced-media-library.php:571
815
  msgid "New Media Category Name"
816
  msgstr ""
817
 
818
- #: enhanced-media-library.php:572
819
  msgid "Parent Media Category"
820
  msgstr ""
821
 
822
- #: enhanced-media-library.php:573
823
  msgid "Parent Media Category:"
824
  msgstr ""
825
 
826
- #: enhanced-media-library.php:574
827
  msgid "Search Media Categories"
828
  msgstr ""
829
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
830
  #. Plugin URI of the plugin/theme
831
  #. Author URI of the plugin/theme
832
  msgid "http://wpUXsolutions.com"
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
+ "POT-Creation-Date: 2016-11-29 19:32+0200\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.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 1.8.11\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: enhanced-media-library.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
35
  msgstr[0] ""
36
  msgstr[1] ""
37
 
38
+ #: core/options-pages.php:97 core/options-pages.php:239
39
+ #: core/options-pages.php:1006 core/options-pages.php:1130
40
+ #: core/options-pages.php:1455 core/options-pages.php:1655
41
  msgid "Media Settings"
42
  msgstr ""
43
 
44
+ #: core/options-pages.php:106 core/options-pages.php:211
45
  msgid "Media Library"
46
  msgstr ""
47
 
49
  msgid "Taxonomies"
50
  msgstr ""
51
 
52
+ #: core/options-pages.php:124 core/options-pages.php:213
53
  msgid "MIME Types"
54
  msgstr ""
55
 
 
56
  #: core/options-pages.php:135 core/options-pages.php:136
57
  msgid "Enhanced Media Library"
58
  msgstr ""
59
 
60
+ #: core/options-pages.php:210
61
  msgid "General"
62
  msgstr ""
63
 
64
+ #: core/options-pages.php:212 core/options-pages.php:1151
65
  msgid "Media Taxonomies"
66
  msgstr ""
67
 
68
+ #: core/options-pages.php:236 core/options-pages.php:548
69
+ #: core/options-pages.php:1002 core/options-pages.php:1127
70
+ #: core/options-pages.php:1451
71
  msgid "You do not have sufficient permissions to access this page."
72
  msgstr ""
73
 
74
+ #: core/options-pages.php:250
75
  msgid "Image sizes"
76
  msgstr ""
77
 
78
+ #: core/options-pages.php:251
79
  msgid ""
80
  "The sizes listed below determine the maximum dimensions in pixels to use "
81
  "when adding an image to the Media Library."
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:255
85
  msgid "Thumbnail size"
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:257
89
  msgid "Width"
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:259
93
  msgid "Height"
94
  msgstr ""
95
 
96
+ #: core/options-pages.php:262
97
  msgid ""
98
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:267 core/options-pages.php:268
102
  msgid "Medium size"
103
  msgstr ""
104
 
105
+ #: core/options-pages.php:269 core/options-pages.php:279
106
  msgid "Max Width"
107
  msgstr ""
108
 
109
+ #: core/options-pages.php:271 core/options-pages.php:281
110
  msgid "Max Height"
111
  msgstr ""
112
 
113
+ #: core/options-pages.php:277 core/options-pages.php:278
114
  msgid "Large size"
115
  msgstr ""
116
 
117
+ #: core/options-pages.php:294
118
  msgid "Embeds"
119
  msgstr ""
120
 
121
+ #: core/options-pages.php:301
122
  msgid "Uploading Files"
123
  msgstr ""
124
 
125
+ #: core/options-pages.php:308
126
  msgid "Store uploads in this folder"
127
  msgstr ""
128
 
129
+ #: core/options-pages.php:312
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:318
135
  msgid "Full URL path to files"
136
  msgstr ""
137
 
138
+ #: core/options-pages.php:320
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
 
142
+ #: core/options-pages.php:328
143
  msgid "Organize my uploads into month- and year-based folders"
144
  msgstr ""
145
 
146
+ #: core/options-pages.php:400 core/options-pages.php:1175
147
+ #: core/options-pages.php:1190 core/options-pages.php:1253
148
+ #: core/options-pages.php:1325
149
  msgid "Edit"
150
  msgstr ""
151
 
152
+ #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
153
  msgid "Close"
154
  msgstr ""
155
 
156
+ #: core/options-pages.php:402 core/options-pages.php:1191
157
+ #: core/options-pages.php:1254
158
  msgid "View"
159
  msgstr ""
160
 
161
+ #: core/options-pages.php:403 core/options-pages.php:1192
162
+ #: core/options-pages.php:1255
163
  msgid "Update"
164
  msgstr ""
165
 
166
+ #: core/options-pages.php:404 core/options-pages.php:1193
167
+ #: core/options-pages.php:1256
168
  msgid "Add New"
169
  msgstr ""
170
 
171
+ #: core/options-pages.php:405 core/options-pages.php:1194
172
+ #: core/options-pages.php:1257
173
  msgid "New"
174
  msgstr ""
175
 
176
+ #: core/options-pages.php:406
177
  msgid "Name"
178
  msgstr ""
179
 
180
+ #: core/options-pages.php:407 core/options-pages.php:1195
181
+ #: core/options-pages.php:1258
182
  msgid "Parent"
183
  msgstr ""
184
 
185
+ #: core/options-pages.php:408 core/options-pages.php:644
186
+ #: core/options-pages.php:1189 core/options-pages.php:1252
187
+ #: core/taxonomies.php:340 enhanced-media-library.php:503
188
  msgid "All"
189
  msgstr ""
190
 
191
+ #: core/options-pages.php:409 core/options-pages.php:1196
192
+ #: core/options-pages.php:1259
193
  msgid "Search"
194
  msgstr ""
195
 
196
+ #: core/options-pages.php:411 core/options-pages.php:1240
197
  msgid "New Taxonomy"
198
  msgstr ""
199
 
200
+ #: core/options-pages.php:413
201
  msgid "Remove Taxonomy"
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:414
205
  msgid "Taxonomy will be removed."
206
  msgstr ""
207
 
208
+ #: core/options-pages.php:415
209
  msgid ""
210
  "Taxonomy terms (categories) will remain intact in the database. If you "
211
  "create a taxonomy with the same name in the future, its terms (categories) "
212
  "will be available again."
213
  msgstr ""
214
 
215
+ #: core/options-pages.php:416
216
  msgid "Media items will remain intact."
217
  msgstr ""
218
 
219
+ #: core/options-pages.php:417
220
  msgid "Are you still sure?"
221
  msgstr ""
222
 
223
+ #: core/options-pages.php:418
224
  msgid "Yes, remove taxonomy"
225
  msgstr ""
226
 
227
+ #: core/options-pages.php:420
228
  msgid "Duplicate"
229
  msgstr ""
230
 
231
+ #: core/options-pages.php:421
232
  msgid "Taxonomy with the same name already exists. Please chose other one."
233
  msgstr ""
234
 
235
+ #: core/options-pages.php:423
236
  msgid "Empty Fields"
237
  msgstr ""
238
 
239
+ #: core/options-pages.php:424
240
  msgid "Please choose Singular and Plural names for all new taxomonies."
241
  msgstr ""
242
 
243
+ #: core/options-pages.php:425
244
  msgid "Please choose Singular name for all new taxomonies."
245
  msgstr ""
246
 
247
+ #: core/options-pages.php:426
248
  msgid "Please choose Plural Name for all new taxomonies."
249
  msgstr ""
250
 
251
+ #: core/options-pages.php:428
252
  msgid "Ok"
253
  msgstr ""
254
 
255
+ #: core/options-pages.php:429 core/options-pages.php:434
256
+ #: core/options-pages.php:478 core/options-pages.php:523
257
+ #: pro/enhanced-media-library-pro.php:133
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:431 pro/core/options-pages.php:185
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:432 core/options-pages.php:520
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:433
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:435
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:473 core/options-pages.php:1579
278
  msgid "Restore WordPress default MIME Types"
279
  msgstr ""
280
 
281
+ #: core/options-pages.php:474
282
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
283
  msgstr ""
284
 
285
+ #: core/options-pages.php:475
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:476
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
+ #: core/options-pages.php:480
294
  msgid "Please fill into all fields."
295
  msgstr ""
296
 
297
+ #: core/options-pages.php:481
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
 
301
+ #: core/options-pages.php:518 core/options-pages.php:635
302
  msgid "Complete Cleanup"
303
  msgstr ""
304
 
305
+ #: core/options-pages.php:519
306
  msgid ""
307
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
308
  "plugin data</strong> from the database including backups."
309
  msgstr ""
310
 
311
+ #: core/options-pages.php:521
312
  msgid "Yes, delete all data"
313
  msgstr ""
314
 
315
+ #: core/options-pages.php:522
316
  msgid "Cleaning..."
317
  msgstr ""
318
 
319
+ #: core/options-pages.php:553
320
  msgid "Enhanced Media Library Settings"
321
  msgstr ""
322
 
323
+ #: core/options-pages.php:563
324
  msgid "Export"
325
  msgstr ""
326
 
327
+ #: core/options-pages.php:567
328
  msgid ""
329
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
330
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
332
  "another website."
333
  msgstr ""
334
 
335
+ #: core/options-pages.php:572
336
  msgid "Export Plugin Settings"
337
  msgstr ""
338
 
339
+ #: core/options-pages.php:582
340
  msgid "Import"
341
  msgstr ""
342
 
343
+ #: core/options-pages.php:586
344
  msgid ""
345
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
346
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
348
  "another website using the export button above."
349
  msgstr ""
350
 
351
+ #: core/options-pages.php:587
352
  msgid ""
353
  "All plugin settings will be overridden by the import. You will have a chance "
354
  "to restore current data from an automatic backup in case you are not "
355
  "satisfied with the result of the import."
356
  msgstr ""
357
 
358
+ #: core/options-pages.php:594
359
  msgid "Import Plugin Settings"
360
  msgstr ""
361
 
362
+ #: core/options-pages.php:606
363
  msgid "Restore"
364
  msgstr ""
365
 
366
+ #: core/options-pages.php:612
367
  msgid "No backup available at the moment."
368
  msgstr ""
369
 
370
+ #: core/options-pages.php:614
371
  msgid "Backup will be created automatically before any import operation."
372
  msgstr ""
373
 
374
+ #: core/options-pages.php:618
375
  msgid ""
376
  "The backup has been automatically created before the latest import operation."
377
  msgstr ""
378
 
379
+ #: core/options-pages.php:622
380
  msgid "Restore Settings from the Backup"
381
  msgstr ""
382
 
383
+ #: core/options-pages.php:642
384
  msgid "What will be deleted:"
385
  msgstr ""
386
 
387
+ #: core/options-pages.php:647
388
  msgid "All plugin options"
389
  msgstr ""
390
 
391
+ #: core/options-pages.php:648
392
  msgid "All plugin backups stored in database"
393
  msgstr ""
394
 
395
+ #: core/options-pages.php:652
396
  msgid "What will remain intact:"
397
  msgstr ""
398
 
399
+ #: core/options-pages.php:653
400
  msgid "All media items"
401
  msgstr ""
402
 
403
+ #: core/options-pages.php:654
404
  msgid "All taxonomies not listed above"
405
  msgstr ""
406
 
407
+ #: core/options-pages.php:657
408
  msgid ""
409
  "The plugin cannot delete itself because of security reason. Please delete it "
410
  "manually from plugin list after cleanup."
411
  msgstr ""
412
 
413
+ #: core/options-pages.php:659
414
  msgid ""
415
  "If you are not sure about this operation please create a backup of your "
416
  "database prior to cleanup!"
417
  msgstr ""
418
 
419
+ #: core/options-pages.php:665
420
  msgid "Delete All Data & Deactivate"
421
  msgstr ""
422
 
423
+ #: core/options-pages.php:765
424
  msgid "Please upload a file to import settings."
425
  msgstr ""
426
 
427
+ #: core/options-pages.php:791
428
  msgid "Plugin settings imported."
429
  msgstr ""
430
 
431
+ #: core/options-pages.php:838
432
  msgid "Plugin settings restored from the backup."
433
  msgstr ""
434
 
435
+ #: core/options-pages.php:1027
436
  msgid "Media Items Order"
437
  msgstr ""
438
 
439
+ #: core/options-pages.php:1034
440
  msgid "Order media items by"
441
  msgstr ""
442
 
443
+ #: core/options-pages.php:1037 pro/core/medialist.php:28
444
+ #: pro/core/medialist.php:73
445
  msgid "Date"
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:1038 pro/core/medialist.php:31
449
+ #: pro/core/medialist.php:76
450
  msgid "Title"
451
  msgstr ""
452
 
453
+ #: core/options-pages.php:1039 pro/core/medialist.php:34
454
+ #: pro/core/medialist.php:79
455
  msgid "Custom Order"
456
  msgstr ""
457
 
458
+ #: core/options-pages.php:1041 core/options-pages.php:1053
459
  msgid "For media library and media popups"
460
  msgstr ""
461
 
462
+ #: core/options-pages.php:1042
463
  msgid "Option allows to change order by drag and drop with Custom Order value."
464
  msgstr ""
465
 
466
+ #: core/options-pages.php:1047
467
  msgid "Sort order"
468
  msgstr ""
469
 
470
+ #: core/options-pages.php:1050 pro/core/medialist.php:47
471
+ #: pro/core/medialist.php:92
472
  msgid "Ascending"
473
  msgstr ""
474
 
475
+ #: core/options-pages.php:1051 pro/core/medialist.php:50
476
+ #: pro/core/medialist.php:95
477
  msgid "Descending"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1066
481
  msgid "Media Shortcodes"
482
  msgstr ""
483
 
484
+ #: core/options-pages.php:1073 core/options-pages.php:1076
485
  msgid "Enhanced media shortcodes"
486
  msgstr ""
487
 
488
+ #: core/options-pages.php:1077
489
  msgid ""
490
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
491
  "upload date, and media items number limit"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1078
495
  msgid "Gallery example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1079
499
  msgid "Audio playlist example:"
500
  msgstr ""
501
 
502
+ #: core/options-pages.php:1080
503
  msgid "Video playlist example:"
504
  msgstr ""
505
 
506
+ #: core/options-pages.php:1082
507
  #, php-format
508
  msgid ""
509
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
510
  msgstr ""
511
 
512
+ #: core/options-pages.php:1084
513
  #, php-format
514
  msgid "%sLearn more%s."
515
  msgstr ""
516
 
517
+ #: core/options-pages.php:1086
518
  #, php-format
519
  msgid ""
520
  "Please check out your gallery front-end and back-end functionality once this "
522
  "%s."
523
  msgstr ""
524
 
525
+ #: core/options-pages.php:1155 core/options-pages.php:1302
526
  msgid "Assign following taxonomies to Media Library:"
527
  msgstr ""
528
 
529
+ #: core/options-pages.php:1174 core/options-pages.php:1240
530
+ #: core/options-pages.php:1324
531
  msgid "Assign Taxonomy"
532
  msgstr ""
533
 
534
+ #: core/options-pages.php:1175 core/options-pages.php:1325
535
  msgid "Edit Taxonomy"
536
  msgstr ""
537
 
538
+ #: core/options-pages.php:1179 core/options-pages.php:1242
539
  msgid "Delete Taxonomy"
540
  msgstr ""
541
 
542
+ #: core/options-pages.php:1184 core/options-pages.php:1247
543
  msgid "Labels"
544
  msgstr ""
545
 
546
+ #: core/options-pages.php:1186 core/options-pages.php:1249
547
  msgid "Singular"
548
  msgstr ""
549
 
550
+ #: core/options-pages.php:1187 core/options-pages.php:1250
551
  msgid "Plural"
552
  msgstr ""
553
 
554
+ #: core/options-pages.php:1188 core/options-pages.php:1251
555
  msgid "Menu Name"
556
  msgstr ""
557
 
558
+ #: core/options-pages.php:1201 core/options-pages.php:1224
559
+ #: core/options-pages.php:1264 core/options-pages.php:1328
560
  msgid "Settings"
561
  msgstr ""
562
 
563
+ #: core/options-pages.php:1203 core/options-pages.php:1266
564
  msgid "Taxonomy Name"
565
  msgstr ""
566
 
567
+ #: core/options-pages.php:1204 core/options-pages.php:1267
568
  msgid "Hierarchical"
569
  msgstr ""
570
 
571
+ #: core/options-pages.php:1205 core/options-pages.php:1268
572
  msgid "Column for List View"
573
  msgstr ""
574
 
575
+ #: core/options-pages.php:1206 core/options-pages.php:1226
576
+ #: core/options-pages.php:1269 core/options-pages.php:1330
577
  msgid "Filter for List View"
578
  msgstr ""
579
 
580
+ #: core/options-pages.php:1207 core/options-pages.php:1227
581
+ #: core/options-pages.php:1270 core/options-pages.php:1331
582
  msgid "Filter for Grid View / Media Popup"
583
  msgstr ""
584
 
585
+ #: core/options-pages.php:1208 core/options-pages.php:1228
586
+ #: core/options-pages.php:1271 core/options-pages.php:1332
587
  msgid "Edit in Media Popup"
588
  msgstr ""
589
 
590
+ #: core/options-pages.php:1209 core/options-pages.php:1272
591
  msgid "Show in Nav Menu"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1210 core/options-pages.php:1273
595
  msgid "Remember Terms Order (sort)"
596
  msgstr ""
597
 
598
+ #: core/options-pages.php:1211 core/options-pages.php:1274
599
  msgid "Show in REST"
600
  msgstr ""
601
 
602
+ #: core/options-pages.php:1212 core/options-pages.php:1275
603
  msgid "Rewrite Slug"
604
  msgstr ""
605
 
606
+ #: core/options-pages.php:1213 core/options-pages.php:1276
607
  msgid "Slug with Front"
608
  msgstr ""
609
 
610
+ #: core/options-pages.php:1288
611
  msgid "Add New Taxonomy"
612
  msgstr ""
613
 
614
+ #: core/options-pages.php:1298
615
  msgid "Non-Media Taxonomies"
616
  msgstr ""
617
 
618
+ #: core/options-pages.php:1361
619
  msgid "Options"
620
  msgstr ""
621
 
622
+ #: core/options-pages.php:1371 core/options-pages.php:1374
623
  msgid "Taxonomy archive pages"
624
  msgstr ""
625
 
626
+ #: core/options-pages.php:1375
627
  msgid "Turn on media taxonomy archive pages on the front-end"
628
  msgstr ""
629
 
630
+ #: core/options-pages.php:1376
631
  msgid ""
632
  "Re-save your permalink settings after this option change to make it work."
633
  msgstr ""
634
 
635
+ #: core/options-pages.php:1382 core/options-pages.php:1385
636
  msgid "Assign all like hierarchical"
637
  msgstr ""
638
 
639
+ #: core/options-pages.php:1386
640
  msgid ""
641
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
642
  msgstr ""
643
 
644
+ #: core/options-pages.php:1392 core/options-pages.php:1395
645
  msgid "Force filters"
646
  msgstr ""
647
 
648
+ #: core/options-pages.php:1396
649
  msgid "Show media filters for ANY Media Popup"
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1397
653
  msgid "Try this if filters are not shown for third-party plugins or themes."
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1403 core/options-pages.php:1406
657
  msgid "Show count"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1407
661
  msgid "Show item count per category for media filters"
662
  msgstr ""
663
 
664
+ #: core/options-pages.php:1461
665
  msgid "Add New MIME Type"
666
  msgstr ""
667
 
668
+ #: core/options-pages.php:1481 core/options-pages.php:1536
669
  msgid "Extension"
670
  msgstr ""
671
 
672
+ #: core/options-pages.php:1482 core/options-pages.php:1537
673
  msgid "MIME Type"
674
  msgstr ""
675
 
676
+ #: core/options-pages.php:1483 core/options-pages.php:1538
677
  msgid "Singular Label"
678
  msgstr ""
679
 
680
+ #: core/options-pages.php:1484 core/options-pages.php:1539
681
  msgid "Plural Label"
682
  msgstr ""
683
 
684
+ #: core/options-pages.php:1485 core/options-pages.php:1515
685
+ #: core/options-pages.php:1528 core/options-pages.php:1540
686
  msgid "Add Filter"
687
  msgstr ""
688
 
689
+ #: core/options-pages.php:1486 core/options-pages.php:1516
690
+ #: core/options-pages.php:1529 core/options-pages.php:1541
691
  msgid "Allow Upload"
692
  msgstr ""
693
 
694
+ #: core/options-pages.php:1517 core/options-pages.php:1530
695
  msgid "Delete MIME Type"
696
  msgstr ""
697
 
698
+ #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
699
  msgid "Save Changes"
700
  msgstr ""
701
 
702
+ #: core/options-pages.php:1607
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1608
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1608
711
  msgid "version"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1611
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1613
719
  msgid "Support"
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1614
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1614
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1616
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1617
735
  msgid "Please"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1617
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1617
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1619
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
+ #: core/options-pages.php:1658
751
  msgid "Utility"
752
  msgstr ""
753
 
754
+ #: core/options-pages.php:1681
755
  msgid "Vote!"
756
  msgstr ""
757
 
763
  msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
+ #: core/taxonomies.php:333 core/taxonomies.php:339
767
+ #: enhanced-media-library.php:502
768
  msgid "Filter by"
769
  msgstr ""
770
 
771
+ #: core/taxonomies.php:341 enhanced-media-library.php:504
772
+ msgid "Not in a"
773
  msgstr ""
774
 
775
+ #: enhanced-media-library.php:350 enhanced-media-library.php:501
776
  msgid "All Uncategorized"
777
  msgstr ""
778
 
779
+ #: enhanced-media-library.php:351 enhanced-media-library.php:505
780
  msgid "Reset All Filters"
781
  msgstr ""
782
 
783
+ #: enhanced-media-library.php:535
784
  msgid "Uploaded to post #"
785
  msgstr ""
786
 
787
+ #: enhanced-media-library.php:536
788
  msgid "Based On"
789
  msgstr ""
790
 
791
+ #: enhanced-media-library.php:581 enhanced-media-library.php:583
792
  msgid "Media Categories"
793
  msgstr ""
794
 
795
+ #: enhanced-media-library.php:582
796
  msgid "Media Category"
797
  msgstr ""
798
 
799
+ #: enhanced-media-library.php:584
800
  msgid "All Media Categories"
801
  msgstr ""
802
 
803
+ #: enhanced-media-library.php:585
804
  msgid "Edit Media Category"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:586
808
  msgid "View Media Category"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:587
812
  msgid "Update Media Category"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:588
816
  msgid "Add New Media Category"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:589
820
  msgid "New Media Category Name"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:590
824
  msgid "Parent Media Category"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:591
828
  msgid "Parent Media Category:"
829
  msgstr ""
830
 
831
+ #: enhanced-media-library.php:592
832
  msgid "Search Media Categories"
833
  msgstr ""
834
 
835
+ #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
836
+ msgid "Remove"
837
+ msgstr ""
838
+
839
+ #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
840
+ msgid "Deselect"
841
+ msgstr ""
842
+
843
+ #: pro/core/bulk-edit.php:105
844
+ msgid "Caption this image&hellip;"
845
+ msgstr ""
846
+
847
+ #: pro/core/bulk-edit.php:109
848
+ msgid "Describe this video&hellip;"
849
+ msgstr ""
850
+
851
+ #: pro/core/bulk-edit.php:111
852
+ msgid "Describe this audio file&hellip;"
853
+ msgstr ""
854
+
855
+ #: pro/core/bulk-edit.php:113
856
+ msgid "Describe this media file&hellip;"
857
+ msgstr ""
858
+
859
+ #: pro/core/bulk-edit.php:122
860
+ msgid "Attachments Details"
861
+ msgstr ""
862
+
863
+ #: pro/core/bulk-edit.php:175
864
+ msgid "Select All"
865
+ msgstr ""
866
+
867
+ #: pro/core/bulk-edit.php:176
868
+ msgid "Deselect All"
869
+ msgstr ""
870
+
871
+ #: pro/core/bulk-edit.php:177
872
+ msgid "Delete Selected"
873
+ msgstr ""
874
+
875
+ #: pro/core/bulk-edit.php:178
876
+ msgid "Trash Selected"
877
+ msgstr ""
878
+
879
+ #: pro/core/bulk-edit.php:179
880
+ msgid "Restore Selected"
881
+ msgstr ""
882
+
883
+ #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
884
+ msgid "Delete Selected Permanently"
885
+ msgstr ""
886
+
887
+ #: pro/core/medialist.php:24 pro/core/medialist.php:69
888
+ msgid "Order By"
889
+ msgstr ""
890
+
891
+ #: pro/core/medialist.php:37 pro/core/medialist.php:82
892
+ msgid "Random"
893
+ msgstr ""
894
+
895
+ #: pro/core/medialist.php:43 pro/core/medialist.php:88
896
+ msgid "Order"
897
+ msgstr ""
898
+
899
+ #: pro/core/medialist.php:60 pro/core/medialist.php:101
900
+ msgid "Limit"
901
+ msgstr ""
902
+
903
+ #: pro/core/options-pages.php:78
904
+ msgid "Your license has been deactivated."
905
+ msgstr ""
906
+
907
+ #: pro/core/options-pages.php:88
908
+ msgid "Please check if your license key is correct and try again."
909
+ msgstr ""
910
+
911
+ #: pro/core/options-pages.php:104
912
+ #, php-format
913
+ msgid ""
914
+ "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
915
+ "authors</a>."
916
+ msgstr ""
917
+
918
+ #: pro/core/options-pages.php:119
919
+ #, php-format
920
+ msgid ""
921
+ "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
922
+ "plugin authors</a>."
923
+ msgstr ""
924
+
925
+ #: pro/core/options-pages.php:130
926
+ msgid "You license has been activated."
927
+ msgstr ""
928
+
929
+ #: pro/core/options-pages.php:184
930
+ #, php-format
931
+ msgid "Auto-assign media items to parent %s %s on upload"
932
+ msgstr ""
933
+
934
+ #: pro/core/options-pages.php:185
935
+ #, php-format
936
+ msgid ""
937
+ "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
938
+ "attached to a %s will be assigned to %s of their parent %s. Currently "
939
+ "assigned %s will not be saved. Media items that are not attached to any %s "
940
+ "will not be affected."
941
+ msgstr ""
942
+
943
+ #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
944
+ msgid "Bulk Edit"
945
+ msgstr ""
946
+
947
+ #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
948
+ msgid "Turn off 'Save Changes' button"
949
+ msgstr ""
950
+
951
+ #: pro/core/options-pages.php:220
952
+ msgid "Save changes on the fly"
953
+ msgstr ""
954
+
955
+ #: pro/core/options-pages.php:221
956
+ msgid ""
957
+ "Any click on a taxonomy checkbox during media files bulk editing will lead "
958
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
959
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
960
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
961
+ "files / taxonomies with this option turned on."
962
+ msgstr ""
963
+
964
+ #: pro/core/options-pages.php:222
965
+ msgid ""
966
+ "Strongly NOT recommended option if you work with more than hundred of files "
967
+ "at a time."
968
+ msgstr ""
969
+
970
+ #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
971
+ msgid "License Key"
972
+ msgstr ""
973
+
974
+ #: pro/core/options-pages.php:273
975
+ #, php-format
976
+ msgid ""
977
+ "To unlock updates please enter your license key below. You can get your "
978
+ "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
979
+ "license, you are welcome to <a href=\"%s\">purchase it</a>."
980
+ msgstr ""
981
+
982
+ #: pro/core/options-pages.php:283
983
+ msgid "Activate License"
984
+ msgstr ""
985
+
986
+ #: pro/core/options-pages.php:290
987
+ msgid "Your license is active!"
988
+ msgstr ""
989
+
990
+ #: pro/core/options-pages.php:294
991
+ msgid "Deactivate License"
992
+ msgstr ""
993
+
994
+ #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
995
+ msgid ""
996
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
997
+ "this server&#8217;s configuration. If you continue to have problems, please "
998
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
999
+ msgstr ""
1000
+
1001
+ #: pro/core/update.php:113
1002
+ msgid ""
1003
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
+ "contact your server administrator.)"
1005
+ msgstr ""
1006
+
1007
+ #: pro/core/update.php:181
1008
+ #, php-format
1009
+ msgid ""
1010
+ "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1011
+ "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1012
+ "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1013
+ msgstr ""
1014
+
1015
+ #: pro/enhanced-media-library-pro.php:119
1016
+ msgid "ALL files belong to this item"
1017
+ msgstr ""
1018
+
1019
+ #: pro/enhanced-media-library-pro.php:120
1020
+ msgid "SOME files belong to this item"
1021
+ msgstr ""
1022
+
1023
+ #: pro/enhanced-media-library-pro.php:121
1024
+ msgid "NO files belong to this item"
1025
+ msgstr ""
1026
+
1027
+ #: pro/enhanced-media-library-pro.php:122
1028
+ msgid "Changes saved."
1029
+ msgstr ""
1030
+
1031
+ #: pro/enhanced-media-library-pro.php:123
1032
+ msgid "Something went wrong."
1033
+ msgstr ""
1034
+
1035
+ #: pro/enhanced-media-library-pro.php:126
1036
+ msgid "Edit Media Files"
1037
+ msgstr ""
1038
+
1039
+ #: pro/enhanced-media-library-pro.php:129
1040
+ msgid "Selecting"
1041
+ msgstr ""
1042
+
1043
+ #: pro/enhanced-media-library-pro.php:131
1044
+ msgid "You are about to permanently delete all selected items."
1045
+ msgstr ""
1046
+
1047
+ #: pro/enhanced-media-library-pro.php:132
1048
+ msgid "Delete"
1049
+ msgstr ""
1050
+
1051
+ #: pro/enhanced-media-library-pro.php:134
1052
+ msgid "Moving to Trash"
1053
+ msgstr ""
1054
+
1055
+ #: pro/enhanced-media-library-pro.php:135
1056
+ msgid "Restoring"
1057
+ msgstr ""
1058
+
1059
+ #: pro/enhanced-media-library-pro.php:136
1060
+ msgid "Deleting"
1061
+ msgstr ""
1062
+
1063
+ #: pro/enhanced-media-library-pro.php:160
1064
+ msgid "Create a filter-based gallery"
1065
+ msgstr ""
1066
+
1067
+ #: pro/enhanced-media-library-pro.php:161
1068
+ msgid "Create a filter-based playlist"
1069
+ msgstr ""
1070
+
1071
+ #: pro/enhanced-media-library-pro.php:162
1072
+ msgid "Create a filter-based video playlist"
1073
+ msgstr ""
1074
+
1075
+ #: pro/enhanced-media-library-pro.php:240
1076
+ msgid ""
1077
+ "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1078
+ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1079
+ "will remain intact."
1080
+ msgstr ""
1081
+
1082
+ #: pro/enhanced-media-library-pro.php:240
1083
+ msgid "Return to Plugins"
1084
+ msgstr ""
1085
+
1086
+ #: pro/enhanced-media-library-pro.php:291
1087
+ msgid ""
1088
+ "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1089
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1090
+ "be active. Please network deactivate and delete the free versions of the "
1091
+ "plugin. All your data will remain intact."
1092
+ msgstr ""
1093
+
1094
+ #: pro/enhanced-media-library-pro.php:308
1095
+ msgid ""
1096
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1097
+ "be active. Please deactivate and delete the free version of the plugin. All "
1098
+ "your data will remain intact."
1099
+ msgstr ""
1100
+
1101
+ #: pro/enhanced-media-library-pro.php:324
1102
+ msgid ""
1103
+ "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1104
+ "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1105
+ "version to be active. Please deactivate (or network deactivate) and delete "
1106
+ "the free version of the plugin for this site. All your data will remail "
1107
+ "intact."
1108
+ msgstr ""
1109
+
1110
+ #. Plugin Name of the plugin/theme
1111
+ msgid "Enhanced Media Library PRO"
1112
+ msgstr ""
1113
+
1114
  #. Plugin URI of the plugin/theme
1115
  #. Author URI of the plugin/theme
1116
  msgid "http://wpUXsolutions.com"
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 4.5
5
- Tested up to: 4.6.1
6
- Stable tag: 2.3.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -86,6 +86,7 @@ Assistance with translating is highly appreciated! If you'd like to be a transla
86
  * Simple Lightbox
87
  * Responsive Lightbox by dFactory
88
  * Justified Gallery
 
89
 
90
 
91
  Please let us know if you find any issue with the plugins from the list above or others.
@@ -162,6 +163,21 @@ Please notice that you use the Enhanced Media Library with other plugins that ad
162
 
163
  == Changelog ==
164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  = 2.3.4 =
166
  *Release Date - November 19, 2016*
167
 
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 4.5
5
+ Tested up to: 4.7
6
+ Stable tag: 2.3.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
86
  * Simple Lightbox
87
  * Responsive Lightbox by dFactory
88
  * Justified Gallery
89
+ * Compress JPEG & PNG Images (TinyPNG)
90
 
91
 
92
  Please let us know if you find any issue with the plugins from the list above or others.
163
 
164
  == Changelog ==
165
 
166
+ = 2.3.5 =
167
+ *Release Date - November 29, 2016*
168
+
169
+ = Improvements =
170
+ * Better grid mode layout, including small mobile screens (PRO only)
171
+
172
+ = Compatibility =
173
+ * WordPress 4.7 compatibility ensured
174
+ * Compatibility with 'Compress JPEG & PNG images' ensured
175
+
176
+ = Bugfixes =
177
+ * Few minor bugs fixed
178
+
179
+
180
+ &nbsp;
181
  = 2.3.4 =
182
  *Release Date - November 19, 2016*
183